ee140460f37fe4e6c73222e663eefb29b937a10e
[gnulib.git] / ChangeLog
1 2009-08-02  Simon Josefsson  <simon@josefsson.org>
2             Bruno Haible  <bruno@clisp.org>
3
4         Ensure HOST_NAME_MAX as part of the gethostname module.
5         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
6         define also HOST_NAME_MAX.
7         * tests/test-gethostname.c (main): Check also HOST_NAME_MAX.
8         * doc/posix-headers/limits.texi: Document the mingw problem.
9
10 2009-08-02  Bruno Haible  <bruno@clisp.org>
11
12         * lib/gethostname.c (gethostname): Fix handling of large len argument.
13         Add comments.
14
15 2009-03-31  Simon Josefsson  <simon@josefsson.org>
16
17         * lib/gethostname.c: Add Windows wrapper.
18         * m4/gethostname.m4: Look for gethostname in -lws2_32.
19         * modules/gethostname: Depend on sys_socket & errno, for also
20         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
21         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
22
23 2009-07-31  Jim Meyering  <meyering@redhat.com>
24
25         getloadavg: fix symbol name in comment
26         * lib/getloadavg.c: Correct a typo I introduced when adding
27         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
28         Matt Kraai spotted the problem.
29
30 2009-07-29  Matt Kraai  <mkraai@beckman.com>
31
32         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
33         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
34         code also if ! defined N_NAME_POINTER.
35         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
36         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
37         but the n_name member is a 12-byte array.
38
39 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
40
41         update-copyright: generalize comment handling
42         * build-aux/update-copyright: Handle copyright statements
43         within more comment styles.
44         Document usage.
45         Report any file with an external copyright holder or parse failure.
46
47 2009-07-29  Jim Meyering  <meyering@redhat.com>
48
49         mktime: correct setting of REPLACE_MKTIME
50         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
51
52         update-copyright: new module
53         * modules/update-copyright: New file.
54         * build-aux/update-copyright: New file.
55         * MODULES.html.sh (maint+release support): Add update-copyright.
56
57 2009-07-27  Bruno Haible  <bruno@clisp.org>
58
59         Fix compilation error when <ctime> is used and mktime is replaced.
60         * lib/time.in.h (mktime): New declaration.
61         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
62         REPLACE_MKTIME instead of defining mktime in config.h.
63         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
64         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
65         Reported by Ross McFarland <rwmcfa1@neces.com>.
66
67 2009-07-27  Bruno Haible  <bruno@clisp.org>
68
69         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
70         Reported by Matt Kraai <mkraai@beckman.com>.
71
72 2009-07-25  Jim Meyering  <meyering@redhat.com>
73
74         maint.mk: avoid warnings about missing files
75         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
76         diagnostic when .prev-version does not exist.
77         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
78         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
79         nonexistent cfg.mk.
80         Suggestions from Simon Josefsson.
81
82 2009-07-25  Bruno Haible  <bruno@clisp.org>
83
84         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
85         defined as macros. Needed on QNX 6.4.1.
86         Reported by Matt Kraai <mkraai@beckman.com>.
87
88 2009-07-23  Jim Meyering  <meyering@redhat.com>
89
90         maint.mk: invoke "make dist" with a working value of XZ_OPT
91         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
92
93 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
94
95         Make fseeko.c compile on QNX.
96         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
97
98 2009-07-22  Peter Simons  <simons@cryp.to>
99
100         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
101         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
102         * lib/md4.h: Likewise.
103         * lib/md5.h: Likewise.
104         * lib/sha1.h: Likewise.
105         * lib/sha256.h: Likewise.
106         * lib/sha512.h: Likewise.
107
108         tests-sha1: don't assign literal string to 'char *' variable
109         * tests/test-sha1.c (main): Declare locals with "const" to match
110         attributes of the right hand side.
111
112 2009-07-21  Eric Blake  <ebb9@byu.net>
113
114         dup2: fix more mingw problems
115         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
116         fd to itself.
117         * doc/posix-functions/dup2.texi (dup2): Document the bug.
118         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
119         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
120         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
121         care of mingw bugs.
122
123 2009-07-21  Jim Meyering  <meyering@redhat.com>
124
125         vc-list-files: avoid failure when /bin/sh is dash
126         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
127         On some Debian based systems, /bin/sh is a symlink to dash, and running
128         this command would omit the "/" following each 'tests' prefix:
129           dash -x build-aux/vc-list-files -C . tests
130         That is because bash and dash work differently:
131           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
132           bash ok
133           dash odd
134
135 2009-07-21  Eric Blake  <ebb9@byu.net>
136
137         dup2-tests: test previous patch
138         * modules/dup2-tests: New file.
139         * tests/test-dup2.c: Likewise.
140         * tests/test-open.c (main): Avoid unspecified behavior.
141         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
142         test.
143
144         dup2: work around mingw and cygwin 1.5 bug
145         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
146         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
147         * modules/unistd (Makefile.am): Substitute it.
148         * lib/unistd.in.h (dup2): Declare the replacement.
149         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
150         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
151         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
152         * modules/execute (Depends-on): Add dup2.
153         * modules/fseterr (Depends-on): Likewise.
154         * modules/pipe (Depends-on): Likewise.
155         * modules/posix_spawn-internal (Depends-on): Likewise.
156
157 2009-07-21  Bruno Haible  <bruno@clisp.org>
158
159         * modules/.gitattributes: New file.
160
161 2009-07-20  Bruno Haible  <bruno@clisp.org>
162
163         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
164         (main): Use it.
165
166 2009-07-20  Eric Blake  <ebb9@byu.net>
167
168         test-pipe: make a bit more robust.
169         * tests/test-pipe.c (myerr): Allow error messages regardless of
170         what we do to stderr.
171         (test_pipe): Rearrange to avoid deadlock.
172         (child_main): Try a larger read, to ensure we avoided deadlock.
173         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
174         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
175         if misused.
176
177 2009-07-19  Jim Meyering  <meyering@redhat.com>
178
179         fts: avoid false-positive cycle-detection
180         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
181         for each new command line argument.
182
183 2009-07-19  Bruno Haible  <bruno@clisp.org>
184
185         Fix build error on mingw with the modules sys_select and unistd.
186         * modules/acl-tests (Depends-on): Add close.
187         * modules/binary-io-tests (Depends-on): Likewise.
188         * modules/closein-tests (Depends-on): Likewise.
189         * modules/flock-tests (Depends-on): Likewise.
190         * modules/fsync-tests (Depends-on): Likewise.
191         * modules/lseek-tests (Depends-on): Likewise.
192         * modules/pipe-tests (Depends-on): Likewise.
193         * modules/posix_spawn-tests (Depends-on): Likewise.
194         * modules/posix_spawnp-tests (Depends-on): Likewise.
195         * modules/stat-time-tests (Depends-on): Likewise.
196         * modules/yesno-tests (Depends-on): Likewise.
197
198 2009-07-19  Bruno Haible  <bruno@clisp.org>
199
200         Unify conditionals.
201         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
202         macros, not at the compiler macros.
203         * lib/pipe.c: Likewise.
204         * lib/execute.c: Likewise.
205         * lib/spawni.c: Likewise.
206
207 2009-07-19  Bruno Haible  <bruno@clisp.org>
208
209         Fix handling of closed stdin/stdout/stderr on mingw.
210         * lib/w32spawn.h: Include unistd.h.
211         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
212         file descriptor with O_NOINHERIT flag.
213         (fd_safer_noinherit): New function, based on fd-safer.c.
214         (dup_safer_noinherit): New function, based on dup-safer.c.
215         (undup_safer_noinherit): New function.
216         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
217         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
218         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
219         instead of fd_safer.
220         * tests/test-pipe.c: Include <windows.h>.
221         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
222
223         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
224         from main.
225         (test_pipe): Pass an extra argument for disambiguation.
226         (main): Invoke parent_main or child_main.
227
228         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
229         consistently.
230
231 2009-07-18  Eric Blake  <ebb9@byu.net>
232
233         test-pipe: fix mingw build
234         * tests/test-pipe.c (main): Avoid fcntl on mingw.
235
236 2009-07-18  Bruno Haible  <bruno@clisp.org>
237
238         * modules/pipe-tests (Makefile.am): Fix typo.
239
240 2009-07-18  Eric Blake  <ebb9@byu.net>
241
242         error: fix mingw build
243         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
244         Reported by Bruno Haible.
245
246         error: avoid undefined use of stdout
247         * lib/error.c (error, error_at_line): Check that fd 1 is open
248         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
249         is handling faults and the close_stdout module wants to report the
250         detection of closed stdout as an error.
251
252 2009-07-17  Eric Blake  <ebb9@byu.net>
253
254         pipe: be robust in face of closed fds
255         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
256         should cause child to misbehave.
257         * modules/pipe-tests: New module.
258         * tests/test-pipe.c: New file.
259         * tests/test-pipe.sh: New file.
260         Reported by Akim Demaille.
261
262 2009-07-14  Bruno Haible  <bruno@clisp.org>
263
264         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
265         Reported by anonymous kc.
266
267 2009-07-07  Jim Meyering  <meyering@redhat.com>
268
269         maint.mk: don't look for translatable strings in *.m4 or *.mk
270         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
271         when searching for translatable strings.
272
273 2009-07-05  Jim Meyering  <meyering@redhat.com>
274
275         remove superfluous parentheses in STREQ definition
276         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
277         * lib/getugroups.c (STREQ): Likewise.
278         * lib/fnmatch.c (STREQ): Likewise.
279         Spotted by Bruno Haible.
280
281 2009-07-04  Jim Meyering  <meyering@redhat.com>
282
283         argv-iter: new module
284         * MODULES.html.sh: Add argv-iter.
285         * lib/argv-iter.c, lib/argv-iter.h: New files.
286         * modules/argv-iter: New file.
287         * modules/argv-iter-tests: New file.
288         * tests/test-argv-iter.c: Test it.
289
290 2009-07-04  Bruno Haible  <bruno@clisp.org>
291
292         Fix assertion.
293         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
294         contains more exact copies of a given entry than file2, leave the extra
295         copies unpaired rather than aborting.
296         Reported by Eric Blake.
297
298 2009-07-02  Bruno Haible  <bruno@clisp.org>
299
300         Speedup git-merge-changelog for git cherry-pick.
301         * lib/git-merge-changelog.c (struct entries_mapping): New type.
302         (entries_mapping_get): New function, extracted from compute_mapping.
303         (entries_mapping_reverse_get): New function.
304         (compute_mapping): Add a 'full' argument. Return the result in a
305         'struct entries_mapping'.
306         (main): Update. Access the mappings through entries_mapping_get.
307         Reported by Eric Blake.
308
309 2009-07-02  Bruno Haible  <bruno@clisp.org>
310
311         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
312         best_i.
313
314 2009-07-02  Bruno Haible  <bruno@clisp.org>
315
316         Speed up approximate search for matching ChangeLog entries.
317         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
318         argument. Call fstrcmp_bounded instead of fstrcmp.
319         (compute_mapping, try_split_merged_entry, main): Update callers.
320
321 2009-07-02  Bruno Haible  <bruno@clisp.org>
322
323         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
324
325 2009-06-30  Bruno Haible  <bruno@clisp.org>
326
327         Reduce the number of uc_is_cased calls.
328         * lib/unicase.h (casing_suffix_context_t): Add
329         'first_char_except_ignorable' field.
330         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
331         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
332         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
333         Update initializer.
334         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
335         case-ignorable characters.
336         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
337         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
338         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
339         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
340         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
341
342 2009-06-30  Bruno Haible  <bruno@clisp.org>
343
344         Tests for module 'unicase/ignorable'.
345         * modules/unicase/ignorable-tests: New file.
346         * tests/unicase/test-ignorable.c: New file, generated by
347         gen-uni-tables.
348
349         Tests for module 'unicase/cased'.
350         * modules/unicase/cased-tests: New file.
351         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
352         * tests/unicase/test-predicate-part1.h: New file, derived from
353         tests/unictype/test-predicate-part1.h.
354         * tests/unicase/test-predicate-part2.h: New file, same as
355         tests/unictype/test-predicate-part2.h.
356
357         Fix evaluation of "Before C" condition of FINAL_SIGMA.
358         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
359         (output_casing_properties): New function.
360         (main): Call it.
361         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
362         * lib/unicase/cased.c: Include unictype/bitmap.h.
363         (uc_is_cased): Define through a bitmap lookup.
364         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
365         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
366         (uc_is_case_ignorable): Define through a bitmap lookup.
367         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
368         lib/unictype/bitmap.h.
369         (Depends-on): Add inline. Clean up.
370         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
371         lib/unictype/bitmap.h.
372         (Depends-on): Add inline. Clean up.
373         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
374         recognition.
375         * tests/unicase/test-u16-tolower.c (main): Likewise.
376         * tests/unicase/test-u32-tolower.c (main): Likewise.
377
378 2009-06-30  Bruno Haible  <bruno@clisp.org>
379
380         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
381         * lib/unicase/u16-casemap.c: Likewise.
382         * lib/unicase/u32-casemap.c: Likewise.
383
384 2009-06-29  Bruno Haible  <bruno@clisp.org>
385
386         Define u32_casefold as a wrapper around u32_ct_casefold.
387         * lib/unicase/u32-casefold.c: Update.
388         * modules/unicase/u32-casefold (Depends-on): Add
389         unicase/u32-ct-casefold, unicase/empty-prefix-context,
390         unicase/empty-suffix-context. Clean up.
391
392         Define u16_casefold as a wrapper around u16_ct_casefold.
393         * lib/unicase/u16-casefold.c: Update.
394         * modules/unicase/u16-casefold (Depends-on): Add
395         unicase/u16-ct-casefold, unicase/empty-prefix-context,
396         unicase/empty-suffix-context. Clean up.
397
398         Define u8_casefold as a wrapper around u8_ct_casefold.
399         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
400         * lib/unicase/u8-casefold.c: Update.
401         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
402         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
403
404         Define u32_totitle as a wrapper around u32_ct_totitle.
405         * lib/unicase/u32-totitle.c: Update.
406         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
407         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
408
409         Define u16_totitle as a wrapper around u16_ct_totitle.
410         * lib/unicase/u16-totitle.c: Update.
411         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
412         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
413
414         Define u8_totitle as a wrapper around u8_ct_totitle.
415         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
416         functions.
417         (FUNC): Delegate to U_CT_TOTITLE.
418         * lib/unicase/u8-totitle.c: Update.
419         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
420         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
421
422         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
423         invocation.
424         * modules/unicase/u32-tolower (Depends-on): Add
425         unicase/empty-prefix-context, unicase/empty-suffix-context.
426
427         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
428         invocation.
429         * modules/unicase/u16-tolower (Depends-on): Add
430         unicase/empty-prefix-context, unicase/empty-suffix-context.
431
432         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
433         * modules/unicase/u8-tolower (Depends-on): Add
434         unicase/empty-prefix-context, unicase/empty-suffix-context.
435
436         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
437         invocation.
438         * modules/unicase/u32-toupper (Depends-on): Add
439         unicase/empty-prefix-context, unicase/empty-suffix-context.
440
441         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
442         invocation.
443         * modules/unicase/u16-toupper (Depends-on): Add
444         unicase/empty-prefix-context, unicase/empty-suffix-context.
445
446         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
447         * modules/unicase/u8-toupper (Depends-on): Add
448         unicase/empty-prefix-context, unicase/empty-suffix-context.
449
450         New module 'unicase/u32-ct-casefold'.
451         * lib/unicase/u32-ct-casefold.c: New file.
452         * modules/unicase/u32-ct-casefold: New file.
453
454         New module 'unicase/u16-ct-casefold'.
455         * lib/unicase/u16-ct-casefold.c: New file.
456         * modules/unicase/u16-ct-casefold: New file.
457
458         New module 'unicase/u8-ct-casefold'.
459         * lib/unicase/u8-ct-casefold.c: New file.
460         * lib/unicase/u-ct-casefold.h: New file, derived from
461         lib/unicase/u-casefold.h.
462         * modules/unicase/u8-ct-casefold: New file.
463
464         New module 'unicase/u32-ct-totitle'.
465         * lib/unicase/u32-ct-totitle.c: New file.
466         * modules/unicase/u32-ct-totitle: New file.
467
468         New module 'unicase/u16-ct-totitle'.
469         * lib/unicase/u16-ct-totitle.c: New file.
470         * modules/unicase/u16-ct-totitle: New file.
471
472         New module 'unicase/u8-ct-totitle'.
473         * lib/unicase/u8-ct-totitle.c: New file.
474         * lib/unicase/u-ct-totitle.h: New file, derived from
475         lib/unicase/u-totitle.h.
476         * modules/unicase/u8-ct-totitle: New file.
477
478         New module 'unicase/u32-ct-tolower'.
479         * lib/unicase/u32-ct-tolower.c: New file.
480         * modules/unicase/u32-ct-tolower: New file.
481
482         New module 'unicase/u16-ct-tolower'.
483         * lib/unicase/u16-ct-tolower.c: New file.
484         * modules/unicase/u16-ct-tolower: New file.
485
486         New module 'unicase/u8-ct-tolower'.
487         * lib/unicase/u8-ct-tolower.c: New file.
488         * modules/unicase/u8-ct-tolower: New file.
489
490         New module 'unicase/u32-ct-toupper'.
491         * lib/unicase/u32-ct-toupper.c: New file.
492         * modules/unicase/u32-ct-toupper: New file.
493
494         New module 'unicase/u16-ct-toupper'.
495         * lib/unicase/u16-ct-toupper.c: New file.
496         * modules/unicase/u16-ct-toupper: New file.
497
498         New module 'unicase/u8-ct-toupper'.
499         * lib/unicase/u8-ct-toupper.c: New file.
500         * modules/unicase/u8-ct-toupper: New file.
501
502         Add context arguments to u*_casemap functions.
503         * lib/unicase/unicasemap.h: Include unicase.h.
504         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
505         suffix_context arguments.
506         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
507         functions.
508         (FUNC): Add prefix_context and suffix_context arguments. Use
509         uc_is_cased and uc_is_case_ignorable.
510         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
511         * lib/unicase/u16-casemap.c: Likewise.
512         * lib/unicase/u32-casemap.c: Likewise.
513         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
514         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
515         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
516         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
517         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
518         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
519
520         New module 'unicase/u32-suffix-context'.
521         * lib/unicase/u32-suffix-context.c: New file.
522         * modules/unicase/u32-suffix-context: New file.
523
524         New module 'unicase/u16-suffix-context'.
525         * lib/unicase/u16-suffix-context.c: New file.
526         * modules/unicase/u16-suffix-context: New file.
527
528         New module 'unicase/u8-suffix-context'.
529         * lib/unicase/u8-suffix-context.c: New file.
530         * lib/unicase/u-suffix-context.h: New file.
531         * modules/unicase/u8-suffix-context: New file.
532
533         New module 'unicase/empty-suffix-context'.
534         * lib/unicase/empty-suffix-context.c: New file.
535         * modules/unicase/empty-suffix-context: New file.
536
537         New module 'unicase/u32-prefix-context'.
538         * lib/unicase/u32-prefix-context.c: New file.
539         * modules/unicase/u32-prefix-context: New file.
540
541         New module 'unicase/u16-prefix-context'.
542         * lib/unicase/u16-prefix-context.c: New file.
543         * modules/unicase/u16-prefix-context: New file.
544
545         New module 'unicase/u8-prefix-context'.
546         * lib/unicase/u8-prefix-context.c: New file.
547         * lib/unicase/u-prefix-context.h: New file.
548         * lib/unicase/context.h: New file.
549         * modules/unicase/u8-prefix-context: New file.
550
551         New module 'unicase/empty-prefix-context'.
552         * lib/unicase/empty-prefix-context.c: New file.
553         * modules/unicase/empty-prefix-context: New file.
554
555         New module 'unicase/ignorable'.
556         * lib/unicase/ignorable.c: New file.
557         * modules/unicase/ignorable: New file.
558
559         New module 'unicase/cased'.
560         * lib/unicase/caseprop.h: New file.
561         * lib/unicase/cased.c: New file.
562         * modules/unicase/cased: New file.
563
564         New functions for case mapping of substrings.
565         * lib/unicase.h (casing_prefix_context_t): New type.
566         (unicase_empty_prefix_context): New variable.
567         (u8_casing_prefix_context, u16_casing_prefix_context,
568         u32_casing_prefix_context, u8_casing_prefixes_context,
569         u16_casing_prefixes_context, u32_casing_prefixes_context): New
570         declarations.
571         (casing_suffix_context_t): New type.
572         (unicase_empty_suffix_context): New variable.
573         (u8_casing_suffix_context, u16_casing_suffix_context,
574         u32_casing_suffix_context, u8_casing_suffixes_context,
575         u16_casing_suffixes_context, u32_casing_suffixes_context,
576         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
577         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
578         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
579         declarations.
580
581 2009-06-28  Jim Meyering  <meyering@redhat.com>
582
583         boostrap: indent only with spaces
584         * build-aux/bootstrap: Indent only with spaces, never TABs.
585
586         bootstrap: split long lines
587         * build-aux/bootstrap: Keep line length < 80.
588
589         bootstrap: sync from coreutils
590         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
591         just as autoreconf does.  Verify a list of prerequisite
592         package-name,version-number pairs if defined in bootstrap.conf.
593         Refer to README-prereq, if prerequisites are not satisfied.
594
595 2009-06-27  Eric Blake  <ebb9@byu.net>
596
597         tests: add test for bogus NULL definition
598         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
599         * tests/test-stdlib.c: Likewise.
600         * tests/test-string.c: Likewise.
601         * tests/test-locale.c: Likewise.
602         * tests/test-unistd.c: Likewise.
603         * modules/stdio-tests (Depends-on): Add verify.
604         * modules/stdlib-tests (Depends-on): Likewise.
605         * modules/string-tests (Depends-on): Likewise.
606         * modules/locale-tests (Depends-on): Likewise.
607         * modules/unistd-tests (Depends-on): Likewise.
608
609 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
610
611         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
612         self-explaining comment.
613         * m4/selinux-selinux-h: Update serial.
614         (gl_LIBSELINUX): New macro, adding a warning for missing development
615         packages to code extracted from...
616         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
617         Add warning for missing development packages here, too.
618
619 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
620
621         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
622
623 2009-06-25  Eric Blake  <ebb9@byu.net>
624
625         version-etc: fix regression
626         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
627         gcc.
628         (version_etc): Use it, to catch bugs with trailing NULL.
629         * lib/version-etc.c (version_etc_arn): Delete unused argument.
630         (version_etc_va): Fix logic bug.
631         * modules/version-etc-tests: Add test.
632         * tests/test-version-etc.c: New file.
633         * tests/test-version-etc.sh: Likewise.
634
635 2009-06-25  Sam Steingold  <sds@gnu.org>
636
637         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
638         mbtowc declaration.
639
640 2009-06-25  Eric Blake  <ebb9@byu.net>
641
642         fpurge: migrate into <stdio.h>
643         * lib/fpurge.h: Delete...
644         * lib/stdio.in.h (fpurge): ...and declare here, instead.
645         * lib/fpurge.c (fpurge): Change declaring header.
646         * modules/fpurge (Files): Drop deleted file.
647         (Depends-on): Add stdio.
648         (configure.ac): Set witness.
649         * modules/stdio (Makefile.am): Support fpurge macros.
650         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
651         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
652         * lib/fflush.c: Update client.
653         * tests/test-fpurge.c: Likewise.
654         * NEWS: Mention the change.
655
656 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
657
658        * lib/argp-version-etc.c (program_authors): Add const
659        qualifier.
660        * lib/version-etc.c: Fix typos in the comments.
661        * modules/argp-version-etc: Depends on version-etc.
662
663 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
664
665         argp-version-etc: new module.
666
667         * lib/argp-version-etc.c: New file.
668         * lib/argp-version-etc.h: New file.
669         * modules/argp-version-etc: New file.
670         * modules/argp-version-etc-tests: New file.
671         * tests/test-argp-version-etc.c: New test.
672         * tests/test-argp-version-etc-1.sh: New test.
673
674 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
675
676         Provide additional interfaces and documentation for version-etc
677         module.
678
679         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
680         interfaces.
681         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
682         prototypes.
683
684 2009-06-24  Bruno Haible  <bruno@clisp.org>
685
686         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
687         HAVE_LIB${NAME} macro.
688         Reported by Sam Steingold <sds@gnu.org>.
689
690 2009-06-23  Simon Josefsson  <simon@josefsson.org>
691
692         * modules/hash-tests (test_hash_LDADD): Link to libintl when
693         needed.
694
695 2009-06-21  Bruno Haible  <bruno@clisp.org>
696
697         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
698         work.
699         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
700         together with LIB${NAME}, LTLIB${NAME}.
701         Reported by Sam Steingold <sds@gnu.org>.
702
703 2009-06-20  Jim Meyering  <meyering@redhat.com>
704
705         tests: make sc_require_test_exit_idiom more generic
706         * top/maint.mk (Exit_witness_file): New overridable variable.
707         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
708         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
709
710 2009-06-19  Jim Meyering  <meyering@redhat.com>
711
712         hash: reverse order of src/dst parameters in an internal interface
713         * lib/hash.c (transfer_entries): Reverse order of parameters to
714         put DST before SRC.  Adjust callers.
715
716         tests: test-hash: avoid wholesale duplication
717         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
718         Instead, use a loop and add a single conditional.
719
720         tests: test-hash: allow seed selection via a command line argument
721         * tests/test-hash.c (get_seed): New function.
722         (main): Use it.
723
724 2009-06-19  Eric Blake  <ebb9@byu.net>
725
726         hash: avoid memory leak on allocation failure
727         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
728         failure.  Factor repeated algorithm...
729         (transfer_entries): ...into new helper routine.
730         (hash_delete): React to hash_rehash return value.
731
732         hash: reduce memory pressure in hash_rehash no-op case
733         * lib/hash.c (next_prime): Avoid overflow.
734         (hash_initialize): Factor bucket size computation...
735         (compute_bucket_size): ...into new helper function.
736         (hash_rehash): Use new function and open coding to reduce memory
737         pressure, and avoid a memory leak in USE_OBSTACK code.
738         Reported by Jim Meyering.
739
740 2009-06-18  Eric Blake  <ebb9@byu.net>
741
742         hash: make rotation more obvious
743         * modules/hash (Depends-on): Add bitrotate and stdint.
744         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
745         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
746         (SIZE_MAX): Rely on headers for definition.
747         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
748         (raw_hasher): Use rotr_sz.
749         Suggested by Jim Meyering.
750
751         hash: fix memory leak in last patch
752         * lib/hash.c (hash_rehash): Avoid memory leak.
753
754         hash: avoid no-op rehashing
755         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
756
757         hash: provide default callback functions
758         * lib/hash.c (raw_hasher, raw_comparator): New functions.
759         (hash_initialize): Use them as defaults.
760         * tests/test-hash.c (main): Test this.
761
762         hash: minor optimization
763         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
764         when possible.
765         (hash_initialize): Document this promise.
766         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
767         * tests/test-hash.c (hash_compare_strings): Test this.
768
769 2009-06-18  Bruno Haible  <bruno@clisp.org>
770
771         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
772         going to be replaced anyway.
773
774 2009-06-18  Bruno Haible  <bruno@clisp.org>
775
776         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
777         in one place.
778         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
779         be replaced anyway.
780
781 2009-06-18  Eric Blake  <ebb9@byu.net>
782
783         hash: check for resize before insertion
784         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
785         threshold before insertion, so that a pathological hash_rehash
786         that fills every bucket can still trigger another rehash.
787
788 2009-06-18  Jim Meyering  <meyering@redhat.com>
789
790         hash-tests: add a loop around the small tests
791         * tests/test-hash.c (main): Repeat small tests with selected
792         small initial table sizes.
793
794 2009-06-17  Eric Blake  <ebb9@byu.net>
795
796         hash: minor cleanups
797         * lib/hash.h (hash_entry): Make opaque, by moving...
798         * lib/hash.c (hash_entry): ...here.
799         (hash_insert): Clarify restrictions on what can be inserted.
800         (hash_get_next): Clarify when it is safe to remove an element
801         during traversal.
802         (check_tuning): Skip verification when tuning is known safe.
803         (hash_initialize): Clarify restrictions on tuning.
804
805 2009-06-17  Jim Meyering  <jim@meyering.net>
806         and Eric Blake  <ebb9@byu.net>
807
808         hash-tests: new module
809         * modules/hash-tests: New file.
810         * tests/test-hash.c: New file.
811
812 2009-06-17  Eric Blake  <ebb9@byu.net>
813
814         strstr-simple: document new module
815         * MODULES.html.sh: Document new module.
816
817         strstr, strcasestr: replace on platforms with broken memchr
818         * modules/strstr: Split into...
819         * modules/strstr-simple: ...new module that does not care about
820         performance, but does care about glibc bug.
821         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
822         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
823         if platform memchr is broken, per Debian bug 521737.
824         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
825         memchr.
826         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
827         * doc/posix-functions/strstr.texi (strstr): Document the fix.
828         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
829         * modules/mountlist (Depends-on): Add strstr-simple.
830         * modules/gen-uni-tables (Depends-on): Likewise.
831         * modules/argz (Depends-on): Add strstr.
832
833 2009-06-17  Bruno Haible  <bruno@clisp.org>
834
835         * modules/posix_spawn-internal (Depends-on): Add errno.
836
837 2009-06-17  Bruno Haible  <bruno@clisp.org>
838
839         Define missing ESTALE on Interix 3.5.
840         * lib/errno.in.h (ESTALE): Assign a value if missing.
841         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
842         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
843         missing.
844         * doc/posix-headers/errno.texi: Mention the Interix bug.
845         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
846
847 2009-06-15  Eric Blake  <ebb9@byu.net>
848
849         memchr, memchr2: add valgrind exception
850         * lib/memchr.valgrind: New file.
851         * lib/memchr2.valgrind: New file.
852         * modules/memchr (Files): Distribute valgrind file.
853         * modules/memchr2 (Files): Likewise.
854
855         docs: memchr is no longer obsolete
856         * MODULES.html.sh: Move memchr from obsolete to string.h section.
857         * lib/string.in.h (memchr): Simplify logic.
858
859 2009-06-14  Jim Meyering  <meyering@redhat.com>
860
861         link-follow: fix the "checking..." message to not mention trailing slash
862         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
863         never considered trailing slashes.
864
865 2009-06-14  Bruno Haible  <bruno@clisp.org>
866
867         * m4/memchr.m4: Mention also the bug on IA-64.
868         * doc/posix-functions/memchr.texi: Likewise.
869
870 2009-06-12  Eric Blake  <ebb9@byu.net>
871
872         memchr: detect broken x86_64 and alpha implementations
873         * modules/memchr-tests (Depends-on): Move mmap detection...
874         * modules/memchr (Depends-on): ...here.
875         (configure.ac): Set indicator.
876         * lib/string.in.h (memchr): Declare replacement.
877         * modules/string (Makefile.am): Trigger replacement.
878         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
879         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
880         bugs.
881         * doc/posix-functions/memchr.texi (memchr): Document the bug.
882         * modules/getpagesize (License): Relax license.
883
884 2009-06-11  Bruno Haible  <bruno@clisp.org>
885
886         * lib/idpriv.h: Add more references.
887
888 2009-06-08  Bruno Haible  <bruno@clisp.org>
889
890         Tests for module 'idpriv-droptemp'.
891         * modules/idpriv-droptemp-tests: New file.
892         * tests/test-idpriv-droptemp.sh: New file.
893         * tests/test-idpriv-droptemp.su.sh: New file.
894         * tests/test-idpriv-droptemp.c: New file.
895
896         New module 'idpriv-droptemp'.
897         * lib/idpriv-droptemp.c: New file.
898         * modules/idpriv-droptemp: New file.
899
900 2009-06-08  Bruno Haible  <bruno@clisp.org>
901
902         Tests for module 'idpriv-drop'.
903         * modules/idpriv-drop-tests: New file.
904         * tests/test-idpriv-drop.sh: New file.
905         * tests/test-idpriv-drop.su.sh: New file.
906         * tests/test-idpriv-drop.c: New file.
907
908         New module 'idpriv-drop'.
909         * lib/idpriv.h: New file.
910         * lib-idpriv-drop.c: New file.
911         * m4/idpriv.m4: New file.
912         * modules/idpriv-drop: New file.
913
914 2009-06-08  Bruno Haible  <bruno@clisp.org>
915
916         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
917         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
918         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
919         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
920         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
921         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
922         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
923
924 2009-06-08  Eric Blake  <ebb9@byu.net>
925
926         test-strstr: use memory fence, when possible
927         * tests/test-strstr.c (main): Use memory fence, in order to be
928         more likely to trigger Debian bug 521737.
929         * modules/strstr-tests (Files): Pull in additional files.
930
931         memchr: no longer obsolete, for wider field testing
932         * modules/memchr (Status, Notice): Delete, this module is no
933         longer obsolete.
934         * modules/vasnprintf (Depends-on): Add memchr.
935
936 2009-06-07  Jim Meyering  <meyering@redhat.com>
937
938         hash: declare some functions with the warn_unused_result attribute
939         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
940
941 2009-06-07  Bruno Haible  <bruno@clisp.org>
942
943         * tests/test-alignof.c: Don't test int64_t if it does not exist.
944         Reported by Eric Blake.
945
946 2009-06-06  Eric Blake  <ebb9@byu.net>
947
948         test-alignof: fix typo with long double
949         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
950         compiler error.
951
952 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
953
954         Escape non-texinfo { and }s.
955         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
956         markup error.
957
958 2009-06-04  Jim Meyering  <meyering@redhat.com>
959
960         gitlog-to-changelog: don't infloop on an empty commit log
961         * build-aux/gitlog-to-changelog: Warn about an empty log message.
962         Reported by Boris Petersen <transacid@centerim.org>.
963
964 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
965
966         version-etc: extend for packagers
967         Add three new configure options, intended for packagers:
968           --with-packager="packager name"
969           --with-packager-version="packager-specific version"
970           --with-packager-bug-reports="packager bug reporting"
971         An example with coreutils:
972           $ ./configure \
973             --with-packager=Gentoo \
974             --with-packager-bug-report=http://bugs.gentoo.org/ \
975             --with-packager-version="patchset 1.6"
976           $ ./src/ls --version | head -n3
977           ls (GNU coreutils) 7.1-dirty
978           Packaged by Gentoo (patchset 1.6)
979           Copyright (C) 2009 Free Software Foundation, Inc.
980         Note that the bug reporting info via --help doesn't show up because
981         coreutils uses its own custom emit_bug_reporting_address() implementation
982         in src/system.h.  If it didn't, it'd look like:
983           $ ./src/ls --help | tail -n4
984           Report bugs to <bug-coreutils@gnu.org>.
985           Report Gentoo bugs to <http://bugs.gentoo.org/>.
986           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
987           General help using GNU software: <http://www.gnu.org/gethelp/>.
988         * lib/version-etc.c: Print new information, if provided.
989         * m4/version-etc.m4: New file.
990         * modules/version-etc (Files): Add m4/version-etc.m4.
991         (configure.ac): Add gl_VERSION_ETC.
992
993 2009-05-31  Bruno Haible  <bruno@clisp.org>
994
995         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
996         and 'int64_t'.
997         * modules/alignof-tests (Dependencies): Add stdint.
998         Reported by Eric Blake.
999
1000 2009-05-31  Bruno Haible  <bruno@clisp.org>
1001
1002         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
1003         restriction due to compiler bugs.
1004         Reported by Eric Blake.
1005
1006 2009-05-31  Simon Josefsson  <simon@josefsson.org>
1007             Bruno Haible  <bruno@clisp.org>
1008
1009         Fix test-alignof failure.
1010         * lib/alignof.h (alignof_slot): New macro.
1011         (alignof_type): New macro, with the same semantics as the previous
1012         'alignof'.
1013         (alignof): Alias to alignof_slot.
1014         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
1015         check that the results are usable as constant expressions.
1016
1017 2009-05-31  Bruno Haible  <bruno@clisp.org>
1018
1019         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
1020         * tests/test-memchr.c (main): Check that memchr does not read past the
1021         first occurrence of the byte.
1022         * tests/test-strstr.c (main): Update comment.
1023         Suggested by Eric Blake.
1024
1025 2009-05-30  Bruno Haible  <bruno@clisp.org>
1026
1027         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
1028         detail how to use dumpbin.
1029         Reported by David Byron <dbyron@dbyron.com>.
1030
1031 2009-06-02  Simon Josefsson  <simon@josefsson.org>
1032
1033         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
1034
1035 2009-06-02  Simon Josefsson  <simon@josefsson.org>
1036
1037         * m4/manywarnings.m4: Add GCC 4.4 warnings.
1038
1039 2009-05-28  Bruno Haible  <bruno@clisp.org>
1040
1041         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
1042         build-aux/ files.
1043
1044 2009-05-28  Simon Josefsson  <simon@josefsson.org>
1045
1046         * gnulib-tool (func_import): Transform license on build-aux/ files too.
1047
1048 2009-05-27  Simon Josefsson  <simon@josefsson.org>
1049
1050         * gnulib-tool (sed_transform_main_lib_file)
1051         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
1052         regexps.
1053
1054 2009-05-26  Simon Josefsson  <simon@josefsson.org>
1055
1056         * tests/test-strstr.c: Add another self-test.
1057         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
1058         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
1059
1060 2009-05-23  Bruno Haible  <bruno@clisp.org>
1061
1062         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
1063         change.
1064
1065 2009-05-21  Bruno Haible  <bruno@clisp.org>
1066
1067         Simplify use of mode_t varargs.
1068         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
1069         uses 'mode_t' or 'int'.
1070         * lib/openat.c (openat): Likewise.
1071         * lib/open-safer.c (open_safer): Likewise.
1072         * m4/mode_t.m4: New file.
1073         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
1074         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
1075         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
1076         * modules/open (Files): Add m4/mode_t.m4.
1077         * modules/openat (Files): Likewise.
1078         * modules/fcntl-safer (Files): Likewise.
1079         Suggested by Eric Blake.
1080
1081 2009-05-21  Pádraig Brady  <P@draigbrady.com>
1082
1083         * doc/glibc-functions/fallocate.texi: New file.
1084         * doc/gnulib.texi: Include it.
1085
1086 2009-05-21  Eric Blake  <ebb9@byu.net>
1087             Bruno Haible  <bruno@clisp.org>
1088
1089         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
1090         invocations.
1091         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
1092
1093 2009-05-21  Eric Blake  <ebb9@byu.net>
1094             Bruno Haible  <bruno@clisp.org>
1095
1096         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
1097         include_next. Fix of 2008-11-20 commit.
1098         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
1099         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
1100         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
1101         NEXT_MATH_H.
1102         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
1103         instead of NEXT_MATH_H.
1104
1105 2009-05-21  Bruno Haible  <bruno@clisp.org>
1106
1107         Avoid redefinition warnings for SIZE_MAX.
1108         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
1109         Reported by Simon Josefsson.
1110
1111 2009-05-21  Bruno Haible  <bruno@clisp.org>
1112
1113         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
1114         AC_CACHE_VAL.
1115
1116 2009-05-20  Bruno Haible  <bruno@clisp.org>
1117
1118         Make zeroptr.h work on mingw.
1119         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
1120         mprotect.
1121         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
1122         * modules/memchr2-tests (configure.ac): Likewise.
1123         * modules/memcmp-tests (configure.ac): Likewise.
1124         * modules/memmem-tests (configure.ac): Likewise.
1125         * modules/memrchr-tests (configure.ac): Likewise.
1126         Reported by Simon Josefsson.
1127
1128 2009-05-20  Simon Josefsson  <simon@josefsson.org>
1129
1130         * tests/test-glob.c: Include string.h for strcmp prototype.
1131
1132 2009-05-20  Simon Josefsson  <simon@josefsson.org>
1133
1134         * modules/getdelim (Depends-on): Add explicit stdint, although it
1135         was implicitly already pulled in via realloc-posix.
1136         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
1137
1138 2009-05-20  Simon Josefsson  <simon@josefsson.org>
1139
1140         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
1141         G. Christensen" <tgc@jupiterrise.com>.
1142         * m4/sys_socket_h.m4: Check for sa_family_t.
1143         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
1144         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
1145         * tests/test-sys_socket.c: Check that sa_family_t works.
1146
1147 2009-05-18  Eric Blake  <ebb9@byu.net>
1148
1149         maint.mk: allow gnulib_dir in VPATH build
1150         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
1151
1152 2009-05-15  Jim Meyering  <meyering@redhat.com>
1153
1154         maint.mk: Give gnulib_dir a default definition.
1155         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
1156         Thus, most packages no longer need to specify this variable in cfg.mk
1157
1158 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
1159
1160         rename.m4: fix typos that would make non-mingw cross-configure fail
1161         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
1162
1163 2009-05-13  Eric Blake  <ebb9@byu.net>
1164
1165         mmap-anon: avoid out-of-order autoconf expansion
1166         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
1167         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
1168         * modules/memchr-tests (Depends-on): Add extensions.
1169         * modules/memchr2-tests (Depends-on): Add extensions.
1170         * modules/memcmp-tests (Depends-on): Add extensions.
1171         * modules/memmem-tests (Depends-on): Add extensions.
1172         * modules/memrchr-tests (Depends-on): Add extensions.
1173
1174 2009-05-13  Bruno Haible  <bruno@clisp.org>
1175
1176         Make some tests ISO C 99 compliant.
1177         * tests/zerosize-ptr.h: New file.
1178         * tests/test-memchr.c: Include zerosize-ptr.h.
1179         (main): Use a zero-size object pointer instead of NULL.
1180         * tests/test-memchr2.c: Include zerosize-ptr.h.
1181         (main): Use a zero-size object pointer instead of NULL.
1182         * tests/test-memcmp.c: Include zerosize-ptr.h.
1183         (main): Use a zero-size object pointer instead of NULL.
1184         * tests/test-memmem.c: Include zerosize-ptr.h.
1185         (main): Use a zero-size object pointer instead of NULL.
1186         * tests/test-memrchr.c: Include zerosize-ptr.h.
1187         (main): Use a zero-size object pointer instead of NULL.
1188         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
1189         m4/mmap-anon.m4.
1190         (Depends-on): Add getpagesize.
1191         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1192         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
1193         m4/mmap-anon.m4.
1194         (Depends-on): Add getpagesize.
1195         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1196         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
1197         m4/mmap-anon.m4.
1198         (Depends-on): Add getpagesize.
1199         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1200         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
1201         m4/mmap-anon.m4.
1202         (Depends-on): Add getpagesize.
1203         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1204         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
1205         m4/mmap-anon.m4.
1206         (Depends-on): Add getpagesize.
1207         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1208
1209 2009-05-12  Bruno Haible  <bruno@clisp.org>
1210
1211         Tests for module 'alignof'.
1212         * modules/alignof-tests: New file.
1213         * tests/test-alignof.c: New file.
1214
1215 2009-05-12  Bruno Haible  <bruno@clisp.org>
1216
1217         Fix alignof macro.
1218         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
1219         vendor compilers that are always correct.
1220
1221 2009-05-12  Bruno Haible  <bruno@clisp.org>
1222
1223         Make the MAP_ANONYMOUS detection work on HP-UX 11.
1224         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
1225         not whether its fully works.
1226
1227 2009-05-12  Bruno Haible  <bruno@clisp.org>
1228
1229         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
1230
1231 2009-05-12  Jim Meyering  <meyering@redhat.com>
1232
1233         * top/maint.mk: Adjust backslash alignment.
1234
1235 2009-05-11  Simon Josefsson  <simon@josefsson.org>
1236
1237         * top/maint.mk: Make $(srcdir)/build-aux configurable.
1238
1239 2009-05-11  Eric Blake  <ebb9@byu.net>
1240
1241         argp: avoid undefined behavior
1242         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
1243         macros.
1244
1245 2009-05-08  Simon Josefsson  <simon@josefsson.org>
1246
1247         * tests/test-vc-list-files-git.sh: Do git config of user.email and
1248         user.name to prevent git commit from complaining.
1249
1250 2009-05-10  Bruno Haible  <bruno@clisp.org>
1251
1252         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
1253         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
1254         it rewrites every file name only once.
1255         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
1256
1257 2009-05-08  Bruno Haible  <bruno@clisp.org>
1258
1259         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
1260         instead of 'max'.
1261
1262 2009-05-08  Simon Josefsson  <simon@josefsson.org>
1263
1264         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
1265         sockaddr_storage test.
1266
1267 2009-05-07  Simon Josefsson  <simon@josefsson.org>
1268
1269         * modules/sys_socket (Makefile.am): Substitute
1270         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
1271         * m4/sys_socket_h.m4: Check for sockaddr_storage.
1272         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
1273         * tests/test-sys_socket.c: Check sockaddr_storage.
1274
1275 2009-05-08  Bruno Haible  <bruno@clisp.org>
1276
1277         New module 'alignof'.
1278         * lib/alignof.h: New file.
1279         * modules/alignof: New file.
1280
1281 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1282             Bruno Haible  <bruno@clisp.org>
1283
1284         Fix test-file-has-acl on FreeBSD.
1285         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
1286         mask is implicitly added.
1287         * tests/test-file-has-acl.c: Include <signal.h>.
1288         (main): Terminate the test after 5 seconds.
1289         * modules/acl-tests (configure.ac): Check for alarm function.
1290
1291 2009-05-04  Bruno Haible  <bruno@clisp.org>
1292
1293         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
1294         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
1295         * modules/errno (configure.ac): Drop AC_REQUIRE.
1296         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
1297         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
1298
1299 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1300
1301         * modules/glob-tests: New module.
1302         * tests/test-glob.c: Add.
1303
1304 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1305
1306         * modules/fnmatch-tests: New module.
1307         * tests/test-fnmatch.c: Add.
1308
1309 2009-05-04  Eric Blake  <ebb9@byu.net>
1310
1311         maint: make the new no-submodule-changes rule VPATH-safe
1312         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
1313
1314 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1315             Bruno Haible  <bruno@clisp.org>
1316
1317         acl: Fix infinite loop on FreeBSD.
1318         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
1319         of return value from acl_get_entry.
1320         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
1321         Likewise.
1322
1323 2009-05-03  Bruno Haible  <bruno@clisp.org>
1324
1325         * lib/acl-internal.h (acl_entries): Clarify return value.
1326         * lib/acl_entries.c (acl_entries): Likewise.
1327
1328 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1329
1330         Bug fix in acl module.
1331         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
1332
1333 2009-05-03  Bruno Haible  <bruno@clisp.org>
1334
1335         Create gperf-generated file in the source dir, not in the build dir.
1336         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
1337         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
1338         * modules/unicase/locale-language (unicase/locale-languages.h):
1339         Likewise.
1340         * modules/unicase/special-casing (unicase/special-casing-table.h):
1341         Likewise.
1342         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
1343         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
1344         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
1345         Reported by Ralf Wildenhues.
1346
1347 2009-05-03  Bruno Haible  <bruno@clisp.org>
1348
1349         * modules/fnmatch (Description, configure.ac): Taken from
1350         fnmatch-posix.
1351         * modules/fnmatch-posix: Turn into a symbolic reference to the
1352         'fnmatch' module, and deprecate.
1353         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
1354
1355 2009-05-03  Bruno Haible  <bruno@clisp.org>
1356
1357         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
1358         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
1359         Reported by Ralf Wildenhues.
1360
1361 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1362
1363         * m4/fnmatch.m4: Fix fnmatch re-define.
1364
1365 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1366
1367         priv-set: new module and tests; adapt write-any-file
1368         * lib/priv-set.c: New file.
1369         * lib/priv-set.h: New file.
1370         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
1371         * lib/write-any-file.c: Simplify by using priv-set module.
1372         * m4/priv-set.m4: New file.
1373         * modules/priv-set: New file.
1374         * modules/unlinkdir: Add dependency on priv-set module.
1375         * modules/write-any-file: Likewise.
1376
1377         Tests for module 'priv-set'.
1378         * modules/priv-set-tests: New file.
1379         * tests/test-priv-set.c: New file.
1380
1381 2009-05-03  Jim Meyering  <meyering@redhat.com>
1382             Bruno Haible  <bruno@clisp.org>
1383
1384         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
1385         use the converted UTF-8 variant of the name instead.
1386
1387 2009-05-03  Jim Meyering  <meyering@redhat.com>
1388
1389         tests: tighten some getdate tests
1390         * tests/test-getdate.c (main): Tighten tests: require equality,
1391         not just greater than.  Set TZ envvar to UTC0.
1392
1393 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
1394
1395         getdate: correctly interpret "next monday" when run on a Monday
1396         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
1397         that e.g., "next tues" (when run on a tuesday) results in a date
1398         that is one week in the future, and not today's date.
1399         I.e., add a week when the wday is the same as the current one.
1400         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
1401         and earlier by Martin Bernreuther and Jan Minář.
1402         * tests/test-getdate.c (main): Check that "next DAY" is always in
1403         the future and that "last DAY" is always in the past.
1404
1405 2009-05-02  Jim Meyering  <meyering@redhat.com>
1406
1407         build: ensure that a release build fails when a submodule is unclean
1408         * top/maint.mk (no-submodule-changes): New rule.
1409         (alpha beta major): Depend on it.
1410
1411 2009-05-02  Bruno Haible  <bruno@clisp.org>
1412
1413         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
1414         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
1415         shell variable gl_fnmatch_required to detect which variant is
1416         requested.
1417         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
1418         gl_FUNC_FNMATCH_POSIX.
1419         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
1420         exclude fnmatch-posix.
1421
1422 2009-05-02  Bruno Haible  <bruno@clisp.org>
1423
1424         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
1425         * modules/mbsrtowcs (License): Change to LGPLv2+.
1426         * modules/strnlen1 (License): Likewise.
1427         Reported by Simon Josefsson.
1428
1429 2009-05-02  Bruno Haible  <bruno@clisp.org>
1430
1431         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
1432         "cross".
1433         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
1434         gnulib-tool was called with option --source-base=lib.
1435
1436 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1437
1438         Use automake *-local hooks without commands, for extensibility.
1439         * modules/localcharset (Makefile.am): Rename install-exec-local
1440         rule to install-exec-localcharset, and make it a prerequisite of
1441         install-exec-local.  Likewise, rename the uninstall-local rule to
1442         uninstall-localcharset, and make it a prerequisite of the former.
1443
1444 2009-05-01  Bruno Haible  <bruno@clisp.org>
1445
1446         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
1447         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
1448         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
1449         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
1450         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
1451         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
1452         m4/locale-zh.m4, m4/codeset.m4.
1453
1454         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
1455         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
1456         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
1457         m4/locale-zh.m4.
1458
1459         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
1460         REPLACE_WCRTOMB if mbstate_t must be replaced.
1461         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
1462         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
1463
1464 2009-05-01  Bruno Haible  <bruno@clisp.org>
1465
1466         Avoid compiler warnings when redefining macros defined by <libintl.h>.
1467         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
1468         dngettext, dcngettext, textdomain, bindtextdomain,
1469         bind_textdomain_codeset): Undefine before redefining.
1470
1471 2009-04-30  Bruno Haible  <bruno@clisp.org>
1472
1473         Fix bug introduced on 2009-04-25.
1474         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
1475         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
1476         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
1477         is defined.
1478         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
1479         is defined.
1480         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
1481         is defined.
1482         Reported by Elbert_Pol <elbert.pol@gmail.com>.
1483
1484 2009-04-28  Bruno Haible  <bruno@clisp.org>
1485
1486         Comment tweaks.
1487         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
1488         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
1489         * lib/unicase.h (u*_casexfrm): Likewise.
1490         Reported by Paolo Bonzini.
1491
1492 2009-04-28  Bruno Haible  <bruno@clisp.org>
1493
1494         Fix a compilation error.
1495         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
1496         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
1497         Reported by Jim Meyering.
1498
1499 2009-04-27  Bruno Haible  <bruno@clisp.org>
1500
1501         New module 'libunistring'.
1502         * modules/libunistring: New file.
1503         * m4/libunistring.m4: New file.
1504         * MODULES.html.sh (Unicode string functions): Add it.
1505
1506 2009-04-27  Eric Blake  <ebb9@byu.net>
1507
1508         maint.mk: allow package-specific header to provide <config.h>
1509         * top/maint.mk (sc_require_config_h): New variable.
1510         (sc_require_config_h, sc_require_config_h_first): Use it.
1511
1512 2009-04-27  Simon Josefsson  <simon@josefsson.org>
1513
1514         * top/maint.mk (sc_avoid_if_before_free): Except
1515         useless-if-before-free script.
1516
1517 2009-04-27  Eric Blake  <ebb9@byu.net>
1518
1519         maintainer-makefile: depend on all required helper scripts
1520         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
1521         useless-if-before-free.
1522         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
1523         version, rather than assuming gnulib checkout is available.
1524         Reported by Simen Josefsson.
1525
1526 2009-04-26  Bruno Haible  <bruno@clisp.org>
1527
1528         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
1529         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
1530         "../" or "..".
1531
1532 2009-04-26  Bruno Haible  <bruno@clisp.org>
1533
1534         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
1535         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
1536         AC_LIB_HAVE_LINKFLAGS.
1537
1538 2009-04-26  Bruno Haible  <bruno@clisp.org>
1539
1540         Simplify calling convention of u*_conv_from_encoding.
1541         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
1542         u32_conv_from_encoding): Expect a resultbuf argument and return the
1543         result directly as a pointer.
1544         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
1545         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
1546         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
1547         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
1548         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
1549         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
1550         Update.
1551         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
1552         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
1553         * lib/vasnprintf.c (VASNPRINTF): Update.
1554         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
1555         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
1556         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
1557         * NEWS: Mention the change.
1558
1559 2009-04-26  Bruno Haible  <bruno@clisp.org>
1560
1561         Simplify calling convention of u*_conv_to_encoding.
1562         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
1563         u32_conv_to_encoding): Expect a resultbuf argument and return the
1564         result directly as a pointer.
1565         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
1566         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
1567         freeing scaled_offsets if mem_iconveha failed.
1568         * lib/unicase/u-casexfrm.h (FUNC): Update.
1569         * lib/uninorm/u-normxfrm.h (FUNC): Update.
1570         * lib/vasnprintf.c (VASNPRINTF): Update.
1571         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
1572         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
1573         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
1574         * NEWS: Mention the change.
1575
1576 2009-04-26  Bruno Haible  <bruno@clisp.org>
1577
1578         Avoid test failures on AIX and OSF/1.
1579         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
1580         malloc(0).
1581         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
1582         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
1583         Likewise.
1584         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
1585         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
1586         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
1587         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
1588         * doc/posix-functions/malloc.texi: Document the portability problem
1589         related to malloc(0).
1590
1591 2009-04-26  Bruno Haible  <bruno@clisp.org>
1592
1593         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
1594         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
1595         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
1596
1597 2009-04-25  Bruno Haible  <bruno@clisp.org>
1598
1599         Avoid link error when creating a namespace clean library.
1600         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
1601         as macro with arguments if already defined as an alias.
1602         * lib/signbitf.c (gl_signbitf): Don't undefine.
1603         * lib/signbitd.c (gl_signbitd): Don't undefine.
1604         * lib/signbitl.c (gl_signbitl): Don't undefine.
1605
1606 2009-04-25  Jim Meyering  <meyering@redhat.com>
1607
1608         vc-list-files: fix another quoting bug
1609         * build-aux/vc-list-files: Avoid sed backslash expansion
1610         of pathological directory names.
1611
1612 2009-04-25  Eric Blake  <ebb9@byu.net>
1613
1614         vc-list-files: fix shell quoting error
1615         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
1616         timestamp.
1617
1618 2009-04-25  Jim Meyering  <meyering@redhat.com>
1619
1620         vc-list-files: restore lost functionality with subdir argument
1621         * build-aux/vc-list-files: When given a non-"." sub-directory
1622         argument, substitute the $dir/ prefix back onto each resulting name.
1623         Otherwise, coreutils' root_tests check would fail.
1624
1625 2009-04-24  Eric Blake  <ebb9@byu.net>
1626
1627         vc-list-files: ignore git symlinks
1628         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
1629         than ls-files, to ignore git symlinks.
1630
1631         maint.mk: import improvements from m4
1632         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
1633         (move_if_change): Delete unused macro.
1634         (news-date-check, vc-diff-check): Support VPATH builds.
1635         (announcement): Likewise.  Split --bootstrap-tools list...
1636         (boostrap-tools): ...into separate list, which can be overridden
1637         in cfg.mk.
1638         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
1639         requiring dependency on useless-if-before-free module.
1640         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
1641         Support VPATH builds.
1642
1643 2009-04-24  Jim Meyering  <meyering@redhat.com>
1644
1645         maint.mk: remove coreutils-specific rules and variables
1646         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
1647         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
1648         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
1649
1650         maint.mk: remove obsolete rule
1651         * top/maint.mk (rel-check): Remove rule.
1652         (WGET, WGETFLAGS): Remove now-unused variables.
1653
1654 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1655
1656         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
1657         consistency.
1658
1659         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
1660         '$(PATH_SEPARATOR)' instead of ':'.
1661
1662 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1663
1664         * lib/getopt1.c (main): Use 'const' for static array.
1665
1666 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1667
1668         * top/maint.mk: Sync with coreutils.
1669         * NEWS: Explain incompatibilities.
1670
1671 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1672             Bruno Haible  <bruno@clisp.org>
1673
1674         Fix cross-compilation results.
1675         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
1676         statement, as third argument of AC_TRY_RUN.
1677         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
1678         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
1679         Likewise.
1680         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
1681         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
1682         Likewise.
1683         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
1684         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
1685         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
1686
1687 2009-04-20  Bruno Haible  <bruno@clisp.org>
1688
1689         Avoid test failure on mingw.
1690         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
1691
1692 2009-04-20  Bruno Haible  <bruno@clisp.org>
1693
1694         Avoid compilation error on mingw.
1695         * modules/localename-tests (Depends-on): Add locale.
1696
1697 2009-04-19  Bruno Haible  <bruno@clisp.org>
1698
1699         Support for building a shared library on Windows platforms.
1700         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
1701         (main): Test the presence of UNINORM_NFC here.
1702         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
1703         (main): Test the presence of UNINORM_NFD here.
1704         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
1705         (main): Test the presence of UNINORM_NFKC here.
1706         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
1707         (main): Test the presence of UNINORM_NFKD here.
1708
1709 2009-04-19  Bruno Haible  <bruno@clisp.org>
1710
1711         Avoid a compiler warning.
1712         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
1713         Change type of variable 'sequence'.
1714
1715 2009-04-19  Bruno Haible  <bruno@clisp.org>
1716
1717         * modules/configmake (Makefile.am): When the contents of configmake.h
1718         does not change, arrange to preserve its modification time.
1719
1720 2009-04-17  Simon Josefsson  <simon@josefsson.org>
1721
1722         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
1723         gettext domain.
1724
1725 2009-04-16  Jim Meyering  <meyering@redhat.com>
1726
1727         useless-if-before-free: improve conversion code
1728         * build-aux/useless-if-before-free: Adjust code-in-comment to match
1729         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
1730
1731 2009-04-14  Bruno Haible  <bruno@clisp.org>
1732
1733         * modules/fcntl (Depends-on): Add extensions.
1734         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
1735
1736 2009-04-12  Ben Pfaff  <blp@gnu.org>
1737
1738         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
1739         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
1740
1741 2009-03-20  Ben Pfaff  <blp@gnu.org>
1742
1743         Make rename replace existing destinations on Windows.
1744         * m4/rename.m4: Add test for Mingw.
1745         * lib/rename.c: Add rename replacement that uses MoveFileEx with
1746         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
1747         * doc/posix-functions/rename.texi: Document.
1748
1749 2009-04-10  Bruno Haible  <bruno@clisp.org>
1750
1751         New include file "iconveh.h".
1752         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
1753         * lib/striconveh.h: Include it.
1754         (enum iconv_ilseq_handler): Remove definition.
1755         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
1756         striconveh.h.
1757         * lib/striconveha.c: Include striconveh.h.
1758         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
1759         * modules/striconveh (Files): Add lib/iconveh.h.
1760         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
1761         lib/striconveh.h.
1762
1763 2009-04-10  Bruno Haible  <bruno@clisp.org>
1764
1765         * lib/uniconv.h: Update comment.
1766
1767 2009-04-10  Bruno Haible  <bruno@clisp.org>
1768
1769         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
1770         always.
1771         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
1772         * lib/unistr/u16-mbtouc-aux.c: Likewise.
1773         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
1774         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
1775         "unistring-notinline.h", so that the function gets defined always.
1776         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
1777         * lib/unistr/u8-uctomb.c: Likewise.
1778         * lib/unistr/u16-mbtouc.c: Likewise.
1779         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
1780         * lib/unistr/u16-uctomb.c: Likewise.
1781         * lib/unistr/u32-mbtouc.c: Likewise.
1782         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
1783         * lib/unistr/u32-uctomb.c: Likewise.
1784
1785 2009-04-10  Bruno Haible  <bruno@clisp.org>
1786
1787         Mark 'utime' obsolete.
1788         * modules/utime (Status, Notice): New sections.
1789         Suggested by Jim Meyering.
1790
1791         Fix cross-compile guess for utime test.
1792         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
1793         autoconf.
1794         * doc/posix-functions/utime.texi: Give more precisions.
1795         Reported by Jan <ipif@ymail.com>.
1796
1797 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
1798
1799         filevercmp: correct today's change
1800         * lib/filevercmp.c: Also handle coreutils' test inputs.
1801         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
1802
1803         Fix regression in 'filevercmp' module. Thanks Sven Joachim
1804         for reporting it.
1805         * lib/filevercmp.c: Special handle for "", "." and "..".
1806         * tests/test-filevercmp.c: Enlarge the set suite.
1807
1808 2009-04-07  Jim Meyering  <meyering@redhat.com>
1809
1810         useless-if-before-free: show how to remove braced useless free, too
1811         * build-aux/useless-if-before-free: still only in a comment, though.
1812
1813 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
1814
1815         maint.mk: import changes to syntax-check macros from coreutils
1816         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
1817         Use them in the relevant macros.
1818
1819 2009-04-06  Bruno Haible  <bruno@clisp.org>
1820
1821         Fix unportable use of bit-fields.
1822         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
1823         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
1824         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
1825
1826 2009-04-06  Bruno Haible  <bruno@clisp.org>
1827
1828         Avoid test failures on AIX and OSF/1.
1829         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
1830         that malloc(0) = NULL.
1831         * tests/unicase/test-u8-tolower.c (check): Likewise.
1832         * tests/unicase/test-u8-totitle.c (check): Likewise.
1833         * tests/unicase/test-u8-toupper.c (check): Likewise.
1834         * tests/unicase/test-u16-casefold.c (check): Likewise.
1835         * tests/unicase/test-u16-tolower.c (check): Likewise.
1836         * tests/unicase/test-u16-totitle.c (check): Likewise.
1837         * tests/unicase/test-u16-toupper.c (check): Likewise.
1838         * tests/unicase/test-u32-casefold.c (check): Likewise.
1839         * tests/unicase/test-u32-tolower.c (check): Likewise.
1840         * tests/unicase/test-u32-totitle.c (check): Likewise.
1841         * tests/unicase/test-u32-toupper.c (check): Likewise.
1842         * tests/uninorm/test-u8-nfc.c (check): Likewise.
1843         * tests/uninorm/test-u8-nfd.c (check): Likewise.
1844         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
1845         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
1846         * tests/uninorm/test-u16-nfc.c (check): Likewise.
1847         * tests/uninorm/test-u16-nfd.c (check): Likewise.
1848         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
1849         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
1850         * tests/uninorm/test-u32-nfc.c (check): Likewise.
1851         * tests/uninorm/test-u32-nfd.c (check): Likewise.
1852         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
1853         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
1854
1855 2009-04-05  Bruno Haible  <bruno@clisp.org>
1856
1857         Work around an autoconf limitation.
1858         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
1859         comment line if it would be longer than 3 KB.
1860
1861 2009-04-05  Bruno Haible  <bruno@clisp.org>
1862
1863         Avoid test failure with libiconv-1.13.
1864         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
1865         of the expected test results.
1866
1867 2009-04-05  Bruno Haible  <bruno@clisp.org>
1868
1869         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
1870         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
1871         that it should be installed.
1872
1873 2009-04-05  Bruno Haible  <bruno@clisp.org>
1874
1875         * gnulib-tool: New option --copy-file.
1876         (func_usage): Document it.
1877         (func_dest_tmpfilename): Moved out of func_import.
1878         (func_add_file, func_update_file): New functions, extracted from
1879         func_import.
1880         (func_import): Update.
1881
1882 2009-04-05  Karl Berry  <karl@gnu.org>
1883
1884         * README: prominently mention gnulib-tool.
1885         Rearrange sections so getting the code is near the top.
1886
1887 2009-04-05  Bruno Haible  <bruno@clisp.org>
1888
1889         * lib/unicase.h: Mention u*_cmp2.
1890         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
1891         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
1892         * lib/unicase/ulc-casecmp.c: Likewise.
1893         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
1894         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
1895         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
1896         unistr/u8-cmp.
1897         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
1898         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
1899         unistr/u16-cmp.
1900         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
1901         unistr/u32-cmp.
1902
1903         * lib/uninorm.h: Mention u*_cmp2.
1904         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
1905         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
1906         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
1907         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
1908         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
1909         unistr/u8-cmp.
1910         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
1911         unistr/u16-cmp.
1912         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
1913         unistr/u32-cmp.
1914
1915         New module 'unistr/u32-cmp2'.
1916         * lib/unistr/u32-cmp2.c: New file.
1917         * modules/unistr/u32-cmp2: New file.
1918
1919         New module 'unistr/u16-cmp2'.
1920         * lib/unistr/u16-cmp2.c: New file.
1921         * modules/unistr/u16-cmp2: New file.
1922
1923         New module 'unistr/u8-cmp2'.
1924         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
1925         * lib/unistr/u8-cmp2.c: New file.
1926         * lib/unistr/u-cmp2.h: New file.
1927         * modules/unistr/u8-cmp2: New file.
1928
1929 2009-04-05  Bruno Haible  <bruno@clisp.org>
1930
1931         * lib/unictype.h (uc_property_is_valid): New macro.
1932         * tests/unictype/test-pr_byname.c (main): Use it.
1933
1934         * lib/unistr.h: Doc fixes.
1935         * lib/uniconv.h: Doc fixes.
1936         * lib/unictype.h: Doc fixes.
1937
1938 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
1939
1940         Port coreutils 7.2 to Solaris 8.
1941
1942         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
1943         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
1944         for Solaris 8.  This is a bit of a hack, as it means it's the
1945         caller's responsibility to add -lnsl if needed, but most likely it
1946         won't be needed since only getaddrinfo uses this and getaddrinfo
1947         isn't needed on Solaris 8.
1948
1949         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
1950         problem to Solaris 8 encountered with coreutils 7.2, which
1951         resulted in a message "fnmatch.c:292: warning: passing argument 4
1952         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
1953         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
1954
1955 2009-04-03  Simon Josefsson  <simon@josefsson.org>
1956
1957         * m4/ld-version-script.m4: Add FIXME comment.
1958
1959 2009-04-02  Simon Josefsson  <simon@josefsson.org>
1960
1961         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
1962         SOVERSION variable.
1963
1964 2009-04-02  Bruno Haible  <bruno@clisp.org>
1965
1966         * Makefile (info, html, dvi, pdf): Combine the rules.
1967         Suggested by Jim Meyering.
1968
1969 2009-04-01  Bruno Haible  <bruno@clisp.org>
1970
1971         * Makefile (info, html, dvi, pdf): New targets.
1972         Reported by Reuben Thomas <rrt@sc3d.org>.
1973
1974 2009-04-01  Bruno Haible  <bruno@clisp.org>
1975
1976         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
1977         can be put into PATH.
1978         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
1979
1980 2009-04-01  Bruno Haible  <bruno@clisp.org>
1981
1982         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
1983
1984 2009-04-01  Bruno Haible  <bruno@clisp.org>
1985
1986         Rename module 'visibility'.
1987         * modules/lib-symbol-visibility: Renamed from modules/visibility.
1988         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
1989         * doc/gnulib.texi: Update.
1990         * MODULES.html.sh (Misc): Update.
1991         * NEWS: Mention the change.
1992
1993 2009-04-01  Simon Josefsson  <simon@josefsson.org>
1994
1995         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
1996         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
1997         Eric Blake <ebb9@byu.net> for review.
1998         * MODULES.html.sh: Add lib-msvc-compat.
1999         * doc/gnulib.texi: Link to new section.
2000         * m4/ld-output-def.m4: New file.
2001         * doc/ld-output-def.texi: New file.
2002
2003 2009-04-01  Simon Josefsson  <simon@josefsson.org>
2004
2005         Rename ld-version-script to lib-symbol-versions.  Suggested by
2006         Bruno Haible <bruno@clisp.org>.
2007         * modules/ld-version-script: Renamed to lib-symbol-versions.
2008         * doc/ld-version-script.texi: Fix module name.
2009         * MODULES.html.sh: Add lib-symbol-versions.
2010
2011 2009-03-31  Simon Josefsson  <simon@josefsson.org>
2012
2013         * modules/u64-tests: New file.
2014         * tests/test-u64.c: New file.
2015
2016 2009-03-04  Simon Josefsson  <simon@josefsson.org>
2017
2018         * MODULES.html.sh: Mention u64.
2019         * modules/u64: New module.
2020         * modules/crypto/sha512: Depend on u64 module instead of providing
2021         u64.h.
2022
2023 2009-03-27  Eric Blake  <ebb9@byu.net>
2024
2025         test-strerror: make debugging EAI_SYSTEM easier
2026         * modules/getaddrinfo-tests (Depends-on): Add strerror.
2027         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
2028         failure was EAI_SYSTEM.
2029
2030 2009-03-25  Bruno Haible  <bruno@clisp.org>
2031
2032         Fix a problem with --enable-relocatable on Solaris 7.
2033         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
2034         since 2008-02-24.
2035
2036 2009-03-25  Eric Blake  <ebb9@byu.net>
2037
2038         test-sockets: avoid gcc warning
2039         * tests/test-sockets.c (main): Silence compiler warning.
2040
2041 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
2042
2043         New modules nproc, pthread, contributed by Glen Lenker.
2044
2045         * MODULES.html.sh: Add pthread, nproc.
2046         * lib/nproc.c: New file.
2047         * lib/nproc.h: New file.
2048         * lib/pthread.in.h: New file.
2049         * m4/pthread.m4: New file.
2050         * modules/nproc: New file.
2051         * modules/pthread: New file.
2052
2053 2009-03-24  Simon Josefsson  <simon@josefsson.org>
2054
2055         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
2056         New variable.
2057
2058 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
2059
2060         filevercmp: handle simple~ and numbered.~3~ backup suffixes
2061         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
2062         * tests/test-filevercmp.c: Add tests for backup suffixes.
2063
2064 2009-03-24  Simon Josefsson  <simon@josefsson.org>
2065
2066         * modules/stdlib (Depends-on): Add stdint, needed when defining
2067         struct random_data on, for example, HP-UX 10.20.  Reported by
2068         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
2069
2070 2009-03-24  Simon Josefsson  <simon@josefsson.org>
2071
2072         * lib/readline.c (readline): Call fflush on stdout after printing
2073         prompt.
2074
2075 2009-03-20  Bruno Haible  <bruno@clisp.org>
2076
2077         Remove dependency from 'close' module to -lws2_32 on native Windows.
2078         * lib/close-hook.h: New file.
2079         * lib/close-hook.c: New file.
2080         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
2081         w32sock.h.
2082         (_gl_close_fd_maybe_socket): Remove function.
2083         (rpl_close): Invoke execute_all_close_hooks instead of
2084         _gl_close_fd_maybe_socket.
2085         * lib/sockets.c: Include close-hook.h, w32sock.h.
2086         (close_fd_maybe_socket): New function, essentially from lib/close.c.
2087         (close_sockets_hook): New variable.
2088         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
2089         (gl_sockets_cleanup): Unregister it.
2090         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
2091         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
2092         * modules/close-hook: New file.
2093         * modules/close (Files): Remove lib/w32sock.h.
2094         (Depends-on): Add close-hook.
2095         (Link): Remove section.
2096         * modules/sockets (Files): Add lib/w32sock.h.
2097         (Depends-on): Add close-hook.
2098         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
2099         invocation.
2100         * NEWS: Mention that LIB_CLOSE is gone.
2101
2102 2009-03-23  Eric Blake  <ebb9@byu.net>
2103
2104         signal-tests: test previous patch
2105         * tests/test-signal.c: New file.
2106         * modules/signal-tests: Likewise.
2107
2108         signal.h: always support 'volatile sig_atomic_t'
2109         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
2110         (gl_SIGNAL_H_DEFAULTS): Add a default.
2111         * modules/signal (Makefile.am): Substitute if needed.
2112         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
2113         users can blindly add volatile.
2114         * doc/posix-headers/signal.texi (signal.h): Document it.
2115         Reported by Matthew Woehlke.
2116
2117 2009-03-23  Jim Meyering  <meyering@redhat.com>
2118
2119         pathmax: PATH_MAX: use pathconf only when available
2120         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
2121         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
2122         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
2123         This avoids a link failure in a PSP cross-compilation environment
2124         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
2125
2126         * lib/vasnprintf.c (divide): Fix typo in comment.
2127
2128 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2129
2130         * gnulib-tool (func_filter_filelist): Fix comment.
2131
2132 2009-03-20  Bruno Haible  <bruno@clisp.org>
2133
2134         Make sockets.h self-contained.
2135         * lib/sockets.c: Include sockets.h first.
2136         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
2137
2138 2009-03-19  Eric Blake  <ebb9@byu.net>
2139
2140         doc: mention more functions added in cygwin 1.7.0
2141         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
2142         addition.
2143         * doc/posix-functions/log2f.texi: Likewise.
2144
2145 2009-03-19  Jim Meyering  <meyering@redhat.com>
2146
2147         fsusage: avoid syntax error due to statement-before-declaration
2148         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
2149         after all declarations.  Reported by Matthew Woehlke in
2150         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
2151
2152 2009-03-18  Eric Blake  <ebb9@byu.net>
2153
2154         build-aux/compile: sync from automake
2155         * build-aux/compile: New file, from automake.
2156         * config/srclist.txt: Mention build-aux/compile.
2157
2158 2009-03-17  Bruno Haible  <bruno@clisp.org>
2159
2160         * lib/git-merge-changelog.c: Fix typo in comment.
2161         Reported by Reuben Thomas <rrt@sc3d.org>.
2162
2163 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
2164
2165         * m4/regex.m4: update and improve help for
2166         --without-included-regex.
2167
2168 2009-03-17  Simon Josefsson  <simon@josefsson.org>
2169
2170         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
2171         failure on missing include files.
2172
2173 2009-03-17  Eric Blake  <ebb9@byu.net>
2174
2175         doc: mention more functions added in cygwin 1.7.0
2176         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
2177         addition.
2178         * doc/posix-functions/fwscanf.texi: Likewise.
2179         * doc/posix-functions/swprintf.texi: Likewise.
2180         * doc/posix-functions/swscanf.texi: Likewise.
2181         * doc/posix-functions/vfwprintf.texi: Likewise.
2182         * doc/posix-functions/vfwscanf.texi: Likewise.
2183         * doc/posix-functions/vswprintf.texi: Likewise.
2184         * doc/posix-functions/vswscanf.texi: Likewise.
2185         * doc/posix-functions/vwprintf.texi: Likewise.
2186         * doc/posix-functions/vwscanf.texi: Likewise.
2187         * doc/posix-functions/wcscasecmp.texi: Likewise.
2188         * doc/posix-functions/wcsdup.texi: Likewise.
2189         * doc/posix-functions/wcsftime.texi: Likewise.
2190         * doc/posix-functions/wcsncasecmp.texi: Likewise.
2191         * doc/posix-functions/wprintf.texi: Likewise.
2192         * doc/posix-functions/wscanf.texi: Likewise.
2193         * doc/glibc-functions/gethostbyname2.texi: Likewise.
2194
2195 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2196
2197         maint.mk: really add $(AM_MAKEFLAGS)
2198         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
2199         was inadvertently omitted in the last commit.
2200         Spotted by Bruno Haible.
2201
2202         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
2203         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
2204         $(AM_MAKEFLAGS)' rather than plain `make'.
2205
2206         gnulib-tool: execute $MAKE not make
2207         * gnulib-tool: Default $MAKE to 'make'.
2208         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
2209         than make.  Initialize $MAKE in the do-autobuild script.
2210
2211         gnulib-tool: use $MAKE not make in generated files
2212         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
2213         make, in generated files.  Initialize $MAKE in the do-autobuild
2214         script.
2215
2216         * top/GNUmakefile (_have-git-version-gen): Fix typo.
2217
2218         GNUmakefile: disable parallelism only for multiple, recursive targets
2219         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
2220         additions in the Makefile.
2221         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
2222         by Automake.
2223         (.NOTPARALLEL): Only disable parallel builds if multiple targets
2224         are listed on the command line and at least one of them is
2225         listed in $(ALL_RECURSIVE_TARGETS).
2226
2227 2009-03-14  Bruno Haible  <bruno@clisp.org>
2228
2229         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
2230         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
2231         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
2232         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
2233         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
2234         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
2235         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
2236         unistr/u8-uctomb.
2237         * modules/unistr/u8-strchr (Depends-on): Likewise.
2238         * modules/unistr/u8-strrchr (Depends-on): Likewise.
2239         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
2240         unistr/u16-uctomb.
2241         * modules/unistr/u16-strchr (Depends-on): Likewise.
2242         * modules/unistr/u16-strrchr (Depends-on): Likewise.
2243
2244 2009-03-12  Bruno Haible  <bruno@clisp.org>
2245
2246         Work around select() bug on Interix 3.5.
2247         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
2248         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
2249         * m4/select.m4: New file.
2250         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
2251         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
2252         * modules/select (Files): Add m4/select.m4.
2253         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
2254         * modules/nanosleep (Depends-on): Add select.
2255         * modules/poll (Depends-on): Likewise.
2256         * doc/posix-functions/select.texi: Mention the Interix bug.
2257         Reported by Markus Duft <mduft@gentoo.org>.
2258
2259         * lib/select.c: Renamed from lib/winsock-select.c.
2260         * modules/select (Files): Add lib/select.c, remove
2261         lib/winsock-select.c.
2262         (configure.ac): Update.
2263
2264 2009-03-12  Jim Meyering  <meyering@redhat.com>
2265
2266         avoid gcc warnings about unused macro definitions
2267         * lib/readtokens.c (STREQ): Remove unused definition.
2268         * lib/xmalloc.c (SIZE_MAX): Likewise.
2269         * lib/openat-die.c (N_): Likewise.
2270         * lib/mountlist.c (SIZE_MAX): Remove definition.
2271         Instead, include <stdint.h>.
2272         * lib/readutmp.c: Likewise.
2273         * modules/readutmp (Depends-on): Add stdint.
2274         * modules/mountlist (Depends-on): Add stdint.
2275         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
2276
2277 2009-03-10  Bruno Haible  <bruno@clisp.org>
2278
2279         Tests for module 'mbmemcasecoll'.
2280         * modules/mbmemcasecoll-tests: New file.
2281         * tests/test-mbmemcasecoll1.sh: New file.
2282         * tests/test-mbmemcasecoll2.sh: New file.
2283         * tests/test-mbmemcasecoll3.sh: New file.
2284         * tests/test-mbmemcasecoll.c: New file.
2285
2286         New module 'mbmemcasecoll'.
2287         * lib/mbmemcasecoll.h: New file.
2288         * lib/mbmemcasecoll.c: New file.
2289         * modules/mbmemcasecoll: New file.
2290
2291         * tests/test-mbmemcasecmp.h: New file, extracted from
2292         tests/test-mbmemcasecmp.c.
2293         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
2294         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
2295         (main): Update.
2296         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
2297
2298 2009-03-09  Bruno Haible  <bruno@clisp.org>
2299
2300         Tests for module 'mbmemcasecmp'.
2301         * modules/mbmemcasecmp-tests: New file.
2302         * tests/test-mbmemcasecmp1.sh: New file.
2303         * tests/test-mbmemcasecmp2.sh: New file.
2304         * tests/test-mbmemcasecmp3.sh: New file.
2305         * tests/test-mbmemcasecmp.c: New file.
2306
2307         New module 'mbmemcasecmp'.
2308         * lib/mbmemcasecmp.h: New file.
2309         * lib/mbmemcasecmp.c: New file.
2310         * modules/mbmemcasecmp: New file.
2311
2312 2009-03-09  Bruno Haible  <bruno@clisp.org>
2313
2314         Tests for module 'unicase/ulc-casecoll'.
2315         * modules/unicase/ulc-casecoll-tests: New file.
2316         * tests/unicase/test-ulc-casecoll1.sh: New file.
2317         * tests/unicase/test-ulc-casecoll2.sh: New file.
2318         * tests/unicase/test-ulc-casecoll.c: New file.
2319
2320         New module 'unicase/ulc-casecoll'.
2321         * lib/unicase.h (ulc_casecoll): New declaration.
2322         * lib/unicase/ulc-casecoll.c: New file.
2323         * modules/unicase/ulc-casecoll: New file.
2324
2325         New module 'unicase/ulc-casexfrm'.
2326         * lib/unicase.h (ulc_casexfrm): New declaration.
2327         * lib/unicase/ulc-casexfrm.c: New file.
2328         * modules/unicase/ulc-casexfrm: New file.
2329
2330 2009-03-09  Bruno Haible  <bruno@clisp.org>
2331
2332         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
2333         invocations.
2334
2335         * m4/mbscasecmp.m4: Remove file.
2336         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
2337         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
2338
2339         * m4/mbscasestr.m4: Remove file.
2340         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
2341         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
2342
2343         * m4/mbschr.m4: Remove file.
2344         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
2345         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
2346
2347         * m4/mbscspn.m4: Remove file.
2348         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
2349         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
2350
2351         * m4/mbslen.m4: Remove file.
2352         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
2353         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
2354
2355         * m4/mbsncasecmp.m4: Remove file.
2356         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
2357         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
2358
2359         * m4/mbsnlen.m4: Remove file.
2360         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
2361         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
2362
2363         * m4/mbspbrk.m4: Remove file.
2364         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
2365         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
2366
2367         * m4/mbspcasecmp.m4: Remove file.
2368         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
2369         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
2370
2371         * m4/mbsrchr.m4: Remove file.
2372         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
2373         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
2374
2375         * m4/mbssep.m4: Remove file.
2376         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
2377         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
2378
2379         * m4/mbsspn.m4: Remove file.
2380         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
2381         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
2382
2383         * m4/mbsstr.m4: Remove file.
2384         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
2385         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
2386
2387         * m4/mbstok_r.m4: Remove file.
2388         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
2389         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
2390
2391         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
2392
2393         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
2394         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
2395
2396         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
2397
2398 2009-03-08  Bruno Haible  <bruno@clisp.org>
2399
2400         Tests for module 'unicase/ulc-casecmp'.
2401         * modules/unicase/ulc-casecmp-tests: New file.
2402         * tests/unicase/test-ulc-casecmp1.sh: New file.
2403         * tests/unicase/test-ulc-casecmp2.sh: New file.
2404         * tests/unicase/test-ulc-casecmp.c: New file.
2405
2406         New module 'unicase/ulc-casecmp'.
2407         * lib/unicase.h (ulc_casecmp): New declaration.
2408         * lib/unicase/ulc-casecmp.c: New file.
2409         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
2410         'const SRC_UNIT *'.
2411         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
2412         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
2413         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
2414         * modules/unicase/ulc-casecmp: New file.
2415
2416         Tests for module 'unicase/u32-is-cased'.
2417         * modules/unicase/u32-is-cased-tests: New file.
2418         * tests/unicase/test-u32-is-cased.c: New file.
2419
2420         Tests for module 'unicase/u16-is-cased'.
2421         * modules/unicase/u16-is-cased-tests: New file.
2422         * tests/unicase/test-u16-is-cased.c: New file.
2423
2424         Tests for module 'unicase/u8-is-cased'.
2425         * modules/unicase/u8-is-cased-tests: New file.
2426         * tests/unicase/test-u8-is-cased.c: New file.
2427         * tests/unicase/test-is-cased.h: New file.
2428
2429         New module 'unicase/u32-is-cased'.
2430         * lib/unicase/u32-is-cased.c: New file.
2431         * modules/unicase/u32-is-cased: New file.
2432
2433         New module 'unicase/u16-is-cased'.
2434         * lib/unicase/u16-is-cased.c: New file.
2435         * modules/unicase/u16-is-cased: New file.
2436
2437         New module 'unicase/u8-is-cased'.
2438         * lib/unicase/u8-is-cased.c: New file.
2439         * lib/unicase/u-is-cased.h: New file.
2440         * modules/unicase/u8-is-cased: New file.
2441
2442         Tests for module 'unicase/u32-is-casefolded'.
2443         * modules/unicase/u32-is-casefolded-tests: New file.
2444         * tests/unicase/test-u32-is-casefolded.c: New file.
2445
2446         Tests for module 'unicase/u16-is-casefolded'.
2447         * modules/unicase/u16-is-casefolded-tests: New file.
2448         * tests/unicase/test-u16-is-casefolded.c: New file.
2449
2450         Tests for module 'unicase/u8-is-casefolded'.
2451         * modules/unicase/u8-is-casefolded-tests: New file.
2452         * tests/unicase/test-u8-is-casefolded.c: New file.
2453         * tests/unicase/test-is-casefolded.h: New file.
2454
2455         New module 'unicase/u32-is-casefolded'.
2456         * lib/unicase/u32-is-casefolded.c: New file.
2457         * modules/unicase/u32-is-casefolded: New file.
2458
2459         New module 'unicase/u16-is-casefolded'.
2460         * lib/unicase/u16-is-casefolded.c: New file.
2461         * modules/unicase/u16-is-casefolded: New file.
2462
2463         New module 'unicase/u8-is-casefolded'.
2464         * lib/unicase/u8-is-casefolded.c: New file.
2465         * modules/unicase/u8-is-casefolded: New file.
2466
2467         Tests for module 'unicase/u32-is-titlecase'.
2468         * modules/unicase/u32-is-titlecase-tests: New file.
2469         * tests/unicase/test-u32-is-titlecase.c: New file.
2470
2471         Tests for module 'unicase/u16-is-titlecase'.
2472         * modules/unicase/u16-is-titlecase-tests: New file.
2473         * tests/unicase/test-u16-is-titlecase.c: New file.
2474
2475         Tests for module 'unicase/u8-is-titlecase'.
2476         * modules/unicase/u8-is-titlecase-tests: New file.
2477         * tests/unicase/test-u8-is-titlecase.c: New file.
2478         * tests/unicase/test-is-titlecase.h: New file.
2479
2480         New module 'unicase/u32-is-titlecase'.
2481         * lib/unicase/u32-is-titlecase.c: New file.
2482         * modules/unicase/u32-is-titlecase: New file.
2483
2484         New module 'unicase/u16-is-titlecase'.
2485         * lib/unicase/u16-is-titlecase.c: New file.
2486         * modules/unicase/u16-is-titlecase: New file.
2487
2488         New module 'unicase/u8-is-titlecase'.
2489         * lib/unicase/u8-is-titlecase.c: New file.
2490         * modules/unicase/u8-is-titlecase: New file.
2491
2492         Tests for module 'unicase/u32-is-lowercase'.
2493         * modules/unicase/u32-is-lowercase-tests: New file.
2494         * tests/unicase/test-u32-is-lowercase.c: New file.
2495
2496         Tests for module 'unicase/u16-is-lowercase'.
2497         * modules/unicase/u16-is-lowercase-tests: New file.
2498         * tests/unicase/test-u16-is-lowercase.c: New file.
2499
2500         Tests for module 'unicase/u8-is-lowercase'.
2501         * modules/unicase/u8-is-lowercase-tests: New file.
2502         * tests/unicase/test-u8-is-lowercase.c: New file.
2503         * tests/unicase/test-is-lowercase.h: New file.
2504
2505         New module 'unicase/u32-is-lowercase'.
2506         * lib/unicase/u32-is-lowercase.c: New file.
2507         * modules/unicase/u32-is-lowercase: New file.
2508
2509         New module 'unicase/u16-is-lowercase'.
2510         * lib/unicase/u16-is-lowercase.c: New file.
2511         * modules/unicase/u16-is-lowercase: New file.
2512
2513         New module 'unicase/u8-is-lowercase'.
2514         * lib/unicase/u8-is-lowercase.c: New file.
2515         * modules/unicase/u8-is-lowercase: New file.
2516
2517         Tests for module 'unicase/u32-is-uppercase'.
2518         * modules/unicase/u32-is-uppercase-tests: New file.
2519         * tests/unicase/test-u32-is-uppercase.c: New file.
2520
2521         Tests for module 'unicase/u16-is-uppercase'.
2522         * modules/unicase/u16-is-uppercase-tests: New file.
2523         * tests/unicase/test-u16-is-uppercase.c: New file.
2524
2525         Tests for module 'unicase/u8-is-uppercase'.
2526         * modules/unicase/u8-is-uppercase-tests: New file.
2527         * tests/unicase/test-u8-is-uppercase.c: New file.
2528         * tests/unicase/test-is-uppercase.h: New file.
2529
2530         New module 'unicase/u32-is-uppercase'.
2531         * lib/unicase/u32-is-uppercase.c: New file.
2532         * modules/unicase/u32-is-uppercase: New file.
2533
2534         New module 'unicase/u16-is-uppercase'.
2535         * lib/unicase/u16-is-uppercase.c: New file.
2536         * modules/unicase/u16-is-uppercase: New file.
2537
2538         New module 'unicase/u8-is-uppercase'.
2539         * lib/unicase/u8-is-uppercase.c: New file.
2540         * modules/unicase/u8-is-uppercase: New file.
2541
2542         New module 'unicase/u32-is-invariant'.
2543         * lib/unicase/u32-is-invariant.c: New file.
2544         * modules/unicase/u32-is-invariant: New file.
2545
2546         New module 'unicase/u16-is-invariant'.
2547         * lib/unicase/u16-is-invariant.c: New file.
2548         * modules/unicase/u16-is-invariant: New file.
2549
2550         New module 'unicase/u8-is-invariant'.
2551         * lib/unicase/u8-is-invariant.c: New file.
2552         * lib/unicase/invariant.h: New file.
2553         * lib/unicase/u-is-invariant.h: New file.
2554         * modules/unicase/u8-is-invariant: New file.
2555
2556         Tests for module 'unicase/u32-casecoll'.
2557         * modules/unicase/u32-casecoll-tests: New file.
2558         * tests/unicase/test-u32-casecoll.c: New file.
2559
2560         Tests for module 'unicase/u16-casecoll'.
2561         * modules/unicase/u16-casecoll-tests: New file.
2562         * tests/unicase/test-u16-casecoll.c: New file.
2563
2564         Tests for module 'unicase/u8-casecoll'.
2565         * modules/unicase/u8-casecoll-tests: New file.
2566         * tests/unicase/test-u8-casecoll.c: New file.
2567
2568         New module 'unicase/u32-casecoll'.
2569         * lib/unicase/u32-casecoll.c: New file.
2570         * modules/unicase/u32-casecoll: New file.
2571
2572         New module 'unicase/u16-casecoll'.
2573         * lib/unicase/u16-casecoll.c: New file.
2574         * modules/unicase/u16-casecoll: New file.
2575
2576         New module 'unicase/u8-casecoll'.
2577         * lib/unicase/u8-casecoll.c: New file.
2578         * lib/unicase/u-casecoll.h: New file.
2579         * modules/unicase/u8-casecoll: New file.
2580
2581         New module 'unicase/u32-casexfrm'.
2582         * lib/unicase/u32-casexfrm.c: New file.
2583         * modules/unicase/u32-casexfrm: New file.
2584
2585         New module 'unicase/u16-casexfrm'.
2586         * lib/unicase/u16-casexfrm.c: New file.
2587         * modules/unicase/u16-casexfrm: New file.
2588
2589         New module 'unicase/u8-casexfrm'.
2590         * lib/unicase/u8-casexfrm.c: New file.
2591         * lib/unicase/u-casexfrm.h: New file.
2592         * modules/unicase/u8-casexfrm: New file.
2593
2594         Tests for module 'unicase/u32-casecmp'.
2595         * modules/unicase/u32-casecmp-tests: New file.
2596         * tests/unicase/test-u32-casecmp.c: New file.
2597
2598         Tests for module 'unicase/u16-casecmp'.
2599         * modules/unicase/u16-casecmp-tests: New file.
2600         * tests/unicase/test-u16-casecmp.c: New file.
2601
2602         Tests for module 'unicase/u8-casecmp'.
2603         * modules/unicase/u8-casecmp-tests: New file.
2604         * tests/unicase/test-u8-casecmp.c: New file.
2605         * tests/unicase/test-casecmp.h: New file.
2606
2607         New module 'unicase/u32-casecmp'.
2608         * lib/unicase/u32-casecmp.c: New file.
2609         * modules/unicase/u32-casecmp: New file.
2610
2611         New module 'unicase/u16-casecmp'.
2612         * lib/unicase/u16-casecmp.c: New file.
2613         * modules/unicase/u16-casecmp: New file.
2614
2615         New module 'unicase/u8-casecmp'.
2616         * lib/unicase/u8-casecmp.c: New file.
2617         * lib/unicase/u-casecmp.h: New file.
2618         * modules/unicase/u8-casecmp: New file.
2619
2620         Tests for module 'unicase/u32-casefold'.
2621         * modules/unicase/u32-casefold-tests: New file.
2622         * tests/unicase/test-u32-casefold.c: New file.
2623
2624         Tests for module 'unicase/u16-casefold'.
2625         * modules/unicase/u16-casefold-tests: New file.
2626         * tests/unicase/test-u16-casefold.c: New file.
2627
2628         Tests for module 'unicase/u8-casefold'.
2629         * modules/unicase/u8-casefold-tests: New file.
2630         * tests/unicase/test-u8-casefold.c: New file.
2631
2632         New module 'unicase/u32-casefold'.
2633         * lib/unicase/u32-casefold.c: New file.
2634         * modules/unicase/u32-casefold: New file.
2635
2636         New module 'unicase/u16-casefold'.
2637         * lib/unicase/u16-casefold.c: New file.
2638         * modules/unicase/u16-casefold: New file.
2639
2640         New module 'unicase/u8-casefold'.
2641         * lib/unicase/u8-casefold.c: New file.
2642         * lib/unicase/u-casefold.h: New file.
2643         * modules/unicase/u8-casefold: New file.
2644
2645         New module 'unicase/tocasefold'.
2646         * lib/unicase/casefold.h: New file.
2647         * lib/unicase/tocasefold.c: New file.
2648         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
2649         * modules/unicase/tocasefold: New file.
2650
2651         Tests for module 'unicase/u32-totitle'.
2652         * modules/unicase/u32-totitle-tests: New file.
2653         * tests/unicase/test-u32-totitle.c: New file.
2654
2655         Tests for module 'unicase/u16-totitle'.
2656         * modules/unicase/u16-totitle-tests: New file.
2657         * tests/unicase/test-u16-totitle.c: New file.
2658
2659         Tests for module 'unicase/u8-totitle'.
2660         * modules/unicase/u8-totitle-tests: New file.
2661         * tests/unicase/test-u8-totitle.c: New file.
2662
2663         New module 'unicase/u32-totitle'.
2664         * lib/unicase/u32-totitle.c: New file.
2665         * modules/unicase/u32-totitle: New file.
2666
2667         New module 'unicase/u16-totitle'.
2668         * lib/unicase/u16-totitle.c: New file.
2669         * modules/unicase/u16-totitle: New file.
2670
2671         New module 'unicase/u8-totitle'.
2672         * lib/unicase/u8-totitle.c: New file.
2673         * lib/unicase/u-totitle.h: New file.
2674         * modules/unicase/u8-totitle: New file.
2675
2676         Tests for module 'unicase/u32-tolower'.
2677         * modules/unicase/u32-tolower-tests: New file.
2678         * tests/unicase/test-u32-tolower.c: New file.
2679
2680         Tests for module 'unicase/u16-tolower'.
2681         * modules/unicase/u16-tolower-tests: New file.
2682         * tests/unicase/test-u16-tolower.c: New file.
2683
2684         Tests for module 'unicase/u8-tolower'.
2685         * modules/unicase/u8-tolower-tests: New file.
2686         * tests/unicase/test-u8-tolower.c: New file.
2687
2688         New module 'unicase/u32-tolower'.
2689         * lib/unicase/u32-tolower.c: New file.
2690         * modules/unicase/u32-tolower: New file.
2691
2692         New module 'unicase/u16-tolower'.
2693         * lib/unicase/u16-tolower.c: New file.
2694         * modules/unicase/u16-tolower: New file.
2695
2696         New module 'unicase/u8-tolower'.
2697         * lib/unicase/u8-tolower.c: New file.
2698         * modules/unicase/u8-tolower: New file.
2699
2700         Tests for module 'unicase/u32-toupper'.
2701         * modules/unicase/u32-toupper-tests: New file.
2702         * tests/unicase/test-u32-toupper.c: New file.
2703
2704         Tests for module 'unicase/u16-toupper'.
2705         * modules/unicase/u16-toupper-tests: New file.
2706         * tests/unicase/test-u16-toupper.c: New file.
2707
2708         Tests for module 'unicase/u8-toupper'.
2709         * modules/unicase/u8-toupper-tests: New file.
2710         * tests/unicase/test-u8-toupper.c: New file.
2711
2712         New module 'unicase/u32-toupper'.
2713         * lib/unicase/u32-toupper.c: New file.
2714         * modules/unicase/u32-toupper: New file.
2715
2716         New module 'unicase/u16-toupper'.
2717         * lib/unicase/u16-toupper.c: New file.
2718         * modules/unicase/u16-toupper: New file.
2719
2720         New module 'unicase/u8-toupper'.
2721         * lib/unicase/u8-toupper.c: New file.
2722         * modules/unicase/u8-toupper: New file.
2723
2724         New module 'unicase/u32-casemap'.
2725         * lib/unicase/u32-casemap.c: New file.
2726         * modules/unicase/u32-casemap: New file.
2727
2728         New module 'unicase/u16-casemap'.
2729         * lib/unicase/u16-casemap.c: New file.
2730         * modules/unicase/u16-casemap: New file.
2731
2732         New module 'unicase/u8-casemap'.
2733         * lib/unicase/unicasemap.h: New file.
2734         * lib/unicase/u8-casemap.c: New file.
2735         * lib/unicase/u-casemap.h: New file.
2736         * modules/unicase/u8-casemap: New file.
2737
2738         New module 'unicase/special-casing'.
2739         * lib/unicase/special-casing.h: New file.
2740         * lib/unicase/special-casing.c: New file.
2741         * lib/unicase/special-casing-table.gperf: New file, generated by
2742         gen-uni-tables.c.
2743         * modules/unicase/special-casing: New file.
2744
2745         Tests for module 'unicase/locale-language'.
2746         * modules/unicase/locale-language-tests: New file.
2747         * tests/unicase/test-locale-language.sh: New file.
2748         * tests/unicase/test-locale-language.c: New file.
2749
2750         New module 'unicase/locale-language'.
2751         * lib/unicase/locale-language.c: New file.
2752         * lib/unicase/locale-languages.gperf: New file.
2753         * modules/unicase/locale-language: New file.
2754
2755         Generate more tables for case conversion and case folding.
2756         * lib/gen-uni-tables.c (SCC_*): New enum items.
2757         (struct special_casing_rule): New type.
2758         (casing_rules, num_casing_rules, allocated_casing_rules): New
2759         variables.
2760         (add_casing_rule, fill_casing_rules): New functions.
2761         (struct casefold_rule): New type.
2762         (casefolding_rules, num_casefolding_rules,
2763         allocated_casefolding_rules): New variables.
2764         (fill_casefolding_rules): New function.
2765         (unicode_casefold): New variable.
2766         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
2767         sort_casing_rules, output_casing_rules): New functions.
2768         (main): Accept to more arguments: SpecialCasing.txt and
2769         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
2770         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
2771         Output mapping for casefolding.
2772
2773         * lib/unicase.h: Include stdbool.h, uninorm.h.
2774         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
2775         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
2776         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
2777         arguments.
2778         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
2779         resultp arguments.
2780         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
2781         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
2782         resultp arguments.
2783         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
2784         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
2785         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
2786         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
2787         declarations.
2788         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
2789
2790 2009-03-08  Bruno Haible  <bruno@clisp.org>
2791
2792         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
2793         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
2794         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
2795         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
2796
2797 2009-03-07  Bruno Haible  <bruno@clisp.org>
2798
2799         Adjust u*_normcmp, u*_normcoll API.
2800         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
2801         u16_normcoll, u32_normcoll): Change failure conventions.
2802         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
2803         errno and return -1.
2804         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
2805
2806 2009-03-07  Bruno Haible  <bruno@clisp.org>
2807
2808         Tests for module 'uninorm/u32-normcoll'.
2809         * modules/uninorm/u32-normcoll-tests: New file.
2810         * tests/uninorm/test-u32-normcoll.c: New file.
2811
2812         Tests for module 'uninorm/u16-normcoll'.
2813         * modules/uninorm/u16-normcoll-tests: New file.
2814         * tests/uninorm/test-u16-normcoll.c: New file.
2815
2816         Tests for module 'uninorm/u8-normcoll'.
2817         * modules/uninorm/u8-normcoll-tests: New file.
2818         * tests/uninorm/test-u8-normcoll.c: New file.
2819
2820 2009-03-07  Bruno Haible  <bruno@clisp.org>
2821
2822         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
2823         tests/uninorm/test-u32-normcmp.c.
2824         * tests/uninorm/test-u32-normcmp.c: Include it.
2825         (test_nonascii): New function, extracted from main. Add some more
2826         tests.
2827         (main): Invoke test_ascii and test_nonascii.
2828         * modules/uninorm/u32-normcmp-tests (Files): Add
2829         tests/uninorm/test-u32-normcmp.h.
2830         (Depends-on): Remove uninorm/u32-normcmp.
2831
2832         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
2833         tests/uninorm/test-u16-normcmp.c.
2834         * tests/uninorm/test-u16-normcmp.c: Include it.
2835         (test_nonascii): New function, extracted from main. Add some more
2836         tests.
2837         (main): Invoke test_ascii and test_nonascii.
2838         * modules/uninorm/u16-normcmp-tests (Files): Add
2839         tests/uninorm/test-u16-normcmp.h.
2840         (Depends-on): Remove uninorm/u16-normcmp.
2841
2842         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
2843         tests/uninorm/test-u8-normcmp.c.
2844         * tests/uninorm/test-u8-normcmp.c: Include it.
2845         (test_nonascii): New function, extracted from main. Add some more
2846         tests.
2847         (main): Invoke test_ascii and test_nonascii.
2848         * modules/uninorm/u8-normcmp-tests (Files): Add
2849         tests/uninorm/test-u8-normcmp.h.
2850         (Depends-on): Remove uninorm/u8-normcmp.
2851
2852 2009-03-07  Bruno Haible  <bruno@clisp.org>
2853
2854         New module 'uninorm/u32-normcoll'.
2855         * lib/uninorm/u32-normcoll.c: New file.
2856         * modules/uninorm/u32-normcoll: New file.
2857
2858         New module 'uninorm/u16-normcoll'.
2859         * lib/uninorm/u16-normcoll.c: New file.
2860         * modules/uninorm/u16-normcoll: New file.
2861
2862         New module 'uninorm/u8-normcoll'.
2863         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
2864         declarations.
2865         * lib/uninorm/u8-normcoll.c: New file.
2866         * lib/uninorm/u-normcoll.h: New file.
2867         * modules/uninorm/u8-normcoll: New file.
2868
2869         New module 'uninorm/u32-normxfrm'.
2870         * lib/uninorm/u32-normxfrm.c: New file.
2871         * modules/uninorm/u32-normxfrm: New file.
2872
2873         New module 'uninorm/u16-normxfrm'.
2874         * lib/uninorm/u16-normxfrm.c: New file.
2875         * modules/uninorm/u16-normxfrm: New file.
2876
2877         New module 'uninorm/u8-normxfrm'.
2878         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
2879         declarations.
2880         * lib/uninorm/u8-normxfrm.c: New file.
2881         * lib/uninorm/u-normxfrm.h: New file.
2882         * modules/uninorm/u8-normxfrm: New file.
2883
2884 2009-03-07  Bruno Haible  <bruno@clisp.org>
2885
2886         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
2887         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
2888         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
2889
2890 2009-03-07  Bruno Haible  <bruno@clisp.org>
2891
2892         New module 'memxfrm'.
2893         * lib/memxfrm.h: New file.
2894         * lib/memxfrm.c: New file.
2895         * modules/memxfrm: New file.
2896
2897 2009-03-07  Bruno Haible  <bruno@clisp.org>
2898
2899         New module 'memcmp2'.
2900         * lib/memcmp2.h: New file.
2901         * lib/memcmp2.c: New file.
2902         * modules/memcmp2: New file.
2903
2904 2009-03-07  Bruno Haible  <bruno@clisp.org>
2905
2906         Tests for module 'uninorm/decomposing-form'.
2907         * modules/uninorm/decomposing-form-tests: New file.
2908         * tests/uninorm/test-decomposing-form.c: New file.
2909
2910         New module 'uninorm/decomposing-form'.
2911         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
2912         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
2913         Add 'decomposing_variant' field.
2914         * lib/uninorm/decomposing-form.c: New file.
2915         * lib/uninorm/nfc.c (uninorm_nfc): Update.
2916         * lib/uninorm/nfd.c (uninorm_nfd): Update.
2917         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
2918         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
2919         * modules/uninorm/decomposing-form: New file.
2920         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
2921         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
2922
2923 2009-03-07  Bruno Haible  <bruno@clisp.org>
2924
2925         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
2926         strings.
2927
2928 2009-03-06  Bruno Haible  <bruno@clisp.org>
2929
2930         Tests for module 'uninorm/u32-normcmp'.
2931         * tests/uninorm/test-u32-normcmp.c: New file.
2932         * modules/uninorm/u32-normcmp-tests: New file.
2933
2934         Tests for module 'uninorm/u16-normcmp'.
2935         * tests/uninorm/test-u16-normcmp.c: New file.
2936         * modules/uninorm/u16-normcmp-tests: New file.
2937
2938         Tests for module 'uninorm/u8-normcmp'.
2939         * tests/uninorm/test-u8-normcmp.c: New file.
2940         * modules/uninorm/u8-normcmp-tests: New file.
2941
2942         New module 'uninorm/u32-normcmp'.
2943         * lib/uninorm/u32-normcmp.c: New file.
2944         * modules/uninorm/u32-normcmp: New file.
2945
2946         New module 'uninorm/u16-normcmp'.
2947         * lib/uninorm/u16-normcmp.c: New file.
2948         * modules/uninorm/u16-normcmp: New file.
2949
2950         New module 'uninorm/u8-normcmp'.
2951         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
2952         declarations.
2953         * lib/uninorm/u8-normcmp.c: New file.
2954         * lib/uninorm/u-normcmp.h: New file.
2955         * modules/uninorm/u8-normcmp: New file.
2956
2957 2009-03-06  Bruno Haible  <bruno@clisp.org>
2958
2959         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
2960         Reported by Eric Blake.
2961
2962 2009-03-06  Eric Blake  <ebb9@byu.net>
2963             Bruno Haible  <bruno@clisp.org>
2964
2965         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
2966         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
2967         condition.
2968         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
2969         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
2970         condition.
2971         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
2972
2973 2009-03-06  Eric Blake  <ebb9@byu.net>
2974
2975         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
2976         to avoid compiler warnings.
2977         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
2978
2979 2009-03-05  Bruno Haible  <bruno@clisp.org>
2980
2981         * tests/test-ftell.c (main): Disable test beyond end of file on
2982         FreeMiNT.
2983         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
2984
2985 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
2986
2987         * lib/filevercmp.c: Move hidden files up in ordering.
2988         * tests/test-filevercmp.c: Add tests for hidden files.
2989
2990 2009-03-04  Bruno Haible  <bruno@clisp.org>
2991
2992         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
2993         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
2994         AM_CFLAGS.
2995         Reported by Simon Josefsson.
2996
2997 2009-03-03  Bruno Haible  <bruno@clisp.org>
2998
2999         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
3000         Reported by Simon Josefsson.
3001
3002         * doc/ld-version-script.texi: Update node reference.
3003
3004 2009-03-03  Bruno Haible  <bruno@clisp.org>
3005
3006         * modules/visibility (License): Change to 'unlimited'.
3007         Suggested by Simon Josefsson.
3008
3009 2009-03-03  Jim Meyering  <meyering@redhat.com>
3010
3011         unlinkdir: cannot_unlink_dir may modify process state
3012         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
3013         it's neither thread-safe nor appropriate for use in a library.
3014
3015 2009-03-03  Eric Blake  <ebb9@byu.net>
3016
3017         test-closein: silence test under Darwin
3018         * tests/test-closein.sh: Ignore stderr from cat, since we don't
3019         care if it dies from EPIPE or EBADF.
3020
3021 2009-03-03  Bruno Haible  <bruno@clisp.org>
3022
3023         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
3024         earlier.
3025         * doc/visibility.texi: Fix @node and @section.
3026
3027 2009-03-03  Simon Josefsson  <simon@josefsson.org>
3028
3029         * doc/gnulib.texi: Link to sections for ld version script and
3030         visibility.
3031         * doc/visibility.texi: Add @node and @section.
3032         * modules/ld-version-script: New module.
3033         * m4/ld-version-script.m4: New file.
3034         * doc/ld-version-script.texi: New file.
3035
3036 2009-03-02  David Lutterkort  <lutter@redhat.com>
3037
3038         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
3039         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3040
3041 2009-03-02  Bruno Haible  <bruno@clisp.org>
3042
3043         * doc/visibility.texi: Mention libtool's -export-symbols option.
3044
3045 2009-03-02  Jim Meyering  <meyering@redhat.com>
3046
3047         announce-gen: new option: --no-print-checksums
3048         * build-aux/announce-gen (usage): Describe it.
3049         (print_checksums): Print a newline here, not in the [*] footnote.
3050         (main): Honor it.
3051
3052 2009-03-01  Bruno Haible  <bruno@clisp.org>
3053
3054         Use socklen_t in the native Windows replacements prototypes.
3055         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
3056         instead of 'int'.
3057         * lib/getsockopt.c (rpl_getsockopt): Likewise.
3058         * lib/setsockopt.c (rpl_setsockopt): Likewise.
3059         * modules/getsockopt (Depends-on): Add socklen.
3060         * modules/setsockopt (Depends-on): Add socklen.
3061
3062 2009-03-01  Bruno Haible  <bruno@clisp.org>
3063
3064         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
3065         least 4.2.
3066
3067 2009-03-01  Eric Blake  <ebb9@byu.net>
3068             Bruno Haible  <bruno@clisp.org>
3069
3070         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
3071         error messages.
3072         * lib/wait-process.c (wait_subprocess): Omit error message about
3073         deadly signal sent to the child of termsigp != NULL.
3074
3075 2009-03-01  Eric Blake  <ebb9@byu.net>
3076
3077         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
3078
3079 2009-03-01  Bruno Haible  <bruno@clisp.org>
3080
3081         Avoid a gcc warning.
3082         * tests/test-sched.c (b): Make global.
3083         Reported by Eric Blake.
3084
3085 2009-01-19  Martin Lambers  <marlam@marlam.de>
3086
3087         Provide POSIX semantics for socket timeout options on W32.
3088         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
3089         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
3090         * modules/setsockopt: Depend on sys_time module for struct timeval.
3091         * modules/getsockopt: Depend on sys_time module for struct timeval.
3092
3093 2009-03-01  Simon Josefsson  <simon@josefsson.org>
3094
3095         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
3096         __USE_GNU, for consistency with netdb.in.h.
3097         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
3098
3099 2009-03-01  Bruno Haible  <bruno@clisp.org>
3100
3101         More support for FreeMiNT.
3102         * lib/fseeko.c (rpl_fseeko): Complete last commit.
3103         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
3104
3105 2009-03-01  Bruno Haible  <bruno@clisp.org>
3106
3107         More support for FreeMiNT.
3108         * lib/fpurge.c (fpurge): Correct last commit.
3109         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
3110
3111 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3112
3113         Fix unportable awk script in vc-list-files.
3114         * build-aux/vc-list-files: In the replacement awk script, use
3115         substr with a second argument of 1, not zero.
3116         Report by Simon Josefsson.
3117
3118 2009-02-28  Bruno Haible  <bruno@clisp.org>
3119
3120         More support for FreeMiNT.
3121         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
3122         to FreeMiNT today.
3123         * lib/fwriting.c (fwriting): Likewise.
3124         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
3125
3126 2009-02-28  Bruno Haible  <bruno@clisp.org>
3127
3128         * tests/test-freadseek.c (main): Disable test beyond end of file on
3129         FreeMiNT.
3130         * tests/test-ftello.c (main): Likewise.
3131         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
3132
3133 2009-02-28  Bruno Haible  <bruno@clisp.org>
3134
3135         Add tentative support for FreeMiNT.
3136         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
3137         * lib/fpurge.c (fpurge): Likewise.
3138         * lib/freadable.c (freadable): Likewise.
3139         * lib/freading.c (freading): Likewise.
3140         * lib/freadptr.c (freadptr): Likewise.
3141         * lib/freadseek.c (freadptrinc): Likewise.
3142         * lib/fseeko.c (rpl_fseeko): Likewise.
3143         * lib/fseterr.c (fseterr): Likewise.
3144         * lib/fwritable.c (fwritable): Likewise.
3145         * lib/fwriting.c (fwriting): Likewise.
3146         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
3147         Hourihane.
3148         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
3149
3150 2009-02-28  Bruno Haible  <bruno@clisp.org>
3151
3152         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
3153         SIGCHLD.
3154         Reported by Jim Meyering.
3155
3156 2009-02-28  Bruno Haible  <bruno@clisp.org>
3157
3158         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
3159         Mention the results of these tests on various platforms.
3160         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
3161         order.
3162         * doc/posix-functions/printf.texi: Likewise.
3163         * doc/posix-functions/snprintf.texi: Likewise.
3164         * doc/posix-functions/sprintf.texi: Likewise.
3165         * doc/posix-functions/vfprintf.texi: Likewise.
3166         * doc/posix-functions/vprintf.texi: Likewise.
3167         * doc/posix-functions/vsnprintf.texi: Likewise.
3168         * doc/posix-functions/vsprintf.texi: Likewise.
3169         * doc/glibc-functions/obstack_printf.texi: Likewise.
3170         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
3171
3172 2009-02-28  Bruno Haible  <bruno@clisp.org>
3173
3174         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
3175         Reported by Loïc Minier <lool@dooz.org>.
3176
3177 2009-02-27  Bruno Haible  <bruno@clisp.org>
3178
3179         * gnulib-tool (func_import): Make the sed expression used to create the
3180         sed script for updating the .gitignore file POSIX compliant.
3181         Reported by Eric Blake.
3182
3183 2009-02-27  Bruno Haible  <bruno@clisp.org>
3184
3185         * gnulib-tool (sed): Don't alias as "sed --posix".
3186         Reported by Eric Blake.
3187
3188 2009-02-27  Bruno Haible  <bruno@clisp.org>
3189
3190         Avoid test link errors.
3191         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
3192         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
3193         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
3194         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
3195         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3196
3197 2009-02-27  Bruno Haible  <bruno@clisp.org>
3198
3199         Avoid spurious "(cached)" in configure output.
3200         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
3201         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
3202         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
3203         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
3204         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
3205         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
3206         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
3207         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
3208         Reported by Eric Blake.
3209
3210 2009-02-27  Eric Blake  <ebb9@byu.net>
3211
3212         printf: fix regression in previous patch
3213         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
3214
3215 2009-02-27  Bruno Haible  <bruno@clisp.org>
3216
3217         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
3218         value.
3219         * lib/stdint.in.h: Likewise.
3220         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
3221
3222 2009-02-27  Eric Blake  <ebb9@byu.net>
3223
3224         doc: mention more functions added in cygwin 1.7.0
3225         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
3226         addition.
3227         * doc/posix-functions/open_wmemstream.texi: Likewise.
3228         * doc/posix-functions/wcsnlen.texi: Likewise.
3229         * doc/posix-functions/wcsnrtombs.texi: Likewise.
3230         * doc/posix-functions/wcstod.texi: Likewise.
3231         * doc/posix-functions/wcstof.texi: Likewise.
3232         * doc/posix-functions/wcstoimax.texi: Likewise.
3233         * doc/posix-functions/wcstok.texi: Likewise.
3234         * doc/posix-functions/wcstoumax.texi: Likewise.
3235
3236         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
3237         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
3238         * doc/posix-functions/fprintf.texi: Update.
3239         * doc/posix-functions/printf.texi: Update.
3240         * doc/posix-functions/snprintf.texi: Update.
3241         * doc/posix-functions/sprintf.texi: Update.
3242         * doc/posix-functions/vfprintf.texi: Update.
3243         * doc/posix-functions/vprintf.texi: Update.
3244         * doc/posix-functions/vsnprintf.texi: Update.
3245         * doc/posix-functions/vsprintf.texi: Update.
3246         * doc/glibc-functions/obstack_printf.texi: Update.
3247         * doc/glibc-functions/obstack_vprintf.texi: Update.
3248
3249 2009-02-26  Eric Blake  <ebb9@byu.net>
3250
3251         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
3252         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
3253         compilation bug by using runtime conversion.
3254         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
3255         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
3256         * modules/ceill-tests (Files): Use nan.h.
3257         * modules/floorl-tests (Files): Likewise.
3258         * modules/frexpl-tests (Files): Likewise.
3259         * modules/isnanl-tests (Files): Likewise.
3260         * modules/ldexpl-tests (Files): Likewise.
3261         * modules/roundl-tests (Files): Likewise.
3262         * modules/truncl-tests (Files): Likewise.
3263         * tests/test-ceill.c (main): Use a working NaN.
3264         * tests/test-floorl.c (main): Likewise.
3265         * tests/test-frexpl.c (main): Likewise.
3266         * tests/test-isnan.c (test_long_double): Likewise.
3267         * tests/test-isnanl.h (main): Likewise.
3268         * tests/test-ldexpl.h (main): Likewise.
3269         * tests/test-roundl.h (main): Likewise.
3270         * tests/test-truncl.h (main): Likewise.
3271         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
3272
3273 2009-02-26  Eric Blake  <ebb9@byu.net>
3274             Bruno Haible  <bruno@clisp.org>
3275
3276         Work around a *printf bug with %ls on Solaris.
3277         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
3278         precision is specified, sprintf stops converting the wide string
3279         argument when the number of bytes that have been produced by this
3280         conversion equals or exceeds the precision.
3281         * doc/posix-functions/fprintf.texi: Update.
3282         * doc/posix-functions/printf.texi: Update.
3283         * doc/posix-functions/snprintf.texi: Update.
3284         * doc/posix-functions/sprintf.texi: Update.
3285         * doc/posix-functions/vfprintf.texi: Update.
3286         * doc/posix-functions/vprintf.texi: Update.
3287         * doc/posix-functions/vsnprintf.texi: Update.
3288         * doc/posix-functions/vsprintf.texi: Update.
3289         * doc/glibc-functions/obstack_printf.texi: Update.
3290         * doc/glibc-functions/obstack_vprintf.texi: Update.
3291
3292 2009-02-26  Eric Blake  <ebb9@byu.net>
3293
3294         stdlib: favor compiler check of random.h
3295         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
3296         to avoid an ObjC random.h installed by Swarm.
3297
3298 2009-02-26  Bruno Haible  <bruno@clisp.org>
3299
3300         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
3301         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
3302         Reported by Gary V. Vaughan <gary@gnu.org>.
3303
3304 2009-02-26  Bruno Haible  <bruno@clisp.org>
3305
3306         Fix *printf behaviour regarding the %ls directive.
3307         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
3308         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
3309         NEED_PRINTF_DIRECTIVE_LS.
3310         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
3311         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
3312         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
3313         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
3314         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
3315         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
3316         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
3317         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
3318         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3319         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3320         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3321         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
3322         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
3323         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3324         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3325         * doc/posix-functions/fprintf.texi: Update.
3326         * doc/posix-functions/printf.texi: Update.
3327         * doc/posix-functions/snprintf.texi: Update.
3328         * doc/posix-functions/sprintf.texi: Update.
3329         * doc/posix-functions/vfprintf.texi: Update.
3330         * doc/posix-functions/vprintf.texi: Update.
3331         * doc/posix-functions/vsnprintf.texi: Update.
3332         * doc/posix-functions/vsprintf.texi: Update.
3333         * doc/glibc-functions/obstack_printf.texi: Update.
3334         * doc/glibc-functions/obstack_vprintf.texi: Update.
3335         Reported by Eric Blake.
3336
3337 2009-02-25  Bruno Haible  <bruno@clisp.org>
3338
3339         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
3340         with known value.
3341         Reported by Gary V. Vaughan <gary@gnu.org>.
3342
3343 2009-02-25  Bruno Haible  <bruno@clisp.org>
3344
3345         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
3346         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
3347         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
3348         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
3349         Reported by Gary V. Vaughan <gary@gnu.org>.
3350
3351 2009-02-25  Bruno Haible  <bruno@clisp.org>
3352
3353         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
3354         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
3355         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
3356         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
3357         Reported by Gary V. Vaughan <gary@gnu.org>.
3358
3359 2009-02-25  Eric Blake  <ebb9@byu.net>
3360
3361         tests: skip fseek/ftell tests if ungetc is broken
3362         * m4/ungetc.m4: New file.
3363         * modules/fseek-tests: Split test, so ungetc dependency is
3364         separate from rest of test.
3365         * modules/fseeko-tests: Likewise.
3366         * modules/ftell-tests: Likewise.
3367         * modules/ftello-tests: Likewise.
3368         * tests/test-fseek.c (main): Isolate ungetc dependency.
3369         * tests/test-fseeko.c (main): Likewise.
3370         * tests/test-ftell.c (main): Likewise.
3371         * tests/test-ftello.c (main): Likewise.
3372         * tests/test-fseek2.sh: New file.
3373         * tests/test-fseeko2.sh: Likewise.
3374         * tests/test-ftell2.sh: Likewise.
3375         * tests/test-ftello2.sh: Likewise.
3376
3377 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
3378
3379         test-getaddrinfo: fix usage of skip return code 77
3380         * tests/test-gettaddrinfo.c: Return skip code 77 only
3381         for first occurance of skip (4x77 is not 77)
3382
3383 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
3384
3385         strtod: avoid C99 decl-after-statement
3386         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
3387
3388 2009-02-24  Eric Blake  <ebb9@byu.net>
3389
3390         strtod: detect HP-UX 11.31 bug
3391         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
3392         Reported by Gary V. Vaughan.
3393
3394 2009-02-23  Bruno Haible  <bruno@clisp.org>
3395
3396         Fix invalid read past end of memory block.
3397         * lib/vasnprintf.c (DCHAR_SET): Define.
3398         (local_wcslen): Define only when needed.
3399         (local_strnlen, local_wcsnlen): New functions.
3400         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
3401         directives that involve a conversion ourselves.
3402         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
3403         wcsnlen, mbrtowc, wcrtomb.
3404         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
3405         * tests/test-vasprintf-posix.c (test_function): Likewise.
3406         * tests/test-snprintf-posix.h (test_function): Likewise.
3407         * tests/test-sprintf-posix.h (test_function): Likewise.
3408         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3409
3410 2009-02-22  Bruno Haible  <bruno@clisp.org>
3411
3412         Implement new clarified decomposition of Hangul syllables.
3413         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
3414         of type LTV, return only a pairwise decomposition.
3415         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
3416         Likewise.
3417         * tests/uninorm/test-decomposition.c (main): Updated expected result.
3418         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
3419         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
3420
3421 2009-02-22  Bruno Haible  <bruno@clisp.org>
3422
3423         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
3424         zero-length results and shrink excess allocated memory.
3425         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
3426         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
3427         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
3428         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
3429         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
3430         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
3431         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
3432         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
3433         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
3434         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
3435         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
3436         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
3437
3438 2009-02-21  Bruno Haible  <bruno@clisp.org>
3439
3440         * doc/gnulib.texi: Include safe-alloc.texi earlier.
3441         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
3442         spaces after a period. Put a space between a macro name and its
3443         argument list. Trivial rewordings.
3444         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
3445         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
3446         (main): Return 0 explicitly.
3447
3448 2009-02-21  Bruno Haible  <bruno@clisp.org>
3449
3450         Tests for module 'uninorm/filter'.
3451         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
3452         * modules/uninorm/filter-tests: New file.
3453
3454         New module 'uninorm/filter'.
3455         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
3456         uninorm_filter_flush, uninorm_filter_free): New declarations.
3457         * lib/uninorm/uninorm-filter.c: New file.
3458         * modules/uninorm/filter: New file.
3459
3460 2009-02-21  Bruno Haible  <bruno@clisp.org>
3461
3462         Tests for module 'uninorm/nfkc'.
3463         * tests/uninorm/test-nfkc.c: New file.
3464         * tests/uninorm/test-u8-nfkc.c: New file.
3465         * tests/uninorm/test-u16-nfkc.c: New file.
3466         * tests/uninorm/test-u32-nfkc.c: New file.
3467         * tests/uninorm/test-u32-nfkc-big.sh: New file.
3468         * tests/uninorm/test-u32-nfkc-big.c: New file.
3469         * modules/uninorm/nfkc-tests: New file.
3470
3471         New module 'uninorm/nfkc'.
3472         * lib/uninorm/nfkc.c: New file.
3473         * modules/uninorm/nfkc: New file.
3474
3475         Tests for module 'uninorm/nfkd'.
3476         * tests/uninorm/test-nfkd.c: New file.
3477         * tests/uninorm/test-u8-nfkd.c: New file.
3478         * tests/uninorm/test-u16-nfkd.c: New file.
3479         * tests/uninorm/test-u32-nfkd.c: New file.
3480         * tests/uninorm/test-u32-nfkd-big.sh: New file.
3481         * tests/uninorm/test-u32-nfkd-big.c: New file.
3482         * modules/uninorm/nfkd-tests: New file.
3483
3484         New module 'uninorm/nfkd'.
3485         * lib/uninorm/nfkd.c: New file.
3486         * modules/uninorm/nfkd: New file.
3487
3488         Tests for module 'uninorm/nfc'.
3489         * tests/uninorm/test-nfc.c: New file.
3490         * tests/uninorm/test-u8-nfc.c: New file.
3491         * tests/uninorm/test-u16-nfc.c: New file.
3492         * tests/uninorm/test-u32-nfc.c: New file.
3493         * tests/uninorm/test-u32-nfc-big.sh: New file.
3494         * tests/uninorm/test-u32-nfc-big.c: New file.
3495         * modules/uninorm/nfc-tests: New file.
3496
3497         New module 'uninorm/nfc'.
3498         * lib/uninorm/nfc.c: New file.
3499         * modules/uninorm/nfc: New file.
3500
3501         Tests for module 'uninorm/nfd'.
3502         * tests/uninorm/test-nfd.c: New file.
3503         * tests/uninorm/test-u8-nfd.c: New file.
3504         * tests/uninorm/test-u16-nfd.c: New file.
3505         * tests/uninorm/test-u32-nfd.c: New file.
3506         * tests/uninorm/test-u32-nfd-big.sh: New file.
3507         * tests/uninorm/test-u32-nfd-big.c: New file.
3508         * tests/uninorm/test-u32-normalize-big.h: New file.
3509         * tests/uninorm/test-u32-normalize-big.c: New file.
3510         * tests/uninorm/NormalizationTest.txt: New file, created from
3511         Unicode 5.1.0 NormalizationTest.txt.
3512         * modules/uninorm/nfd-tests: New file.
3513
3514         New module 'uninorm/nfd'.
3515         * lib/uninorm/nfd.c: New file.
3516         * modules/uninorm/nfd: New file.
3517
3518         New module 'uninorm/u32-normalize'.
3519         * lib/uninorm/u32-normalize.c: New file.
3520         * modules/uninorm/u32-normalize: New file.
3521
3522         New module 'uninorm/u16-normalize'.
3523         * lib/uninorm/u16-normalize.c: New file.
3524         * modules/uninorm/u16-normalize: New file.
3525
3526         New module 'uninorm/u8-normalize'.
3527         * lib/uninorm/u8-normalize.c: New file.
3528         * lib/uninorm/normalize-internal.h: New file.
3529         * lib/uninorm/u-normalize-internal.h: New file.
3530         * modules/uninorm/u8-normalize: New file.
3531
3532         New module 'uninorm/decompose-internal'.
3533         * lib/uninorm/decompose-internal.c: New file.
3534         * modules/uninorm/decompose-internal: New file.
3535
3536         Tests for module 'uninorm/composition'.
3537         * tests/uninorm/test-composition.c: New file.
3538         * modules/uninorm/composition-tests: New file.
3539
3540         New module 'uninorm/composition'.
3541         * lib/uninorm/composition.c: New file.
3542         * lib/uninorm/composition-table.gperf: New file, generated by
3543         gen-uni-tables.
3544         * modules/uninorm/composition: New file.
3545
3546         Tests for module 'uninorm/compat-decomposition'.
3547         * tests/uninorm/test-compat-decomposition.c: New file.
3548         * modules/uninorm/compat-decomposition-tests: New file.
3549
3550         New module 'uninorm/compat-decomposition'.
3551         * lib/uninorm/decompose-internal.h: New file.
3552         * lib/uninorm/compat-decomposition.c: New file.
3553         * modules/uninorm/compat-decomposition: New file.
3554
3555         Tests for module 'uninorm/canonical-decomposition'.
3556         * tests/uninorm/test-canonical-decomposition.c: New file.
3557         * modules/uninorm/canonical-decomposition-tests: New file.
3558
3559         New module 'uninorm/canonical-decomposition'.
3560         * lib/uninorm/canonical-decomposition.c: New file.
3561         * modules/uninorm/canonical-decomposition: New file.
3562
3563         Tests for module 'uninorm/decomposition'.
3564         * tests/uninorm/test-decomposition.c: New file.
3565         * modules/uninorm/decomposition-tests: New file.
3566
3567         New module 'uninorm/decomposition'.
3568         * lib/uninorm/decomposition.c: New file.
3569         * modules/uninorm/decomposition: New file.
3570
3571         New module 'uninorm/decomposition-table'.
3572         * lib/uninorm/decomposition-table.h: New file.
3573         * lib/uninorm/decomposition-table.c: New file.
3574         * lib/uninorm/decomposition-table1.h: New file, generated by
3575         gen-uni-tables.
3576         * lib/uninorm/decomposition-table2.h: New file, generated by
3577         gen-uni-tables.
3578         * modules/uninorm/decomposition-table: New file.
3579
3580         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
3581         (UC_DECOMP_*): New enumeration items.
3582         (get_decomposition): New function.
3583         (struct decomp_table): New type.
3584         (output_decomposition, output_decomposition_tables): New functions.
3585         (unicode_composition_exclusions): New variable.
3586         (fill_composition_exclusions, debug_output_composition_tables): New
3587         functions.
3588         (main): Accept one more argument. Invoke fill_composition_exclusions.
3589         Output decomposition and composition tables.
3590
3591         New module 'uninorm/base'.
3592         * lib/uninorm.h: New file.
3593         * lib/unictype.h: Update comment.
3594         * modules/uninorm/base: New file.
3595
3596 2009-02-21  David Lutterkort  <lutter@redhat.com>
3597
3598         Tests for module 'safe-alloc'.
3599         * tests/test-safe-alloc.c: New file.
3600         * modules/safe-alloc-tests: New file.
3601
3602         New module 'safe-alloc'.
3603         * lib/safe-alloc.h: New file.
3604         * lib/safe-alloc.c: New file.
3605         * m4/safe-alloc.m4: New file.
3606         * modules/safe-alloc: New file.
3607         * doc/safe-alloc.texi: New file.
3608         * doc/gnulib.texi: Include it.
3609         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
3610         safe-alloc.
3611
3612 2009-02-18  Bruno Haible  <bruno@clisp.org>
3613
3614         Fix link error on non-glibc systems.
3615         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
3616         variable.
3617         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3618
3619 2009-02-18  Jim Meyering  <meyering@redhat.com>
3620
3621         fts: avoid used-uninitialized error due to recent change
3622         * lib/fts.c (fts_read): Guard uses of the new member,
3623         parent->fts_n_dirs_remaining, since it's not relevant for
3624         the parent of a directory specified on the command-line.
3625
3626 2009-02-17  James Youngman  <jay@gnu.org>
3627             Bruno Haible  <bruno@clisp.org>
3628
3629         * m4/include_next.m4: Reformulate comment.
3630
3631 2009-02-16  Jim Meyering  <meyering@redhat.com>
3632
3633         fts: add #if guards so that the fts_lgpl module still builds
3634         * lib/fts.c: Guard just-added hash-table-using parts with
3635         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
3636         Reported by Simon Josefsson.
3637
3638 2009-02-15  Bruno Haible  <bruno@clisp.org>
3639
3640         * modules/array-mergesort-tests: New file.
3641         * tests/test-array-mergesort.c: New file.
3642
3643         New module 'array-mergesort'.
3644         * modules/array-mergesort: New file.
3645         * lib/array-mergesort.h: New file.
3646
3647 2009-02-15  Bruno Haible  <bruno@clisp.org>
3648
3649         Fix 2009-02-07 commit.
3650         * lib/gen-uni-tables.c (output_predicate, output_category,
3651         output_combclass, output_bidi_category, output_decimal_digit,
3652         output_digit, output_numeric, output_mirror, output_scripts,
3653         output_ident_category, output_simple_mapping): Fix format directives.
3654         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
3655
3656 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
3657
3658         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
3659         fixes are available from IBM.
3660
3661 2009-02-13  Jim Meyering  <meyering@redhat.com>
3662
3663         fts: arrange not to stat non-directories in more cases
3664         This makes GNU find (when it doesn't need to stat each file)
3665         *much* more efficient at traversing reiserfs file systems.
3666         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
3667         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
3668         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
3669         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
3670         (leaf_optimization_applies): New function.
3671         (LCO_hash, LCO_compare): New helper functions.
3672         (link_count_optimize_ok): New function.
3673         (fts_stat): Initialize new member (if dir).
3674         (fts_read): Decrement parent's fts_n_dirs_remaining count if
3675         we've just stat'ed a directory.  Skip the stat call when possible.
3676         ---
3677         Note this AFS-related exchange:
3678         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
3679         and note find's pioctl call in find/fstype.c.
3680         But that is necessary only if you want to enable the
3681         optimization for AFS, and for now, I don't.
3682
3683         fts: move a function definition "up" (no semantic change)
3684         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
3685         "up" to precede upcoming use of a related function.
3686
3687 2009-02-11  Jim Meyering  <meyering@redhat.com>
3688
3689         fts: correct internal computation of nlinks (optimization-related)
3690         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
3691         whether the current entry is a directory, so don't test it.
3692
3693 2009-02-10  Bruno Haible  <bruno@clisp.org>
3694
3695         Tests for module 'uniwbrk/ulc-wordbreaks'.
3696         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
3697         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
3698         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
3699
3700         Tests for module 'uniwbrk/u32-wordbreaks'.
3701         * modules/uniwbrk/u32-wordbreaks-tests: New file.
3702         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
3703
3704         Tests for module 'uniwbrk/u16-wordbreaks'.
3705         * modules/uniwbrk/u16-wordbreaks-tests: New file.
3706         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
3707
3708         Tests for module 'uniwbrk/u8-wordbreaks'.
3709         * modules/uniwbrk/u8-wordbreaks-tests: New file.
3710         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
3711
3712 2009-02-10  Bruno Haible  <bruno@clisp.org>
3713
3714         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
3715         property.
3716         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
3717         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
3718         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
3719
3720 2009-02-10  Simon Josefsson  <simon@josefsson.org>
3721
3722         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
3723         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
3724
3725 2009-02-10  Bruno Haible  <bruno@clisp.org>
3726
3727         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
3728         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
3729         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
3730         * lib/unilbrk/u8-possible-linebreaks.c: Update.
3731         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
3732         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
3733
3734 2009-02-09  Simon Josefsson  <simon@josefsson.org>
3735
3736         * lib/sockets.h (gl_fd_to_handle): New function.
3737
3738         * tests/test-sockets.c: Call gl_fd_to_handle.
3739
3740 2009-02-09  Bruno Haible  <bruno@clisp.org>
3741
3742         * doc/havelib.texi: Document the conventions on bi-arch systems.
3743
3744 2009-02-08  Bruno Haible  <bruno@clisp.org>
3745
3746         Document the AC_LIB_LINKFLAGS macro.
3747         * doc/havelib.texi: New file, mostly written on 2005-05-24.
3748         * doc/gnulib.texi: Include it.
3749
3750 2009-02-08  Bruno Haible  <bruno@clisp.org>
3751
3752         Fix wrong order of sections, compared to TOC.
3753         * doc/gnulib.texi: Include relocatable-maint.texi after the
3754         "Regular expressions" node, not before.
3755
3756 2009-02-08  Bruno Haible  <bruno@clisp.org>
3757
3758         Tests for module 'unicase/totitle'.
3759         * modules/unicase/totitle-tests: New file.
3760
3761         Tests for module 'unicase/tolower'.
3762         * modules/unicase/tolower-tests: New file.
3763
3764         Tests for module 'unicase/toupper'.
3765         * modules/unicase/toupper-tests: New file.
3766         * tests/unicase/test-mapping-part1.h: New file.
3767         * tests/unicase/test-mapping-part2.h: New file.
3768
3769         New module 'unicase/totitle'.
3770         * modules/unicase/totitle: New file.
3771         * lib/unicase/totitle.c: New file.
3772
3773         New module 'unicase/tolower'.
3774         * modules/unicase/tolower: New file.
3775         * lib/unicase/tolower.c: New file.
3776
3777         New module 'unicase/toupper'.
3778         * modules/unicase/toupper: New file.
3779         * lib/unicase/toupper.c: New file.
3780         * lib/unicase/simple-mapping.h: New file.
3781
3782         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
3783         (mapping_table): New structure.
3784         (output_simple_mapping): New function.
3785         (main): Invoke output_simple_mapping_test and output_simple_mapping.
3786         * modules/gen-uni-tables (Description): Update.
3787         * lib/unicase/toupper.h: New file, automatically generated by
3788         gen-uni-tables.
3789         * lib/unicase/tolower.h: New file, automatically generated by
3790         gen-uni-tables.
3791         * lib/unicase/totitle.h: New file, automatically generated by
3792         gen-uni-tables.
3793         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
3794         gen-uni-tables.
3795         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
3796         gen-uni-tables.
3797         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
3798         gen-uni-tables.
3799
3800         New module 'unicase/base'.
3801         * modules/unicase/base: New file.
3802         * lib/unicase.h: New file.
3803
3804 2009-02-08  Bruno Haible  <bruno@clisp.org>
3805
3806         New module 'uniwbrk/ulc-wordbreaks'.
3807         * modules/uniwbrk/ulc-wordbreaks: New file.
3808         * lib/uniwbrk/ulc-wordbreaks.c: New file.
3809
3810         New module 'uniwbrk/u32-wordbreaks'.
3811         * modules/uniwbrk/u32-wordbreaks: New file.
3812         * lib/uniwbrk/u32-wordbreaks.c: New file.
3813
3814         New module 'uniwbrk/u16-wordbreaks'.
3815         * modules/uniwbrk/u16-wordbreaks: New file.
3816         * lib/uniwbrk/u16-wordbreaks.c: New file.
3817
3818         New module 'uniwbrk/u8-wordbreaks'.
3819         * modules/uniwbrk/u8-wordbreaks: New file.
3820         * lib/uniwbrk/u8-wordbreaks.c: New file.
3821         * lib/uniwbrk/u-wordbreaks.h: New file.
3822
3823         New module 'uniwbrk/table'.
3824         * modules/uniwbrk/table: New file.
3825         * lib/uniwbrk/wbrktable.h: New file.
3826         * lib/uniwbrk/wbrktable.c: New file.
3827
3828         New module 'uniwbrk/wordbreak-property'.
3829         * modules/uniwbrk/wordbreak-property: New file.
3830         * lib/uniwbrk/wordbreak-property.c: New file.
3831
3832         * lib/gen-uni-tables.c (WBP_*): New enum items.
3833         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
3834         (unicode_org_wbp): New variable.
3835         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
3836         New functions.
3837         (wbp_table): New structure.
3838         (output_wbp, output_wbrk_tables): New functions.
3839         (main): Accept additional argument. Invoke fill_org_wbp,
3840         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
3841         output_wbrk_tables.
3842         * modules/gen-uni-tables (Description): Update.
3843         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
3844         gen-uni-tables.
3845
3846         New module 'uniwbrk/base'.
3847         * modules/uniwbrk/base: New file.
3848         * lib/uniwbrk.h: New file.
3849
3850 2009-02-08  Bruno Haible  <bruno@clisp.org>
3851
3852         Update to Unicode 5.1.0.
3853         * lib/gen-uni-tables.c (is_property_alphabetic): Include
3854         U+2185..U+2188.
3855         (is_property_default_ignorable_code_point): Don't include characters
3856         of category Cc or Cs and not-a-characters.
3857         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
3858         U+0D79, U+109E, U+109F, U+A60C.
3859         * lib/unictype/bidi_of.h: Regenerated.
3860         * lib/unictype/blocks.h: Regenerated.
3861         * lib/unictype/categ_C.h: Regenerated.
3862         * lib/unictype/categ_Cf.h: Regenerated.
3863         * lib/unictype/categ_Cn.h: Regenerated.
3864         * lib/unictype/categ_L.h: Regenerated.
3865         * lib/unictype/categ_Ll.h: Regenerated.
3866         * lib/unictype/categ_Lm.h: Regenerated.
3867         * lib/unictype/categ_Lo.h: Regenerated.
3868         * lib/unictype/categ_Lu.h: Regenerated.
3869         * lib/unictype/categ_M.h: Regenerated.
3870         * lib/unictype/categ_Mc.h: Regenerated.
3871         * lib/unictype/categ_Me.h: Regenerated.
3872         * lib/unictype/categ_Mn.h: Regenerated.
3873         * lib/unictype/categ_N.h: Regenerated.
3874         * lib/unictype/categ_Nd.h: Regenerated.
3875         * lib/unictype/categ_Nl.h: Regenerated.
3876         * lib/unictype/categ_No.h: Regenerated.
3877         * lib/unictype/categ_P.h: Regenerated.
3878         * lib/unictype/categ_Pd.h: Regenerated.
3879         * lib/unictype/categ_Pe.h: Regenerated.
3880         * lib/unictype/categ_Pf.h: Regenerated.
3881         * lib/unictype/categ_Pi.h: Regenerated.
3882         * lib/unictype/categ_Po.h: Regenerated.
3883         * lib/unictype/categ_Ps.h: Regenerated.
3884         * lib/unictype/categ_S.h: Regenerated.
3885         * lib/unictype/categ_Sk.h: Regenerated.
3886         * lib/unictype/categ_Sm.h: Regenerated.
3887         * lib/unictype/categ_So.h: Regenerated.
3888         * lib/unictype/categ_of.h: Regenerated.
3889         * lib/unictype/combining.h: Regenerated.
3890         * lib/unictype/ctype_alnum.h: Regenerated.
3891         * lib/unictype/ctype_alpha.h: Regenerated.
3892         * lib/unictype/ctype_graph.h: Regenerated.
3893         * lib/unictype/ctype_lower.h: Regenerated.
3894         * lib/unictype/ctype_print.h: Regenerated.
3895         * lib/unictype/ctype_punct.h: Regenerated.
3896         * lib/unictype/ctype_upper.h: Regenerated.
3897         * lib/unictype/decdigit.h: Regenerated.
3898         * lib/unictype/digit.h: Regenerated.
3899         * lib/unictype/mirror.h: Regenerated.
3900         * lib/unictype/numeric.h: Regenerated.
3901         * lib/unictype/pr_alphabetic.h: Regenerated.
3902         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
3903         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
3904         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
3905         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
3906         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
3907         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
3908         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
3909         * lib/unictype/pr_combining.h: Regenerated.
3910         * lib/unictype/pr_dash.h: Regenerated.
3911         * lib/unictype/pr_decimal_digit.h: Regenerated.
3912         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
3913         * lib/unictype/pr_deprecated.h: Regenerated.
3914         * lib/unictype/pr_diacritic.h: Regenerated.
3915         * lib/unictype/pr_extender.h: Regenerated.
3916         * lib/unictype/pr_format_control.h: Regenerated.
3917         * lib/unictype/pr_grapheme_base.h: Regenerated.
3918         * lib/unictype/pr_grapheme_extend.h: Regenerated.
3919         * lib/unictype/pr_grapheme_link.h: Regenerated.
3920         * lib/unictype/pr_id_continue.h: Regenerated.
3921         * lib/unictype/pr_id_start.h: Regenerated.
3922         * lib/unictype/pr_ideographic.h: Regenerated.
3923         * lib/unictype/pr_ignorable_control.h: Regenerated.
3924         * lib/unictype/pr_lowercase.h: Regenerated.
3925         * lib/unictype/pr_math.h: Regenerated.
3926         * lib/unictype/pr_numeric.h: Regenerated.
3927         * lib/unictype/pr_other_alphabetic.h: Regenerated.
3928         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
3929         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
3930         * lib/unictype/pr_other_id_continue.h: Regenerated.
3931         * lib/unictype/pr_other_lowercase.h: Regenerated.
3932         * lib/unictype/pr_other_math.h: Regenerated.
3933         * lib/unictype/pr_punctuation.h: Regenerated.
3934         * lib/unictype/pr_sentence_terminal.h: Regenerated.
3935         * lib/unictype/pr_soft_dotted.h: Regenerated.
3936         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
3937         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
3938         * lib/unictype/pr_unified_ideograph.h: Regenerated.
3939         * lib/unictype/pr_uppercase.h: Regenerated.
3940         * lib/unictype/pr_xid_continue.h: Regenerated.
3941         * lib/unictype/pr_xid_start.h: Regenerated.
3942         * lib/unictype/pr_zero_width.h: Regenerated.
3943         * lib/unictype/scripts.h: Regenerated.
3944         * lib/unictype/scripts_byname.gperf: Regenerated.
3945         * lib/unictype/sy_java_ident.h: Regenerated.
3946         * lib/unilbrk/lbrkprop1.h: Regenerated.
3947         * lib/unilbrk/lbrkprop2.h: Regenerated.
3948         * tests/unictype/test-categ_C.c: Regenerated.
3949         * tests/unictype/test-categ_Cf.c: Regenerated.
3950         * tests/unictype/test-categ_Cn.c: Regenerated.
3951         * tests/unictype/test-categ_L.c: Regenerated.
3952         * tests/unictype/test-categ_Ll.c: Regenerated.
3953         * tests/unictype/test-categ_Lm.c: Regenerated.
3954         * tests/unictype/test-categ_Lo.c: Regenerated.
3955         * tests/unictype/test-categ_Lu.c: Regenerated.
3956         * tests/unictype/test-categ_M.c: Regenerated.
3957         * tests/unictype/test-categ_Mc.c: Regenerated.
3958         * tests/unictype/test-categ_Me.c: Regenerated.
3959         * tests/unictype/test-categ_Mn.c: Regenerated.
3960         * tests/unictype/test-categ_N.c: Regenerated.
3961         * tests/unictype/test-categ_Nd.c: Regenerated.
3962         * tests/unictype/test-categ_Nl.c: Regenerated.
3963         * tests/unictype/test-categ_No.c: Regenerated.
3964         * tests/unictype/test-categ_P.c: Regenerated.
3965         * tests/unictype/test-categ_Pd.c: Regenerated.
3966         * tests/unictype/test-categ_Pe.c: Regenerated.
3967         * tests/unictype/test-categ_Pf.c: Regenerated.
3968         * tests/unictype/test-categ_Pi.c: Regenerated.
3969         * tests/unictype/test-categ_Po.c: Regenerated.
3970         * tests/unictype/test-categ_Ps.c: Regenerated.
3971         * tests/unictype/test-categ_S.c: Regenerated.
3972         * tests/unictype/test-categ_Sk.c: Regenerated.
3973         * tests/unictype/test-categ_Sm.c: Regenerated.
3974         * tests/unictype/test-categ_So.c: Regenerated.
3975         * tests/unictype/test-ctype_alnum.c: Regenerated.
3976         * tests/unictype/test-ctype_alpha.c: Regenerated.
3977         * tests/unictype/test-ctype_graph.c: Regenerated.
3978         * tests/unictype/test-ctype_lower.c: Regenerated.
3979         * tests/unictype/test-ctype_print.c: Regenerated.
3980         * tests/unictype/test-ctype_punct.c: Regenerated.
3981         * tests/unictype/test-ctype_upper.c: Regenerated.
3982         * tests/unictype/test-decdigit.h: Regenerated.
3983         * tests/unictype/test-digit.h: Regenerated.
3984         * tests/unictype/test-numeric.h: Regenerated.
3985         * tests/unictype/test-pr_alphabetic.c: Regenerated.
3986         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
3987         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
3988         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
3989         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
3990         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
3991         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
3992         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
3993         * tests/unictype/test-pr_combining.c: Regenerated.
3994         * tests/unictype/test-pr_dash.c: Regenerated.
3995         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
3996         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
3997         * tests/unictype/test-pr_deprecated.c: Regenerated.
3998         * tests/unictype/test-pr_diacritic.c: Regenerated.
3999         * tests/unictype/test-pr_extender.c: Regenerated.
4000         * tests/unictype/test-pr_format_control.c: Regenerated.
4001         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
4002         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
4003         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
4004         * tests/unictype/test-pr_id_continue.c: Regenerated.
4005         * tests/unictype/test-pr_id_start.c: Regenerated.
4006         * tests/unictype/test-pr_ideographic.c: Regenerated.
4007         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
4008         * tests/unictype/test-pr_lowercase.c: Regenerated.
4009         * tests/unictype/test-pr_math.c: Regenerated.
4010         * tests/unictype/test-pr_numeric.c: Regenerated.
4011         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
4012         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
4013         Regenerated.
4014         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
4015         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
4016         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
4017         * tests/unictype/test-pr_other_math.c: Regenerated.
4018         * tests/unictype/test-pr_punctuation.c: Regenerated.
4019         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
4020         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
4021         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
4022         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
4023         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
4024         * tests/unictype/test-pr_uppercase.c: Regenerated.
4025         * tests/unictype/test-pr_xid_continue.c: Regenerated.
4026         * tests/unictype/test-pr_xid_start.c: Regenerated.
4027         * tests/unictype/test-pr_zero_width.c: Regenerated.
4028
4029         Update to Unicode 5.1.0.
4030         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
4031         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
4032         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
4033         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
4034         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
4035         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
4036         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
4037         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
4038         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
4039         (nonspacing_table_ind): Update.
4040         * tests/uniwidth/test-uc_width2.sh: Update expected result.
4041
4042         Update to Unicode 5.1.0.
4043         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
4044         code transform.
4045         * lib/uniname/uniname.c (unicode_character_name,
4046         unicode_name_character): Add the range 0x1Fxxx to the code transform.
4047         * lib/uniname/uninames.h: Regenerated.
4048         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
4049
4050 2009-02-07  Bruno Haible  <bruno@clisp.org>
4051
4052         Merge gen-ctype and gen-lbrk into a single program.
4053         * lib/gen-uni-tables.c: New file, incorporating
4054         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
4055         Add directory prefixes to the names of the generated files.
4056         * lib/unictype/gen-ctype.c: Remove file.
4057         * lib/unilbrk/gen-lbrk.c: Remove file.
4058         * modules/gen-uni-tables: New file.
4059         * modules/unictype/gen-ctype: Remove file.
4060         * modules/unilbrk/gen-lbrk: Remove file.
4061
4062 2009-02-07  Bruno Haible  <bruno@clisp.org>
4063
4064         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
4065
4066         New module 'unistr/u32-strcoll'.
4067         * modules/unistr/u32-strcoll: New file.
4068         * lib/unistr/u32-strcoll.c: New file.
4069
4070         New module 'unistr/u16-strcoll'.
4071         * modules/unistr/u16-strcoll: New file.
4072         * lib/unistr/u16-strcoll.c: New file.
4073
4074         New module 'unistr/u8-strcoll'.
4075         * modules/unistr/u8-strcoll: New file.
4076         * lib/unistr/u8-strcoll.c: New file.
4077         * lib/unistr/u-strcoll.h: New file.
4078
4079 2009-02-07  Bruno Haible  <bruno@clisp.org>
4080
4081         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
4082         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
4083         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
4084         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
4085         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
4086         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
4087
4088 2009-02-07  Bruno Haible  <bruno@clisp.org>
4089
4090         Make 64-bit clean.
4091         * lib/unictype/gen-ctype.c (output_predicate, output_category,
4092         output_combclass, output_bidi_category, output_decimal_digit,
4093         output_digit, output_numeric, output_mirror, output_scripts,
4094         output_ident_category): Use proper width specifier in format strings.
4095
4096 2009-02-07  Bruno Haible  <bruno@clisp.org>
4097
4098         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
4099         failure behaviour.
4100
4101 2009-02-07  Jim Meyering  <meyering@redhat.com>
4102
4103         regex: avoid compilation failure with upcoming gcc-4.4
4104         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
4105         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
4106         "... error: integer overflow in preprocessor expression".
4107
4108 2009-02-05  Ben Pfaff  <blp@gnu.org>
4109
4110         Fix link errors on Windows when close module is used.
4111         * modules/close: Add $(LIB_CLOSE) to Link section.
4112         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
4113         $(LIB_CLOSE) on Windows.
4114
4115 2009-02-05  Jim Meyering  <meyering@redhat.com>
4116
4117         still avoid unused-parameter warnings, but do it cleanly
4118         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
4119         (get_fs_usage): Cast to void instead.
4120         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
4121         (dev_from_mount_options, read_file_system_list): Cast to void.
4122         Prompted by Bruno Haible.
4123
4124 2009-02-04  Jim Meyering  <meyering@redhat.com>
4125
4126         fsusage.c: correct copyright year
4127         * lib/fsusage.c: Reflect year in which the change is pushed into
4128
4129         avoid misc. warnings
4130         * lib/fsusage.c (UNUSED_PARAM): Define.
4131         (get_fs_usage): Mark parameter "disk" as unused.
4132         * lib/getugroups.c (getgrent): Use "void" in prototype.
4133         * lib/mountlist.c: Mark unused parameters.
4134         (read_file_system_list): Declare a local with "const".
4135         * lib/nanosleep.c (getnow): Declare static.
4136         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
4137
4138         dirfd: set errno upon failure
4139         * lib/dirfd.c: Include <errno.h>.
4140         Set errno to ENOTSUP when returning -1.
4141         * modules/dirfd (Depends-on): Add errno.
4142         Suggested by John Kodis <kodis@comcast.net>.
4143
4144 2009-02-01  Bruno Haible  <bruno@clisp.org>
4145
4146         Don't assume sizeof (long) >= sizeof (void *).
4147         * lib/memcmp.c: Include stdint.h.
4148         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
4149         srcp2 to 'const byte *'.
4150         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
4151         types to uintptr_t.
4152         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
4153         * modules/memcmp (Depends-on): Add stdint.
4154         Reported by Ozkan Sezer <sezeroz@gmail.com>.
4155
4156 2009-01-30  Eric Blake  <ebb9@byu.net>
4157
4158         fix more require-before-expand issues
4159         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
4160         expand, AC_PROG_AWK.
4161         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
4162
4163 2009-01-28  Eric Blake  <ebb9@byu.net>
4164
4165         version-etc: use consistent URL formatting
4166         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
4167         Improve formatting.  Use fputs for string without %.
4168
4169 2009-01-28  Jim Meyering  <meyering@redhat.com>
4170
4171         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
4172         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
4173         "underquoted definition of NAME" from autoconf-2.59.
4174
4175 2009-01-28  Bruno Haible  <bruno@clisp.org>
4176
4177         * doc/gnulib.texi: Add "Obsolete modules" to index.
4178
4179 2009-01-28  Jim Meyering  <meyering@redhat.com>
4180
4181         useless-if-before-free: recognize more variants
4182         * build-aux/useless-if-before-free: Also recognize e.g.,
4183         if (NULL != p) free (p);
4184
4185 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
4186
4187         test-getaddrinfo: skip (don't fail) this test when there's no network
4188         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
4189         on the presumption that it means you lack network access.
4190
4191 2009-01-26  Jim Meyering  <meyering@redhat.com>
4192
4193         fflush: avoid warnings on modern systems
4194         * lib/fflush.c (rpl_fflush): Move declarations of locals,
4195         pos and result, into scopes where they're used.
4196
4197 2009-01-26  Eric Blake  <ebb9@byu.net>
4198
4199         Silence warning reintroduced by recent extensions patch.
4200         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
4201         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
4202         autoconf.
4203
4204         Backport improved autoconf semantics of AC_DEFUN_ONCE.
4205         * m4/00gnulib.m4: New file.
4206         * gnulib-tool (func_get_filelist): Always use it.
4207         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
4208         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
4209
4210 2009-01-25  Bruno Haible  <bruno@clisp.org>
4211
4212         Make test-quotearg work on MacOS X and AIX.
4213         * tests/test-quotearg.sh: New file.
4214         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
4215         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
4216         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
4217         include <libintl.h>.
4218         (fake_locale): Remove variable.
4219         (gettext, dgettext, dcgettext): Remove functions.
4220         (main): Instead of setting a fake locale, set a real locale. Call
4221         textdomain and bindtextdomain.
4222         * modules/quotearg-tests (Files): Add the new files.
4223         (Depends-on): Add gettext, setenv, unsetenv.
4224         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
4225         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
4226         Augment TESTS_ENVIRONMENT.
4227
4228 2009-01-25  Bruno Haible  <bruno@clisp.org>
4229
4230         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
4231         fr_FR.ISO8859-1 locale on MacOS X.
4232         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
4233         ja_JP.eucJP locale on MacOS X.
4234         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
4235         zh_CN.GB18030 locale on MacOS X.
4236
4237 2009-01-25  Bruno Haible  <bruno@clisp.org>
4238
4239         Avoid link errors on MacOS X 10.3.
4240         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
4241         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
4242
4243 2009-01-25  Bruno Haible  <bruno@clisp.org>
4244
4245         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
4246         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
4247         * modules/pipe (Files): Remove m4/posix_spawn.m4.
4248         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
4249         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
4250         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
4251         posix_spawnattr_init, posix_spawnattr_setsigmask,
4252         posix_spawnattr_setflags, posix_spawnattr_destroy.
4253
4254         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
4255         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
4256         * modules/execute (Files): Remove m4/posix_spawn.m4.
4257         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
4258         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
4259         posix_spawnattr_init, posix_spawnattr_setsigmask,
4260         posix_spawnattr_setflags, posix_spawnattr_destroy.
4261
4262 2009-01-25  Bruno Haible  <bruno@clisp.org>
4263
4264         * lib/glthread/threadlib.c: Include <stdlib.h>.
4265
4266 2009-01-25  Bruno Haible  <bruno@clisp.org>
4267
4268         * lib/glthread/threadlib.c (dummy): New declaration.
4269
4270 2009-01-25  Bruno Haible  <bruno@clisp.org>
4271
4272         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
4273         multibyte characters also for the GB18030 encoding. Don't crash when
4274         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
4275
4276 2009-01-25  Bruno Haible  <bruno@clisp.org>
4277
4278         Avoid redefining 'struct random_data' on OSF/1 5.1.
4279         * lib/stdlib.in.h: Include <random.h> if it exists.
4280         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
4281         HAVE_RANDOM_H. Include <random.h> when testing whether
4282         'struct random_data' exists.
4283         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
4284
4285 2009-01-25  Bruno Haible  <bruno@clisp.org>
4286
4287         Don't install charset.alias on MacOS X >= 10.3.
4288         * lib/localcharset.c (DARWIN7): New macro.
4289         (get_charset_aliases): Hardcode the result for Darwin7.
4290         * modules/localcharset (install-exec-local): Don't install
4291         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
4292
4293 2009-01-25  Bruno Haible  <bruno@clisp.org>
4294
4295         Don't install charset.alias on mingw and Cygwin.
4296         * modules/localcharset (install-exec-local): Don't install
4297         charset.alias on mingw and Cygwin, if the file does not yet exist.
4298         The result for these platforms is hardcoded in localcharset.c.
4299
4300 2009-01-25  Bruno Haible  <bruno@clisp.org>
4301
4302         Make it possible again to use AC_GNU_SOURCE together with gnulib.
4303         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
4304         before requiring AC_USE_SYSTEM_EXTENSIONS.
4305
4306 2009-01-25  Jim Meyering  <meyering@redhat.com>
4307
4308         c-strtod: avoid warnings
4309         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
4310         "assignment discards qualifiers from pointer target type" warnings.
4311
4312 2009-01-24  Bruno Haible  <bruno@clisp.org>
4313
4314         Add support for non-UTF-8 locales on MacOS X.
4315         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
4316         canonical encodings. For Darwin 7 and newer, don't map traditional
4317         encodings to UTF-8.
4318         Reported by Vincent Lefevre <vincent@vinc17.org>
4319         at <http://savannah.gnu.org/bugs/?25235>.
4320
4321 2009-01-24  Bruno Haible  <bruno@clisp.org>
4322
4323         * doc/gnulib.texi (Obsolete modules): New section.
4324         Reported by Mike Frysinger <vapier@gentoo.org>.
4325
4326 2009-01-24  Bruno Haible  <bruno@clisp.org>
4327
4328         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
4329         (%.dvi): New rule.
4330
4331 2009-01-24  Bruno Haible  <bruno@clisp.org>
4332
4333         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
4334         Reported by Eric Blake.
4335
4336 2009-01-24  Bruno Haible  <bruno@clisp.org>
4337
4338         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
4339         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
4340         Reported by Gary V. Vaughan <gary@gnu.org>.
4341
4342 2009-01-24  Bruno Haible  <bruno@clisp.org>
4343
4344         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
4345
4346 2009-01-23  Bruno Haible  <bruno@clisp.org>
4347
4348         Make c-strtod, c-strtold usable in libraries.
4349         * lib/c-strtod.c: Include string.h instead of xalloc.h.
4350         (C_STRTOD): Call strdup instead of xstrdup.
4351         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
4352         * modules/c-strtold (Depends-on): Likewise.
4353         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
4354         * NEWS: Mention the change.
4355         Reported by Michael Gold <mgold@ncf.ca>.
4356
4357 2009-01-23  Jim Meyering  <meyering@redhat.com>
4358
4359         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
4360         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
4361         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
4362
4363 2009-01-23  Simon Josefsson  <simon@josefsson.org>
4364
4365         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
4366         GNU CoreUtils.
4367         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
4368         * modules/version-etc (Description): Update.
4369
4370 2009-01-22  Bruno Haible  <bruno@clisp.org>
4371
4372         Cache the C locale object.
4373         * lib/c-strtod.c (c_locale_cache): New variable.
4374         (c_locale): New function.
4375         (C_STRTOD): Use it, and don't call freelocale.
4376         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
4377         Suggested by Paolo Bonzini.
4378
4379 2009-01-21  Bruno Haible  <bruno@clisp.org>
4380
4381         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
4382         conditions other than overflow.
4383
4384 2009-01-21  Bruno Haible  <bruno@clisp.org>
4385
4386         * lib/c-strtod.c: Include errno.h.
4387         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
4388         value from STRTOD_L and STRTOD.
4389
4390 2009-01-21  Bruno Haible  <bruno@clisp.org>
4391         and Jim Meyering  <meyering@redhat.com>
4392
4393         nanosleep: skip configure test (fail it) for apple universal builds
4394         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
4395         universal builds, assume that nanosleep does not work.
4396         * modules/nanosleep (Depends-on): Add multiarch.
4397
4398         mktime: skip configure test (fail it) for apple universal builds
4399         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
4400         universal builds, assume that mktime does not work.
4401         * modules/mktime (Depends-on): Add multiarch.
4402
4403 2009-01-21  Eric Blake  <ebb9@byu.net>
4404
4405         multiarch: avoid expand-before-require warning
4406         * modules/multiarch (configure.ac): Require, rather than expand,
4407         gl_MULTIARCH.
4408         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
4409         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
4410         enforce that all clients require it.  Partial reversion of
4411         2008-12-29 patch.
4412
4413         error: avoid expand-before-require warning
4414         * modules/errno (configure.ac): Require, rather than expand,
4415         gl_HEADER_ERRNO_H.
4416         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
4417         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
4418         enforce that all clients require it.
4419
4420         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
4421         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
4422         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
4423         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
4424
4425 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
4426
4427         Revert:
4428         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
4429
4430         regex: do not depend on obsolete modules.
4431         * modules/regex: Remove memcmp and memmove.
4432
4433 2009-01-20  Bruno Haible  <bruno@clisp.org>
4434
4435         Make the 'link' module link on Windows NT 4.
4436         * lib/link.c (_WIN32_WINNT): Don't define.
4437         (CreateHardLinkFuncType): New type.
4438         (CreateHardLinkFunc, initialized): New variables.
4439         (initialize): New function.
4440         (link): Invoke CreateHardLink indirectly through the function pointer.
4441
4442 2009-01-20  Bruno Haible  <bruno@clisp.org>
4443
4444         Fix compilation failure on mingw.
4445         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
4446
4447 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
4448
4449         * doc/c-strtod.texi: Mention a couple of restrictions.
4450
4451 2009-01-20  Jim Meyering  <meyering@redhat.com>
4452
4453         gettimeofday: move more declarations out of functions
4454         * lib/gettimeofday.c: Move extern declarations of tzset and
4455         gmtime out of containing functions.  Prompted by Bruno Haible.
4456
4457 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
4458
4459         regex: do not depend on obsolete modules.
4460         * modules/regex: Remove memcmp and memmove.
4461
4462 2009-01-19  Bruno Haible  <bruno@clisp.org>
4463
4464         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
4465         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
4466         gl_BIGENDIAN, not AC_C_BIGENDIAN.
4467         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
4468         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
4469
4470 2009-01-19  Bruno Haible  <bruno@clisp.org>
4471
4472         * tests/test-link.c: Include <errno.h>.
4473         (main): Exit with code 77 when a hard link cannot be created due to
4474         the file system.
4475         * tests/test-link.sh: Skip test when a hard link cannot be created due
4476         to the file system.
4477         Suggested by Eric Blake.
4478
4479 2009-01-19  Martin Lambers  <marlam@marlam.de>
4480
4481         * modules/link-tests: New file.
4482         * tests/test-link.sh: New file.
4483         * tests/test-link.c: New file.
4484
4485 2009-01-19  Eric Blake  <ebb9@byu.net>
4486
4487         doc: mention another function added in cygwin 1.7.0
4488         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
4489         Another new function in cygwin 1.7.
4490
4491 2009-01-19  Bruno Haible  <bruno@clisp.org>
4492
4493         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
4494         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
4495         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
4496         gl_BIGENDIAN, not AC_C_BIGENDIAN.
4497         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4498         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
4499         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
4500         * m4/md4.m4 (gl_MD4): Likewise.
4501         * m4/md5.m4 (gl_MD5): Likewise.
4502         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
4503         * m4/sha1.m4 (gl_SHA1): Likewise.
4504         * m4/sha256.m4 (gl_SHA256): Likewise.
4505         * m4/sha512.m4 (gl_SHA512): Likewise.
4506
4507 2009-01-19  Bruno Haible  <bruno@clisp.org>
4508
4509         * modules/uniname/uniname-tests (Depends-on): Add progname.
4510         * tests/uniname/test-uninames.c: Include progname.h.
4511         (main): Call set_program_name.
4512
4513         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
4514         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
4515         (main): Call set_program_name.
4516
4517         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
4518         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
4519         (main): Call set_program_name.
4520
4521         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
4522         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
4523         (main): Call set_program_name.
4524
4525         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
4526         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
4527         (main): Call set_program_name.
4528
4529         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
4530         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
4531         (main): Call set_program_name.
4532
4533         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
4534         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
4535         (main): Call set_program_name.
4536
4537         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
4538         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
4539         (main): Call set_program_name.
4540
4541         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
4542         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
4543         (main): Call set_program_name.
4544
4545 2009-01-19  Eric Blake  <ebb9@byu.net>
4546
4547         test-unistd: test previous patch
4548         * tests/test-unistd.c: Test *_FILENO macros.
4549
4550         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
4551         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4552         Guarantee a definition.
4553         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
4554         * modules/unistd-safer (Depends-on): Add dependency on unistd.
4555         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
4556         * lib/dup-safer.c (STDERR_FILENO): Likewise.
4557         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4558         Likewise.
4559         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
4560         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
4561         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4562         Likewise.
4563         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
4564         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
4565         (STDERR_FILENO): Likewise.
4566         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
4567         (STDERR_FILENO): Likewise.
4568         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
4569         (STDERR_FILENO): Likewise.
4570         Reported by Elbert Pol.
4571
4572 2009-01-19  Eric Blake  <ebb9@byu.net>
4573
4574         doc: mention more functions added in cygwin 1.7.0
4575         * doc/posix-functions/abort.texi (abort): Update wording related
4576         to cygwin.
4577         * doc/posix-functions/daylight.texi (daylight): Likewise.
4578         * doc/posix-functions/optarg.texi (optarg): Likewise.
4579         * doc/posix-functions/optarg.texi (opterr): Likewise.
4580         * doc/posix-functions/optarg.texi (optind): Likewise.
4581         * doc/posix-functions/optarg.texi (optopt): Likewise.
4582         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
4583         worked in 1.5.x, and was withdrawn in 1.7.
4584         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
4585         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
4586         cygwin versions.
4587         * doc/posix-functions/perror.texi (perror): Likewise.
4588         * doc/posix-functions/printf.texi (printf): Likewise.
4589         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
4590         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
4591         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
4592         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
4593         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
4594         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
4595         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
4596         Likewise.
4597         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
4598         Likewise.
4599         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
4600         this function.
4601         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
4602         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
4603         Likewise.
4604         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
4605         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
4606         * doc/posix-functions/confstr.texi (confstr): Likewise.
4607         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
4608         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
4609         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
4610         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
4611         * doc/posix-functions/fputws.texi (fputws): Likewise.
4612         * doc/posix-functions/fwide.texi (fwide): Likewise.
4613         * doc/posix-functions/getwc.texi (getwc): Likewise.
4614         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
4615         * doc/posix-functions/putwc.texi (putwc): Likewise.
4616         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
4617         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
4618         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
4619         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
4620         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
4621         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
4622         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
4623         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
4624         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
4625         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
4626         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
4627
4628 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
4629
4630         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
4631         * lib/ioctl.c: Include <sys/ioctl.h>.
4632
4633 2009-01-19  Simon Josefsson  <simon@josefsson.org>
4634
4635         * modules/getdate-tests (Depends-on): Add progname.
4636         * tests/test-getdate.c: Use progname module, to avoid link errors
4637         on non-glibc systems.
4638
4639 2009-01-18  Simon Josefsson  <simon@josefsson.org>
4640
4641         * modules/filenamecat-tests (Depends-on): Add progname.
4642         * modules/fstrcmp-tests (Depends-on): Likewise.
4643
4644         * tests/test-filenamecat.c: Use progname module, to avoid link
4645         errors on non-glibc systems.
4646         * tests/test-fstrcmp.c: Likewise.
4647
4648 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
4649
4650         gettimeofday: avoid warning: nested extern declaration of 'localtime'
4651         * lib/gettimeofday.c: Move extern declaration out of function.
4652
4653 2009-01-18  Bruno Haible  <bruno@clisp.org>
4654
4655         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
4656         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
4657         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
4658
4659 2009-01-18  Bruno Haible  <bruno@clisp.org>
4660
4661         * lib/strftime.c (MEMPCPY): Remove unused macro.
4662         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
4663
4664 2009-01-18  Martin Lambers  <marlam@marlam.de>
4665
4666         New module 'link'.
4667         * lib/unistd.in.h (link): New declaration.
4668         * lib/link.c: New file.
4669         * m4/link.m4: New file.
4670         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
4671         HAVE_LINK.
4672         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
4673         * modules/link: New file.
4674         * doc/posix-functions/link.texi: Mention the new module.
4675
4676 2009-01-18  Bruno Haible  <bruno@clisp.org>
4677
4678         * tests/test-avltree_list.c (main): Call set_program_name.
4679         * tests/test-avltree_oset.c (main): Likewise.
4680         * tests/test-obstack-printf.c: Include progname.h.
4681         (main): Call set_program_name.
4682         * tests/test-quotearg.c: Include progname.h.
4683         (main): Call set_program_name.
4684         * tests/test-xmemdup0.c: Include progname.h.
4685         (main): Call set_program_name.
4686
4687 2009-01-18  Bruno Haible  <bruno@clisp.org>
4688
4689         New module 'alphasort'.
4690         * lib/dirent.in.h (alphasort): New declaration.
4691         * lib/alphasort.c: New file, from glibc with modifications.
4692         * m4/alphasort.m4: New file.
4693         * modules/alphasort: New file.
4694         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
4695         HAVE_ALPHASORT.
4696         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
4697         HAVE_ALPHASORT.
4698         * doc/posix-functions/alphasort.texi: Mention the new module and the
4699         portability problems.
4700
4701 2009-01-18  Bruno Haible  <bruno@clisp.org>
4702
4703         New module 'scandir'.
4704         * lib/dirent.in.h (scandir): New declaration.
4705         * lib/scandir.c: New file, from glibc with modifications.
4706         * m4/scandir.m4: New file.
4707         * modules/scandir: New file.
4708         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
4709         HAVE_SCANDIR.
4710         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
4711         HAVE_SCANDIR.
4712         * doc/posix-functions/scandir.texi: Mention the new module and the
4713         portability problems.
4714
4715 2009-01-17  Bruno Haible  <bruno@clisp.org>
4716
4717         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
4718         Update documentation.
4719         (func_remove_suffix): Escape all dots in the suffix. Update
4720         documentation.
4721         (func_filter_filelist): Update documentation.
4722         Reported by Ralf Wildenhues.
4723
4724 2009-01-17  Bruno Haible  <bruno@clisp.org>
4725
4726         * modules/dprintf-posix-tests: New file.
4727         * tests/test-dprintf-posix.sh: New file.
4728         * tests/test-dprintf-posix.c: New file.
4729
4730         New modules 'dprintf', 'dprintf-posix'.
4731         * lib/stdio.in.h (dprintf): New declaration.
4732         * lib/dprintf.c: New file.
4733         * m4/dprintf.m4: New file.
4734         * m4/dprintf-posix.m4: New file.
4735         * modules/dprintf: New file.
4736         * modules/dprintf-posix: New file.
4737         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
4738         HAVE_DPRINTF, REPLACE_DPRINTF.
4739         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
4740         HAVE_DPRINTF, REPLACE_DPRINTF.
4741         * doc/posix-functions/dprintf.texi: Mention the new modules.
4742
4743 2009-01-17  Bruno Haible  <bruno@clisp.org>
4744
4745         * modules/vdprintf-posix-tests: New file.
4746         * tests/test-vdprintf-posix.sh: New file.
4747         * tests/test-vdprintf-posix.c: New file.
4748
4749         New modules 'vdprintf', 'vdprintf-posix'.
4750         * lib/stdio.in.h (vdprintf): New declaration.
4751         * lib/vdprintf.c: New file.
4752         * m4/vdprintf.m4: New file.
4753         * m4/vdprintf-posix.m4: New file.
4754         * modules/vdprintf: New file.
4755         * modules/vdprintf-posix: New file.
4756         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
4757         HAVE_VDPRINTF, REPLACE_VDPRINTF.
4758         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
4759         HAVE_VDPRINTF, REPLACE_VDPRINTF.
4760         * doc/posix-functions/vdprintf.texi: Mention the new modules.
4761
4762 2009-01-17  Bruno Haible  <bruno@clisp.org>
4763
4764         Fix replacement of fopen on mingw.
4765         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
4766         mingw.
4767
4768 2009-01-17  Bruno Haible  <bruno@clisp.org>
4769
4770         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
4771         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
4772
4773 2009-01-17  Bruno Haible  <bruno@clisp.org>
4774
4775         Avoid test-fflush2.sh failure on mingw.
4776         * tests/test-fflush2.c: Include binary-io.h.
4777         (main): Put standard input into binary mode.
4778         * modules/fflush-tests (Depends-on): Add binary-io.
4779
4780 2009-01-17  Bruno Haible  <bruno@clisp.org>
4781
4782         * lib/wchar.in.h: In another particular situation, include only the
4783         system's <wchar.h> file.
4784         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
4785         Reported by Albert Chin-A-Young <china@thewrittenword.com>
4786         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
4787
4788 2009-01-17  Bruno Haible  <bruno@clisp.org>
4789
4790         Support for stripping executables in --enable-relocatable.
4791         * build-aux/install-reloc: Expect one more argument, or an environment
4792         variable RELOC_STRIP_PROG. If set, strip the destination program and
4793         its wrapper.
4794         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
4795         RELOC_STRIP_PROG.
4796         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
4797         to set RELOCATABLE_STRIP.
4798         * NEWS: Mention the new Makefile requirement.
4799
4800 2009-01-17  Bruno Haible  <bruno@clisp.org>
4801
4802         * build-aux/install-reloc: Remove debugging information left over by
4803         C compiler on MacOS X.
4804
4805 2009-01-17  Bruno Haible  <bruno@clisp.org>
4806
4807         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
4808         * lib/progreloc.c (find_executable): Fix type of pointer passed to
4809         _NSGetExecutablePath.
4810
4811 2009-01-16  Jim Meyering  <meyering@redhat.com>
4812
4813         strerror: avoid warnings about discarding "const"
4814         * lib/strerror.c (rpl_strerror): Instead of returning a const
4815         string from each and every "case", use a variable, and add a single
4816         cast after the switch.
4817
4818 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
4819
4820         * lib/arpa_inet.in.h: Add extern "C" block for C++.
4821
4822 2009-01-16  Bruno Haible  <bruno@clisp.org>
4823
4824         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
4825         array initializer syntax that also works in C++ mode.
4826         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4827
4828 2009-01-16  Jim Meyering  <meyering@redhat.com>
4829
4830         poll: suppress a warning
4831         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
4832         to ignore "...unsigned expression < 0 is always false" warnings.
4833
4834 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
4835
4836         poll: remove declarations of unused variables
4837         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
4838         sockbuf and optlen.
4839
4840 2009-01-15  Bruno Haible  <bruno@clisp.org>
4841
4842         Make fflush-after-ungetc POSIX compliant on BSD systems.
4843         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
4844         (clear_ungetc_buffer): Implement also for other systems.
4845         (rpl_fflush): On glibc systems, invoke
4846         clear_ungetc_buffer_preserving_position. Otherwise, invoke
4847         clear_ungetc_buffer after fetching the stream's position, not before.
4848
4849 2009-01-15  Bruno Haible  <bruno@clisp.org>
4850
4851         Make fflush-after-ungetc POSIX compliant on glibc systems.
4852         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
4853         after ungetc.
4854         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
4855         (rpl_fflush): On glibc systems, simply call the system's fflush
4856         function after clearing the ungetc buffer.
4857         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
4858         Instead, lseek only to the end of file, then use the system's fseeko
4859         for the rest. On glibc systems, reset the EOF indicator bit.
4860
4861 2009-01-15  Jim Meyering  <meyering@redhat.com>
4862
4863         openmp.m4: revert quote-adding change, for portability to older autoconf
4864         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
4865         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
4866         Simon Josefsson noticed the problem when using autoconf-2.61.
4867
4868 2009-01-15  Bruno Haible  <bruno@clisp.org>
4869
4870         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
4871         * tests/test-fflush2.c (ASSERT): Always fail.
4872         (main): Add two tests for fflush() after ungetc(), taking into account
4873         the Austin Group's clarification.
4874         Suggested by Eric Blake.
4875
4876 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
4877
4878         mktime.m4: remove K&R-style function prototypes
4879         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
4880         for the Sun C++ compiler.
4881
4882 2009-01-14  Bruno Haible  <bruno@clisp.org>
4883
4884         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
4885         while including <wchar.h>.
4886         * lib/wchar.in.h: In two particular situations on HP-UX, include only
4887         the system's <wchar.h> file.
4888         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4889
4890 2009-01-14  Bruno Haible  <bruno@clisp.org>
4891
4892         * m4/csharp.m4: Don't mention gettext on the serial number line.
4893         * m4/csharpexec.m4: Likewise.
4894         * m4/eaccess.m4: Likewise.
4895         * m4/javaexec.m4: Likewise.
4896         * m4/sig_atomic_t.m4: Likewise.
4897         * m4/tmpdir.m4: Likewise.
4898         * m4/intldir.m4: Bump gettext version.
4899         * m4/lib-ld.m4: Likewise.
4900
4901 2009-01-14  Bruno Haible  <bruno@clisp.org>
4902
4903         * lib/progname.c (set_program_name): Add more comments.
4904         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
4905
4906 2009-01-14  Simon Josefsson  <simon@josefsson.org>
4907
4908         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
4909         were sys/stat.h does not define it.
4910
4911 2009-01-14  Jim Meyering  <meyering@redhat.com>
4912
4913         many *.m4 files: improve m4 quoting
4914         99% of this change was performed by running the following commands:
4915         git ls-files | grep '\.m4$' | xargs perl -pi \
4916           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
4917           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
4918           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
4919           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
4920         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
4921         The remainder were to add Copyright dates, increment serial numbers,
4922         undo some changes in comments, exclude m4/intl.m4, and add quotes
4923         around the "1" in ",1" where the unusual spacing prohibited the
4924         above regexps from doing the job.  For more details, see
4925         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
4926         * m4/acl.m4: Modified.
4927         * m4/afs.m4: Likewise.
4928         * m4/alloca.m4: Likewise.
4929         * m4/argp.m4: Likewise.
4930         * m4/argz.m4: Likewise.
4931         * m4/atexit.m4: Likewise.
4932         * m4/bison-i18n.m4: Likewise.
4933         * m4/bison.m4: Likewise.
4934         * m4/byteswap.m4: Likewise.
4935         * m4/c-stack.m4: Likewise.
4936         * m4/c-strtod.m4: Likewise.
4937         * m4/calloc.m4: Likewise.
4938         * m4/canonicalize-lgpl.m4: Likewise.
4939         * m4/chown.m4: Likewise.
4940         * m4/clock_time.m4: Likewise.
4941         * m4/codeset.m4: Likewise.
4942         * m4/copy-file.m4: Likewise.
4943         * m4/csharp.m4: Likewise.
4944         * m4/csharpcomp.m4: Likewise.
4945         * m4/csharpexec.m4: Likewise.
4946         * m4/d-ino.m4: Likewise.
4947         * m4/d-type.m4: Likewise.
4948         * m4/dirfd.m4: Likewise.
4949         * m4/double-slash-root.m4: Likewise.
4950         * m4/eaccess.m4: Likewise.
4951         * m4/eealloc.m4: Likewise.
4952         * m4/environ.m4: Likewise.
4953         * m4/errno_h.m4: Likewise.
4954         * m4/euidaccess.m4: Likewise.
4955         * m4/execute.m4: Likewise.
4956         * m4/fatal-signal.m4: Likewise.
4957         * m4/fchdir.m4: Likewise.
4958         * m4/fcntl_h.m4: Likewise.
4959         * m4/fileblocks.m4: Likewise.
4960         * m4/filenamecat.m4: Likewise.
4961         * m4/findprog.m4: Likewise.
4962         * m4/flexmember.m4: Likewise.
4963         * m4/fnmatch.m4: Likewise.
4964         * m4/fopen.m4: Likewise.
4965         * m4/fpending.m4: Likewise.
4966         * m4/fprintf-posix.m4: Likewise.
4967         * m4/free.m4: Likewise.
4968         * m4/frexp.m4: Likewise.
4969         * m4/frexpl.m4: Likewise.
4970         * m4/fsusage.m4: Likewise.
4971         * m4/ftruncate.m4: Likewise.
4972         * m4/gc-camellia.m4: Likewise.
4973         * m4/gc-random.m4: Likewise.
4974         * m4/gc.m4: Likewise.
4975         * m4/getaddrinfo.m4: Likewise.
4976         * m4/getcwd-abort-bug.m4: Likewise.
4977         * m4/getcwd-path-max.m4: Likewise.
4978         * m4/getdate.m4: Likewise.
4979         * m4/getdomainname.m4: Likewise.
4980         * m4/getgroups.m4: Likewise.
4981         * m4/gethostname.m4: Likewise.
4982         * m4/gethrxtime.m4: Likewise.
4983         * m4/getline.m4: Likewise.
4984         * m4/getloadavg.m4: Likewise.
4985         * m4/getndelim2.m4: Likewise.
4986         * m4/getpass.m4: Likewise.
4987         * m4/gettext.m4: Likewise.
4988         * m4/gettime.m4: Likewise.
4989         * m4/gettimeofday.m4: Likewise.
4990         * m4/gnulib-common.m4: Likewise.
4991         * m4/group-member.m4: Likewise.
4992         * m4/host-os.m4: Likewise.
4993         * m4/iconv.m4: Likewise.
4994         * m4/iconv_open.m4: Likewise.
4995         * m4/inet_ntop.m4: Likewise.
4996         * m4/inet_pton.m4: Likewise.
4997         * m4/inline.m4: Likewise.
4998         * m4/intldir.m4: Likewise.
4999         * m4/intlmacosx.m4: Likewise.
5000         * m4/intmax.m4: Likewise.
5001         * m4/intmax_t.m4: Likewise.
5002         * m4/inttypes.m4: Likewise.
5003         * m4/inttypes_h.m4: Likewise.
5004         * m4/inttypes-pri.m4: Likewise.
5005         * m4/isapipe.m4: Likewise.
5006         * m4/isnand.m4: Likewise.
5007         * m4/isnanf.m4: Likewise.
5008         * m4/isnanl.m4: Likewise.
5009         * m4/javacomp.m4: Likewise.
5010         * m4/javaexec.m4: Likewise.
5011         * m4/jm-winsz1.m4: Likewise.
5012         * m4/jm-winsz2.m4: Likewise.
5013         * m4/lchown.m4: Likewise.
5014         * m4/lcmessage.m4: Likewise.
5015         * m4/ldexpl.m4: Likewise.
5016         * m4/lib-ld.m4: Likewise.
5017         * m4/lib-link.m4: Likewise.
5018         * m4/libsigsegv.m4: Likewise.
5019         * m4/link-follow.m4: Likewise.
5020         * m4/localcharset.m4: Likewise.
5021         * m4/locale-fr.m4: Likewise.
5022         * m4/locale-ja.m4: Likewise.
5023         * m4/locale-tr.m4: Likewise.
5024         * m4/locale-zh.m4: Likewise.
5025         * m4/lock.m4: Likewise.
5026         * m4/longlong.m4: Likewise.
5027         * m4/ls-mntd-fs.m4: Likewise.
5028         * m4/lstat.m4: Likewise.
5029         * m4/malloc.m4: Likewise.
5030         * m4/mathl.m4: Likewise.
5031         * m4/mbrtowc.m4: Likewise.
5032         * m4/mbstate_t.m4: Likewise.
5033         * m4/mbswidth.m4: Likewise.
5034         * m4/memchr.m4: Likewise.
5035         * m4/memcmp.m4: Likewise.
5036         * m4/memcpy.m4: Likewise.
5037         * m4/memmem.m4: Likewise.
5038         * m4/memmove.m4: Likewise.
5039         * m4/mempcpy.m4: Likewise.
5040         * m4/memrchr.m4: Likewise.
5041         * m4/memset.m4: Likewise.
5042         * m4/minmax.m4: Likewise.
5043         * m4/mkdir-slash.m4: Likewise.
5044         * m4/mkdtemp.m4: Likewise.
5045         * m4/mktime.m4: Likewise.
5046         * m4/mmap-anon.m4: Likewise.
5047         * m4/mountlist.m4: Likewise.
5048         * m4/nanosleep.m4: Likewise.
5049         * m4/nls.m4: Likewise.
5050         * m4/nocrash.m4: Likewise.
5051         * m4/open.m4: Likewise.
5052         * m4/openat.m4: Likewise.
5053         * m4/openmp.m4: Likewise.
5054         * m4/pathmax.m4: Likewise.
5055         * m4/perl.m4: Likewise.
5056         * m4/physmem.m4: Likewise.
5057         * m4/pipe.m4: Likewise.
5058         * m4/po.m4: Likewise.
5059         * m4/poll.m4: Likewise.
5060         * m4/posixtm.m4: Likewise.
5061         * m4/posixver.m4: Likewise.
5062         * m4/printf-frexp.m4: Likewise.
5063         * m4/printf-frexpl.m4: Likewise.
5064         * m4/printf-posix.m4: Likewise.
5065         * m4/printf-posix-rpl.m4: Likewise.
5066         * m4/printf.m4: Likewise.
5067         * m4/progtest.m4: Likewise.
5068         * m4/putenv.m4: Likewise.
5069         * m4/readline.m4: Likewise.
5070         * m4/readlink.m4: Likewise.
5071         * m4/readutmp.m4: Likewise.
5072         * m4/realloc.m4: Likewise.
5073         * m4/regex.m4: Likewise.
5074         * m4/relocatable.m4: Likewise.
5075         * m4/relocatable-lib.m4: Likewise.
5076         * m4/rename-dest-slash.m4: Likewise.
5077         * m4/rename.m4: Likewise.
5078         * m4/rmdir-errno.m4: Likewise.
5079         * m4/rmdir.m4: Likewise.
5080         * m4/roundf.m4: Likewise.
5081         * m4/roundl.m4: Likewise.
5082         * m4/rpmatch.m4: Likewise.
5083         * m4/save-cwd.m4: Likewise.
5084         * m4/selinux-selinux-h.m4: Likewise.
5085         * m4/setenv.m4: Likewise.
5086         * m4/settime.m4: Likewise.
5087         * m4/sig2str.m4: Likewise.
5088         * m4/sig_atomic_t.m4: Likewise.
5089         * m4/signalblocking.m4: Likewise.
5090         * m4/signbit.m4: Likewise.
5091         * m4/sigpipe.m4: Likewise.
5092         * m4/sockets.m4: Likewise.
5093         * m4/sockpfaf.m4: Likewise.
5094         * m4/st_dm_mode.m4: Likewise.
5095         * m4/stat-time.m4: Likewise.
5096         * m4/stdbool.m4: Likewise.
5097         * m4/stdint.m4: Likewise.
5098         * m4/stdint_h.m4: Likewise.
5099         * m4/stpcpy.m4: Likewise.
5100         * m4/stpncpy.m4: Likewise.
5101         * m4/strcase.m4: Likewise.
5102         * m4/strchrnul.m4: Likewise.
5103         * m4/strcspn.m4: Likewise.
5104         * m4/strdup.m4: Likewise.
5105         * m4/strftime.m4: Likewise.
5106         * m4/strndup.m4: Likewise.
5107         * m4/strnlen.m4: Likewise.
5108         * m4/strpbrk.m4: Likewise.
5109         * m4/strptime.m4: Likewise.
5110         * m4/strsep.m4: Likewise.
5111         * m4/strtod.m4: Likewise.
5112         * m4/strtoimax.m4: Likewise.
5113         * m4/strtok_r.m4: Likewise.
5114         * m4/strtol.m4: Likewise.
5115         * m4/strtoll.m4: Likewise.
5116         * m4/strtoul.m4: Likewise.
5117         * m4/strtoull.m4: Likewise.
5118         * m4/strtoumax.m4: Likewise.
5119         * m4/strverscmp.m4: Likewise.
5120         * m4/threadlib.m4: Likewise.
5121         * m4/timegm.m4: Likewise.
5122         * m4/tm_gmtoff.m4: Likewise.
5123         * m4/tmpdir.m4: Likewise.
5124         * m4/tmpfile.m4: Likewise.
5125         * m4/tzset.m4: Likewise.
5126         * m4/uintmax_t.m4: Likewise.
5127         * m4/unlinkdir.m4: Likewise.
5128         * m4/unlocked-io.m4: Likewise.
5129         * m4/uptime.m4: Likewise.
5130         * m4/userspec.m4: Likewise.
5131         * m4/utimbuf.m4: Likewise.
5132         * m4/utime.m4: Likewise.
5133         * m4/utimes-null.m4: Likewise.
5134         * m4/utimes.m4: Likewise.
5135         * m4/vararrays.m4: Likewise.
5136         * m4/vasnprintf.m4: Likewise.
5137         * m4/vfprintf-posix.m4: Likewise.
5138         * m4/vprintf-posix.m4: Likewise.
5139         * m4/wait-process.m4: Likewise.
5140         * m4/wchar_t.m4: Likewise.
5141         * m4/wint_t.m4: Likewise.
5142         * m4/write-any-file.m4: Likewise.
5143         * m4/yield.m4: Likewise.
5144
5145 2009-01-13  Bruno Haible  <bruno@clisp.org>
5146
5147         Avoid test-copy-file.sh failures when ACL support insufficient.
5148         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
5149         TESTS_ENVIRONMENT.
5150         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
5151         Reported by Jim Meyering.
5152
5153 2009-01-13  Bruno Haible  <bruno@clisp.org>
5154
5155         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
5156         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
5157         * modules/unistdio/u8-printf-parse (Files): Likewise.
5158         * modules/unistdio/u32-printf-parse (Files): Likewise.
5159         * modules/unistdio/ulc-printf-parse (Files): Likewise.
5160
5161 2009-01-13  Simon Josefsson  <simon@josefsson.org>
5162
5163         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
5164         and m4/inttypes_h.m4 too.
5165
5166 2009-01-12  Eric Blake  <ebb9@byu.net>
5167
5168         tests: IRIX 6.2 cc can't compile -0.0 into .data
5169         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
5170         rather than at compile-time.
5171         * tests/test-floorl.c (minus_zero): Likewise.
5172         * tests/test-frexpl.c (minus_zero): Likewise.
5173         * tests/test-isnan.c (minus_zerol): Likewise.
5174         * tests/test-isnanl.h (minus_zero): Likewise.
5175         * tests/test-ldexpl.c (minus_zero): Likewise.
5176         * tests/test-roundl.c (minus_zero): Likewise.
5177         * tests/test-signbit.c (minus_zerol): Likewise.
5178         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
5179         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
5180         * tests/test-truncl.c (minus_zero): Likewise.
5181         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
5182         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
5183         Reported by Tom G. Christensen and Nelson H. F. Beebe.
5184
5185 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5186
5187         regex: fix glibc bug 9697
5188         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
5189         handling.
5190
5191 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5192
5193         regex: fix glibc bug 697
5194         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
5195         being NULL also if there are no backreferences.
5196
5197 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5198
5199         regex: merge glibc changes
5200         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
5201         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
5202         re_string_skip_chars, re_string_reconstruct): Likewise.
5203         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
5204
5205 2009-01-07  Jim Meyering  <meyering@redhat.com>
5206
5207         poll: filter through cppi
5208         * lib/poll.c: Indent cpp directives to reflect nesting.
5209
5210 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
5211
5212         poll: don't return uninitialized
5213         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
5214
5215 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
5216
5217         avoid compile failure on AIX 6.1
5218         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
5219         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
5220
5221 2009-01-04  Jim Meyering  <meyering@redhat.com>
5222
5223         remove duplicate inclusion of <stdio.h>
5224         * tests/test-fprintf-posix.c: Likewise.
5225         * tests/test-printf-posix.c: Likewise.
5226         * tests/test-snprintf-posix.c: Likewise.
5227         * tests/test-sprintf-posix.c: Likewise.
5228         * tests/test-vasprintf-posix.c: Likewise.
5229         * tests/test-vfprintf-posix.c: Likewise.
5230         * tests/test-vprintf-posix.c: Likewise.
5231         * tests/test-vsnprintf-posix.c: Likewise.
5232         * tests/test-vsprintf-posix.c: Likewise.
5233
5234 2009-01-03  Jim Meyering  <meyering@redhat.com>
5235
5236         gnulib-tool: fix sed-based filtering
5237         * gnulib-tool (func_filter_filelist): Remove extra backslash
5238         in sed_fff_filter definition.
5239
5240 2009-01-02  Jim Meyering  <meyering@redhat.com>
5241
5242         strftime: avoid compilation failure on Solaris 2.6
5243         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
5244         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
5245         Don't #define mbrlen or mbsinit, since now they're guaranteed to
5246         be available.  Reported by Tom G. Christensen.  Details in
5247         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
5248
5249 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5250             Bruno Haible  <bruno@clisp.org>
5251
5252         Speed up gnulib-tool by doing more string processing through shell
5253         built-ins.
5254         * gnulib-tool (fast_func_append): New variable.
5255         (func_remove_prefix, func_remove_suffix): New functions.
5256         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
5257         (func_filter_filelist): New function.
5258         (func_get_dependencies): Use func_remove_suffix instead of sed.
5259         (func_get_automake_snippet): Use func_filter_filelist instead of a
5260         subshell and sed invocation.
5261
5262 2009-01-01  Bruno Haible  <bruno@clisp.org>
5263
5264         Fix a security bug.
5265         * gnulib-tool (func_import, import, update): Don't allow the characters
5266         '"', '$', '`', '\' in macro arguments that become part of commands that
5267         are evaluated.
5268
5269 2009-01-01  Bruno Haible  <bruno@clisp.org>
5270
5271         * gnulib-tool (func_reset_sigpipe): Add more comments.
5272
5273 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5274
5275         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
5276         func_emit_tests_Makefile_am, func_import): Abort loops early if we
5277         already know the answer.
5278
5279 2009-01-01  Jim Meyering  <meyering@redhat.com>
5280
5281         * lib/version-etc.c (version_etc_va): Update copyright year.
5282
5283 2008-12-30  Bruno Haible  <bruno@clisp.org>
5284
5285         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
5286         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
5287         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
5288
5289 2008-12-29  Eric Blake  <ebb9@byu.net>
5290
5291         multiarch: avoid autoconf AC_REQUIRE bug
5292         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
5293         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
5294         2.63 and older.
5295         Reported by Bruno Haible, and analyzed in
5296         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
5297
5298 2008-12-29  Bruno Haible  <bruno@clisp.org>
5299
5300         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
5301         files in subdirectories correctly.
5302         Reported by Ralf Wildenhues.
5303
5304 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5305
5306         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
5307         rather than 'join FILE -', for Solaris join.
5308
5309 2008-12-29  Bruno Haible  <bruno@clisp.org>
5310
5311         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
5312         quoting.
5313         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
5314         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
5315         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
5316         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
5317         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
5318         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
5319         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
5320         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
5321         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5322         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
5323         * m4/nls.m4 (AM_NLS): Likewise.
5324         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
5325         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
5326         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
5327         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
5328         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
5329         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
5330         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
5331         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
5332         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
5333         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
5334         * m4/xsize.m4 (gl_XSIZE): Likewise.
5335         Suggested by Jim Meyering.
5336
5337 2008-11-17  Bruce Korb  <bkorb@gnu.org>
5338
5339         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
5340         * lib/parse-duration.c: use a switch instead of cascading if's.
5341
5342 2008-12-29  Eric Blake  <ebb9@byu.net>
5343
5344         wchar.h: supply WEOF on Irix 5.3
5345         * lib/wchar.in.h (wint_t): Also supply WEOF.
5346         * lib/wctype.in.h (wint_t): Likewise.
5347         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
5348         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
5349         Reported by Tom G. Christensen.
5350
5351 2008-12-26  Bruno Haible  <bruno@clisp.org>
5352
5353         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
5354         i486, i586, i686.
5355
5356 2008-12-26  Bruno Haible  <bruno@clisp.org>
5357
5358         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
5359
5360 2008-12-26  Bruno Haible  <bruno@clisp.org>
5361
5362         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
5363         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
5364         not __STDC_CONSTANT_MACROS.
5365         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
5366
5367 2008-12-25  Bruno Haible  <bruno@clisp.org>
5368
5369         Add support for universal builds to vasnprintf.
5370         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
5371         universal builds, guess no.
5372         * modules/vasnprintf-posix (Depends-on): Add multiarch.
5373         * modules/vasprintf-posix (Depends-on): Likewise.
5374         * modules/fprintf-posix (Depends-on): Likewise.
5375         * modules/vfprintf-posix (Depends-on): Likewise.
5376         * modules/snprintf-posix (Depends-on): Likewise.
5377         * modules/vsnprintf-posix (Depends-on): Likewise.
5378         * modules/sprintf-posix (Depends-on): Likewise.
5379         * modules/vsprintf-posix (Depends-on): Likewise.
5380         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
5381         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
5382         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
5383         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
5384         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
5385         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
5386         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
5387
5388         Add support for universal builds to <inttypes.h>.
5389         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
5390         _SCNu64_PREFIX): In Apple
5391         universal builds, define directly, using _LP64.
5392         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
5393         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
5394         * modules/inttypes (Depends-on): Add multiarch.
5395         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
5396
5397         Add support for universal builds to <stdint.h>.
5398         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
5399         universal builds, define directly, using _LP64.
5400         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
5401         Apple universal builds, don't test for the size and suffix of ptrdiff_t
5402         and size_t.
5403         * modules/stdint (Depends-on): Add multiarch.
5404         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
5405
5406         New module 'multiarch'.
5407         * modules/multiarch: New file.
5408         * m4/multiarch.m4: New file.
5409
5410 2008-12-25  Bruno Haible  <bruno@clisp.org>
5411
5412         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
5413
5414 2008-12-25  Bruno Haible  <bruno@clisp.org>
5415
5416         * modules/btowc (License): Relicense under LGPLv2+.
5417         * modules/mbsinit (License): Likewise.
5418         * modules/mbrtowc (License): Likewise.
5419         * modules/wcrtomb (License): Likewise.
5420         * modules/streq (License): Likewise.
5421         Reported by David Lutterkort <lutter@redhat.com>.
5422
5423 2008-12-23  Bruno Haible  <bruno@clisp.org>
5424
5425         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
5426
5427 2008-12-23  Bruno Haible  <bruno@clisp.org>
5428
5429         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
5430         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
5431         GETADDRINFO_LIB, not in LIBS.
5432         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
5433         * modules/canon-host (Link): Likewise.
5434         * NEWS: Mention the change.
5435         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
5436         GETADDRINFO_LIB.
5437
5438 2008-12-22  Bruno Haible  <bruno@clisp.org>
5439
5440         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
5441         * doc/posix-functions/iswalpha_l.texi: Likewise.
5442         * doc/posix-functions/iswblank_l.texi: Likewise.
5443         * doc/posix-functions/iswcntrl_l.texi: Likewise.
5444         * doc/posix-functions/iswctype_l.texi: Likewise.
5445         * doc/posix-functions/iswdigit_l.texi: Likewise.
5446         * doc/posix-functions/iswgraph_l.texi: Likewise.
5447         * doc/posix-functions/iswlower_l.texi: Likewise.
5448         * doc/posix-functions/iswprint_l.texi: Likewise.
5449         * doc/posix-functions/iswpunct_l.texi: Likewise.
5450         * doc/posix-functions/iswspace_l.texi: Likewise.
5451         * doc/posix-functions/iswupper_l.texi: Likewise.
5452         * doc/posix-functions/iswxdigit_l.texi: Likewise.
5453         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
5454         * doc/posix-functions/open_wmemstream.texi: Likewise.
5455         * doc/posix-functions/swscanf.texi: Likewise.
5456         * doc/posix-functions/towctrans_l.texi: Likewise.
5457         * doc/posix-functions/towlower.texi: Likewise.
5458         * doc/posix-functions/towlower_l.texi: Likewise.
5459         * doc/posix-functions/towupper.texi: Likewise.
5460         * doc/posix-functions/towupper_l.texi: Likewise.
5461         * doc/posix-functions/vfwprintf.texi: Likewise.
5462         * doc/posix-functions/vfwscanf.texi: Likewise.
5463         * doc/posix-functions/vswscanf.texi: Likewise.
5464         * doc/posix-functions/vwprintf.texi: Likewise.
5465         * doc/posix-functions/vwscanf.texi: Likewise.
5466         * doc/posix-functions/wcpcpy.texi: Likewise.
5467         * doc/posix-functions/wcpncpy.texi: Likewise.
5468         * doc/posix-functions/wcscasecmp.texi: Likewise.
5469         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
5470         * doc/posix-functions/wcscoll_l.texi: Likewise.
5471         * doc/posix-functions/wcsdup.texi: Likewise.
5472         * doc/posix-functions/wcsncasecmp.texi: Likewise.
5473         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
5474         * doc/posix-functions/wcsnlen.texi: Likewise.
5475         * doc/posix-functions/wcsnrtombs.texi: Likewise.
5476         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
5477         * doc/posix-functions/wctrans_l.texi: Likewise.
5478         * doc/posix-functions/wctype_l.texi: Likewise.
5479         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
5480         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
5481         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
5482         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
5483         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
5484         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
5485         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
5486         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
5487         * doc/glibc-functions/wcschrnul.texi: Likewise.
5488         * doc/glibc-functions/wcsftime_l.texi: Likewise.
5489         * doc/glibc-functions/wcstod_l.texi: Likewise.
5490         * doc/glibc-functions/wcstof_l.texi: Likewise.
5491         * doc/glibc-functions/wcstol_l.texi: Likewise.
5492         * doc/glibc-functions/wcstold_l.texi: Likewise.
5493         * doc/glibc-functions/wcstoll_l.texi: Likewise.
5494         * doc/glibc-functions/wcstoq.texi: Likewise.
5495         * doc/glibc-functions/wcstoul_l.texi: Likewise.
5496         * doc/glibc-functions/wcstoull_l.texi: Likewise.
5497         * doc/glibc-functions/wcstouq.texi: Likewise.
5498         * doc/glibc-functions/wmempcpy.texi: Likewise.
5499
5500 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
5501             Eric Blake  <ebb9@byu.net>
5502             Paolo Bonzini  <bonzini@gnu.org>
5503             Bruno Haible  <bruno@clisp.org>
5504
5505         Make c-stack work on Haiku.
5506         * lib/c-stack.c (SA_ONSTACK): Define fallback.
5507         (c_stack_action): Use SA_ONSTACK flag.
5508
5509 2008-12-22  Bruno Haible  <bruno@clisp.org>
5510
5511         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
5512
5513 2008-12-22  Bruno Haible  <bruno@clisp.org>
5514
5515         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
5516         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
5517         being overridden.
5518         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
5519         New macros.
5520         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
5521         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
5522         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
5523         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
5524
5525 2008-12-22  Bruno Haible  <bruno@clisp.org>
5526
5527         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
5528         from test code.
5529
5530 2008-12-22  Eric Blake  <ebb9@byu.net>
5531
5532         Avoid gcc warnings on cygwin.
5533         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
5534         Avoid unused variable.
5535         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
5536         Likewise.
5537
5538 2008-12-22  Bruno Haible  <bruno@clisp.org>
5539
5540         Remove HAVE_MBRTOWC conditionals.
5541         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
5542         (mbscasecmp): Assume mbrtowc function.
5543         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
5544         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
5545         * lib/mbschr.c: Include mbuiter.h unconditionally.
5546         (mbschr): Assume mbrtowc function.
5547         * lib/mbscspn.c: Include mbuiter.h unconditionally.
5548         (mbscspn): Assume mbrtowc function.
5549         * lib/mbslen.c: Include mbuiter.h unconditionally.
5550         (mbslen): Assume mbrtowc function.
5551         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
5552         (mbsncasecmp): Assume mbrtowc function.
5553         * lib/mbsnlen.c: Include mbiter.h unconditionally.
5554         (mbsnlen): Assume mbrtowc function.
5555         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
5556         (mbspbrk): Assume mbrtowc function.
5557         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
5558         (mbspcasecmp): Assume mbrtowc function.
5559         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
5560         (mbsrchr): Assume mbrtowc function.
5561         * lib/mbssep.c: Include mbuiter.h unconditionally.
5562         (mbssep): Assume mbrtowc function.
5563         * lib/mbsspn.c: Include mbuiter.h unconditionally.
5564         (mbsspn): Assume mbrtowc function.
5565         * lib/mbsstr.c: Include mbuiter.h unconditionally.
5566         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
5567         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
5568         (mbstok_r): Assume mbrtowc function.
5569         * lib/propername.c: Include mbuiter.h unconditionally.
5570         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
5571         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
5572         (trim2): Assume mbrtowc function.
5573         * lib/mbswidth.c (mbsinit): Remove fallback definition.
5574         (mbsnwidth): Assume mbrtowc function.
5575         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
5576         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
5577         fallback definitions.
5578         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
5579
5580 2008-12-22  Bruno Haible  <bruno@clisp.org>
5581
5582         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
5583
5584 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
5585
5586         * modules/regex: Request emulations for the mb*/wc* functions we need.
5587         * m4/regex.m4: Don't look for those functions here.
5588         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
5589
5590 2008-12-22  Bruno Haible  <bruno@clisp.org>
5591
5592         * modules/fnmatch (Depends-on): Remove duplicated dependency.
5593
5594 2008-12-21  Bruno Haible  <bruno@clisp.org>
5595
5596         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
5597         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
5598         (Include): Remove conditionalization.
5599         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
5600         (Include): Remove conditionalization.
5601         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
5602         (Include): Remove conditionalization.
5603         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
5604         * m4/mbfile.m4 (gl_MBFILE): Likewise.
5605         * NEWS: Mention the change.
5606         Reported by Alan Hourihane <alanh@fairlite.co.uk>
5607         via Sergey Poznyakoff <gray@gnu.org.ua>.
5608
5609 2008-12-21  Bruno Haible  <bruno@clisp.org>
5610
5611         * MODULES.html.sh (Extended multibyte and wide character utilities
5612         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
5613         wcrtomb, wcsrtombs.
5614         (Support for systems lacking POSIX:2008): Add accept, bind, close,
5615         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
5616         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
5617         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
5618
5619 2008-12-21  Bruno Haible  <bruno@clisp.org>
5620
5621         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
5622
5623 2008-12-21  Bruno Haible  <bruno@clisp.org>
5624
5625         * modules/wcsnrtombs-tests: New file.
5626         * tests/test-wcsnrtombs1.sh: New file.
5627         * tests/test-wcsnrtombs2.sh: New file.
5628         * tests/test-wcsnrtombs3.sh: New file.
5629         * tests/test-wcsnrtombs4.sh: New file.
5630         * tests/test-wcsnrtombs.c: New file.
5631
5632         New module 'wcsnrtombs'.
5633         * lib/wchar.in.h (wcsnrtombs): New declaration.
5634         * lib/wcsnrtombs.c: New file.
5635         * lib/wcsrtombs-state.c: New file.
5636         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
5637         (internal_state): Remove variable.
5638         * m4/wcsnrtombs.m4: New file.
5639         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
5640         compilation units.
5641         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
5642         HAVE_WCSNRTOMBS.
5643         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
5644         HAVE_WCSNRTOMBS.
5645         * modules/wcsnrtombs: New file.
5646         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
5647         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
5648
5649 2008-12-21  Bruno Haible  <bruno@clisp.org>
5650
5651         * modules/wcsrtombs-tests: New file.
5652         * tests/test-wcsrtombs1.sh: New file.
5653         * tests/test-wcsrtombs2.sh: New file.
5654         * tests/test-wcsrtombs3.sh: New file.
5655         * tests/test-wcsrtombs4.sh: New file.
5656         * tests/test-wcsrtombs.c: New file.
5657
5658         New module 'wcsrtombs'.
5659         * lib/wchar.in.h (wcsrtombs): New declaration.
5660         * lib/wcsrtombs.c: New file.
5661         * m4/wcsrtombs.m4: New file.
5662         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
5663         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
5664         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
5665         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
5666         * modules/wcsrtombs: New file.
5667         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
5668         bugs.
5669
5670 2008-12-21  Bruno Haible  <bruno@clisp.org>
5671
5672         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
5673         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
5674         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
5675         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
5676         if not correct.
5677         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
5678         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
5679         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5680         m4/locale-zh.m4, m4/codeset.m4.
5681         * doc/posix-functions/wcrtomb.texi: Document the bug.
5682
5683 2008-12-21  Bruno Haible  <bruno@clisp.org>
5684
5685         Work around a btowc() bug on IRIX 6.5.
5686         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
5687         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
5688         REPLACE_WTOBC if not.
5689         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
5690         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
5691         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
5692
5693 2008-12-21  Bruno Haible  <bruno@clisp.org>
5694
5695         * modules/wcrtomb-tests: New file.
5696         * tests/test-wcrtomb.sh: New file.
5697         * tests/test-wcrtomb.c: New file.
5698
5699         New module 'wcrtomb'.
5700         * lib/wchar.in.h (wcrtomb): New declaration.
5701         * lib/wcrtomb.c: New file.
5702         * m4/wcrtomb.m4: New file.
5703         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
5704         HAVE_WCRTOMB.
5705         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
5706         HAVE_WCRTOMB.
5707         * modules/wcrtomb: New file.
5708         * doc/posix-functions/wcrtomb.texi: Mention the new module.
5709
5710 2008-12-21  Bruno Haible  <bruno@clisp.org>
5711
5712         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
5713         * modules/mbsrtowcs (Files): Likewise.
5714         * modules/wctob (Files): Likewise.
5715         * modules/c-strcase-tests (Files): Likewise.
5716         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
5717         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
5718         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
5719         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
5720         * modules/vasnprintf-posix-tests (Files): Likewise.
5721
5722 2008-12-21  William Pursell  <bill.pursell@gmail.com>
5723
5724         gitlog-to-changelog: pass all command-line arguments to git-log
5725         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
5726         it is sometimes convenient to filter the commits in various ways.
5727         gitlog-to-changelog only allows --since to specify a start date,
5728         but git-log itself supports many other filtering mechanisms.
5729         At the moment, I want to filter by branch name.  Rather than
5730         adding a --branch option to gitlog-to-changelog, it seems more
5731         flexible to simply pass all options directly to git-log and let
5732         git do the work.  Notice that this effectively makes --since a
5733         redundant option for gitlog-to-changelog, but removing it would
5734         require current usage to change since calls would then require
5735         an additional '--'.
5736
5737 2008-12-21  Bruno Haible  <bruno@clisp.org>
5738
5739         * modules/mbsnrtowcs-tests: New file.
5740         * tests/test-mbsnrtowcs1.sh: New file.
5741         * tests/test-mbsnrtowcs2.sh: New file.
5742         * tests/test-mbsnrtowcs3.sh: New file.
5743         * tests/test-mbsnrtowcs4.sh: New file.
5744         * tests/test-mbsnrtowcs.c: New file.
5745
5746         New module 'mbsnrtowcs'.
5747         * lib/wchar.in.h (mbsnrtowcs): New declaration.
5748         * lib/mbsnrtowcs.c: New file.
5749         * lib/mbsrtowcs-state.c: New file.
5750         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
5751         (internal_state): Remove variable.
5752         * m4/mbsnrtowcs.m4: New file.
5753         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
5754         compilation units.
5755         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
5756         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
5757         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
5758         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
5759         * modules/mbsnrtowcs: New file.
5760         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
5761         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
5762         portability problem.
5763
5764 2008-12-21  Bruno Haible  <bruno@clisp.org>
5765
5766         Work around mbsrtowcs bug.
5767         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
5768         (gl_FUNC_MBSRTOWCS): Invoke it.
5769         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5770         m4/locale-zh.m4.
5771         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
5772
5773 2008-12-21  Bruno Haible  <bruno@clisp.org>
5774
5775         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
5776
5777 2008-12-21  Bruno Haible  <bruno@clisp.org>
5778
5779         Update doc for AIX.
5780         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
5781         16-bit wchar_t type.
5782         * doc/posix-functions/btowc.texi: Likewise.
5783         * doc/posix-functions/fgetwc.texi: Likewise.
5784         * doc/posix-functions/fgetws.texi: Likewise.
5785         * doc/posix-functions/fputwc.texi: Likewise.
5786         * doc/posix-functions/fputws.texi: Likewise.
5787         * doc/posix-functions/fwide.texi: Likewise.
5788         * doc/posix-functions/fwprintf.texi: Likewise.
5789         * doc/posix-functions/fwscanf.texi: Likewise.
5790         * doc/posix-functions/getwchar.texi: Likewise.
5791         * doc/posix-functions/getwc.texi: Likewise.
5792         * doc/posix-functions/iswalnum.texi: Likewise.
5793         * doc/posix-functions/iswalpha.texi: Likewise.
5794         * doc/posix-functions/iswblank.texi: Likewise.
5795         * doc/posix-functions/iswcntrl.texi: Likewise.
5796         * doc/posix-functions/iswctype.texi: Likewise.
5797         * doc/posix-functions/iswdigit.texi: Likewise.
5798         * doc/posix-functions/iswgraph.texi: Likewise.
5799         * doc/posix-functions/iswlower.texi: Likewise.
5800         * doc/posix-functions/iswprint.texi: Likewise.
5801         * doc/posix-functions/iswpunct.texi: Likewise.
5802         * doc/posix-functions/iswspace.texi: Likewise.
5803         * doc/posix-functions/iswupper.texi: Likewise.
5804         * doc/posix-functions/iswxdigit.texi: Likewise.
5805         * doc/posix-functions/mbrtowc.texi: Likewise.
5806         * doc/posix-functions/mbsrtowcs.texi: Likewise.
5807         * doc/posix-functions/mbstowcs.texi: Likewise.
5808         * doc/posix-functions/mbtowc.texi: Likewise.
5809         * doc/posix-functions/putwchar.texi: Likewise.
5810         * doc/posix-functions/putwc.texi: Likewise.
5811         * doc/posix-functions/swprintf.texi: Likewise.
5812         * doc/posix-functions/tolower.texi: Likewise.
5813         * doc/posix-functions/toupper.texi: Likewise.
5814         * doc/posix-functions/towctrans.texi: Likewise.
5815         * doc/posix-functions/ungetwc.texi: Likewise.
5816         * doc/posix-functions/vswprintf.texi: Likewise.
5817         * doc/posix-functions/wcrtomb.texi: Likewise.
5818         * doc/posix-functions/wcscat.texi: Likewise.
5819         * doc/posix-functions/wcschr.texi: Likewise.
5820         * doc/posix-functions/wcscmp.texi: Likewise.
5821         * doc/posix-functions/wcscoll.texi: Likewise.
5822         * doc/posix-functions/wcscpy.texi: Likewise.
5823         * doc/posix-functions/wcscspn.texi: Likewise.
5824         * doc/posix-functions/wcsftime.texi: Likewise.
5825         * doc/posix-functions/wcslen.texi: Likewise.
5826         * doc/posix-functions/wcsncat.texi: Likewise.
5827         * doc/posix-functions/wcsncmp.texi: Likewise.
5828         * doc/posix-functions/wcsncpy.texi: Likewise.
5829         * doc/posix-functions/wcspbrk.texi: Likewise.
5830         * doc/posix-functions/wcsrchr.texi: Likewise.
5831         * doc/posix-functions/wcsrtombs.texi: Likewise.
5832         * doc/posix-functions/wcsspn.texi: Likewise.
5833         * doc/posix-functions/wcsstr.texi: Likewise.
5834         * doc/posix-functions/wcstod.texi: Likewise.
5835         * doc/posix-functions/wcstof.texi: Likewise.
5836         * doc/posix-functions/wcstoimax.texi: Likewise.
5837         * doc/posix-functions/wcstok.texi: Likewise.
5838         * doc/posix-functions/wcstold.texi: Likewise.
5839         * doc/posix-functions/wcstoll.texi: Likewise.
5840         * doc/posix-functions/wcstol.texi: Likewise.
5841         * doc/posix-functions/wcstombs.texi: Likewise.
5842         * doc/posix-functions/wcstoull.texi: Likewise.
5843         * doc/posix-functions/wcstoul.texi: Likewise.
5844         * doc/posix-functions/wcstoumax.texi: Likewise.
5845         * doc/posix-functions/wcswidth.texi: Likewise.
5846         * doc/posix-functions/wcsxfrm.texi: Likewise.
5847         * doc/posix-functions/wctob.texi: Likewise.
5848         * doc/posix-functions/wctomb.texi: Likewise.
5849         * doc/posix-functions/wctrans.texi: Likewise.
5850         * doc/posix-functions/wctype.texi: Likewise.
5851         * doc/posix-functions/wcwidth.texi: Likewise.
5852         * doc/posix-functions/wmemchr.texi: Likewise.
5853         * doc/posix-functions/wmemcmp.texi: Likewise.
5854         * doc/posix-functions/wmemcpy.texi: Likewise.
5855         * doc/posix-functions/wmemmove.texi: Likewise.
5856         * doc/posix-functions/wmemset.texi: Likewise.
5857         * doc/posix-functions/wprintf.texi: Likewise.
5858         * doc/posix-functions/wscanf.texi: Likewise.
5859
5860 2008-12-21  Bruno Haible  <bruno@clisp.org>
5861
5862         Update doc for HP-UX 11.11.
5863         * doc/posix-functions/btowc.texi: Clarify that the function is missing
5864         in HP-UX version 11.00, not in all versions of HP-UX 11.
5865         * doc/posix-functions/fwide.texi: Likewise.
5866         * doc/posix-functions/fwprintf.texi: Likewise.
5867         * doc/posix-functions/fwscanf.texi: Likewise.
5868         * doc/posix-functions/inet_ntop.texi: Likewise.
5869         * doc/posix-functions/inet_pton.texi: Likewise.
5870         * doc/posix-functions/mbrlen.texi: Likewise.
5871         * doc/posix-functions/mbrtowc.texi: Likewise.
5872         * doc/posix-functions/mbsinit.texi: Likewise.
5873         * doc/posix-functions/mbsrtowcs.texi: Likewise.
5874         * doc/posix-functions/swprintf.texi: Likewise.
5875         * doc/posix-functions/swscanf.texi: Likewise.
5876         * doc/posix-functions/towctrans.texi: Likewise.
5877         * doc/posix-functions/vfwprintf.texi: Likewise.
5878         * doc/posix-functions/vswprintf.texi: Likewise.
5879         * doc/posix-functions/vwprintf.texi: Likewise.
5880         * doc/posix-functions/wcrtomb.texi: Likewise.
5881         * doc/posix-functions/wcsrtombs.texi: Likewise.
5882         * doc/posix-functions/wcsstr.texi: Likewise.
5883         * doc/posix-functions/wctob.texi: Likewise.
5884         * doc/posix-functions/wctrans.texi: Likewise.
5885         * doc/posix-functions/wmemchr.texi: Likewise.
5886         * doc/posix-functions/wmemcmp.texi: Likewise.
5887         * doc/posix-functions/wmemcpy.texi: Likewise.
5888         * doc/posix-functions/wmemmove.texi: Likewise.
5889         * doc/posix-functions/wmemset.texi: Likewise.
5890         * doc/posix-functions/wprintf.texi: Likewise.
5891         * doc/posix-functions/wscanf.texi: Likewise.
5892
5893 2008-12-21  Bruno Haible  <bruno@clisp.org>
5894
5895         Work around a portability problem.
5896         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
5897         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
5898
5899 2008-12-20  Bruno Haible  <bruno@clisp.org>
5900
5901         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
5902         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
5903         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
5904         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
5905         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
5906
5907         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
5908         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
5909         set.
5910         (GNULIB_defined_mbstate_t): New macro.
5911         (mbsinit): Redefine if REPLACE_MBSINIT is set.
5912         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
5913         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
5914         reuses the system's mbrtowc function but works around the bugs.
5915         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
5916         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
5917         macros.
5918         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
5919         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
5920         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
5921         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
5922         REPLACE_MBSINIT if mbsinit needs to be overridden.
5923         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
5924         REPLACE_MBSINIT, REPLACE_MBRTOWC.
5925         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
5926         REPLACE_MBSINIT, REPLACE_MBRTOWC.
5927         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5928         m4/locale-zh.m4.
5929         (Depends): Add mbsinit.
5930         * modules/mbsinit (Depends): Add mbrtowc.
5931         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
5932
5933 2008-12-20  Bruno Haible  <bruno@clisp.org>
5934
5935         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
5936         so that there are no conversion errors on AIX.
5937         * tests/test-mbsrtowcs.c (main): LIkewise.
5938
5939 2008-12-20  Bruno Haible  <bruno@clisp.org>
5940
5941         Work around wctob bug on Solaris <= 9.
5942         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
5943         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
5944         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
5945         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
5946         * modules/wctob (Files): Add m4/locale-fr.m4.
5947         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
5948
5949 2008-12-20  Bruno Haible  <bruno@clisp.org>
5950
5951         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
5952         /dev/null.
5953         * tests/test-select-in.sh: Likewise.
5954         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5955
5956 2008-12-20  Bruno Haible  <bruno@clisp.org>
5957
5958         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
5959         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
5960         Cygwin 1.5.x.
5961
5962 2008-12-20  Bruno Haible  <bruno@clisp.org>
5963
5964         Ensure mbstate_t is defined on HP-UX 11.11.
5965         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
5966         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
5967         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
5968         AC_USE_SYSTEM_EXTENSIONS.
5969         * modules/fnmatch (Depends-on): Add extensions.
5970         * modules/mbrlen (Depends-on): Likewise.
5971         * modules/mbrtowc (Depends-on): Likewise.
5972         * modules/mbsinit (Depends-on): Likewise.
5973         * modules/mbsrtowcs (Depends-on): Likewise.
5974         * modules/mbswidth (Depends-on): Likewise.
5975         * modules/quotearg (Depends-on): Likewise.
5976         * modules/strftime (Depends-on): Likewise.
5977
5978 2008-12-20  Bruno Haible  <bruno@clisp.org>
5979
5980         Ensure wctob is declared on IRIX 6.5.
5981         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
5982         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
5983         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
5984         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
5985         of HAVE_WCTOB.
5986         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
5987         HAVE_WCTOB.
5988         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
5989
5990 2008-12-19  Bruno Haible  <bruno@clisp.org>
5991
5992         * modules/mbsrtowcs-tests: New file.
5993         * tests/test-mbsrtowcs1.sh: New file.
5994         * tests/test-mbsrtowcs2.sh: New file.
5995         * tests/test-mbsrtowcs3.sh: New file.
5996         * tests/test-mbsrtowcs4.sh: New file.
5997         * tests/test-mbsrtowcs.c: New file.
5998
5999         New module 'mbsrtowcs'.
6000         * lib/wchar.in.h (mbsrtowcs): New declaration.
6001         * lib/mbsrtowcs.c: New file.
6002         * m4/mbsrtowcs.m4: New file.
6003         * modules/mbsrtowcs: New file.
6004         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
6005         HAVE_MBSRTOWCS.
6006         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
6007         HAVE_MBSRTOWCS.
6008         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
6009
6010 2008-12-19  Bruno Haible  <bruno@clisp.org>
6011
6012         New module 'mbrlen'.
6013         * lib/wchar.in.h (mbrlen): New declaration.
6014         * lib/mbrlen.c: New file.
6015         * m4/mbrlen.m4: New file.
6016         * modules/mbrlen: New file.
6017         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
6018         HAVE_MBRLEN.
6019         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
6020         HAVE_MBRLEN.
6021         * doc/posix-functions/mbrlen.texi: Document the new module.
6022
6023 2008-12-19  Bruno Haible  <bruno@clisp.org>
6024
6025         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
6026         * modules/mbrtowc (Depends-on): Add verify.
6027         Suggested by Paul Eggert.
6028
6029 2008-12-18  Bruno Haible  <bruno@clisp.org>
6030
6031         * modules/mbsinit-tests: New file.
6032         * tests/test-mbsinit.sh: New file.
6033         * tests/test-mbsinit.c: New file.
6034
6035 2008-12-18  Bruno Haible  <bruno@clisp.org>
6036
6037         * modules/mbrtowc-tests: New file.
6038         * tests/test-mbrtowc1.sh: New file.
6039         * tests/test-mbrtowc2.sh: New file.
6040         * tests/test-mbrtowc3.sh: New file.
6041         * tests/test-mbrtowc4.sh: New file.
6042         * tests/test-mbrtowc.c: New file.
6043
6044         New module 'mbrtowc'.
6045         * lib/wchar.in.h (mbstate_t): Override when the system does not have
6046         mbsinit and mbrtowc.
6047         (mbrtowc): New declaration.
6048         * lib/mbrtowc.c: New file.
6049         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
6050         * modules/mbrtowc: New file.
6051         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
6052         HAVE_MBRTOWC.
6053         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
6054         HAVE_MBRTOWC.
6055         * doc/posix-functions/mbrtowc.texi: Document the new module.
6056
6057 2008-12-18  Bruno Haible  <bruno@clisp.org>
6058
6059         New module 'wctob'.
6060         * lib/wchar.in.h (wctob): New declaration.
6061         * lib/wctob.c: New file.
6062         * m4/wctob.m4: New file.
6063         * modules/wctob: New file.
6064         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
6065         HAVE_WCTOB.
6066         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
6067         * doc/posix-functions/wctob.texi: Document the new module.
6068
6069 2008-12-18  Bruno Haible  <bruno@clisp.org>
6070
6071         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
6072         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
6073
6074 2008-12-18  Simon Josefsson  <simon@josefsson.org>
6075
6076         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
6077         G. Christensen" <tgc@jupiterrise.com>.
6078
6079         * lib/flock.c: Need to include errno.h.  Reported by "Tom
6080         G. Christensen" <tgc@jupiterrise.com>.
6081
6082         * lib/flock.c: Need to include string.h.  Reported by "Tom
6083         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
6084         <ebb9@byu.net>.
6085
6086 2008-12-18  Bruno Haible  <bruno@clisp.org>
6087
6088         * m4/locale-ja.m4: New file, from GNU gettext.
6089
6090 2008-12-17  Bruno Haible  <bruno@clisp.org>
6091
6092         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
6093         Suggested by Eric Blake.
6094
6095 2008-12-17  Bruno Haible  <bruno@clisp.org>
6096
6097         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
6098
6099 2008-12-17  Bruno Haible  <bruno@clisp.org>
6100
6101         * lib/mbsinit.c: Include verify.h. Verify an assumption.
6102         * modules/mbsinit (Depends-on): Add verify.
6103         Suggested by Paul Eggert.
6104
6105 2008-12-17  Bruno Haible  <bruno@clisp.org>
6106
6107         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
6108         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
6109         gl_FUNC_MBRTOWC.
6110         * m4/mbiter.m4 (gl_MBITER): LIkewise.
6111         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
6112         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
6113         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
6114         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
6115         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
6116         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
6117         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
6118         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
6119         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
6120         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
6121         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
6122         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
6123         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
6124         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
6125         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
6126         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
6127         * modules/trim (configure.ac): Likewise.
6128
6129 2008-12-17  Bruno Haible  <bruno@clisp.org>
6130
6131         * modules/btowc-tests: New file.
6132         * tests/test-btowc1.sh: New file.
6133         * tests/test-btowc2.sh: New file.
6134         * tests/test-btowc.c: New file.
6135
6136         New module 'btowc'.
6137         * lib/wchar.in.h (btowc): New declaration.
6138         * lib/btowc.c: New file.
6139         * m4/btowc.m4: New file.
6140         * modules/btowc: New file.
6141         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
6142         HAVE_BTOWC.
6143         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
6144         * doc/posix-functions/btowc.texi: Document the new module.
6145
6146 2008-12-17  Bruno Haible  <bruno@clisp.org>
6147
6148         New module 'mbsinit'.
6149         * lib/wchar.in.h (mbsinit): New declaration.
6150         * lib/mbsinit.c: New file.
6151         * m4/mbsinit.m4: New file.
6152         * modules/mbsinit: New file.
6153         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
6154         HAVE_MBSINIT.
6155         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
6156         HAVE_MBSINIT.
6157         * doc/posix-functions/mbsinit.texi: Document the new module.
6158
6159 2008-12-16  Bruno Haible  <bruno@clisp.org>
6160
6161         * lib/unistd.in.h: Add comment.
6162         * tests/test-environ.c: Don't include <stdlib.h>.
6163
6164 2008-12-16  Bruno Haible  <bruno@clisp.org>
6165
6166         * lib/parse-duration.h (parse_duration): Document return value
6167         convention.
6168         * lib/parse-duration.c: Include specification header first. Add
6169         comments.
6170         (_): Remove macro.
6171         (parse_year_month_day, parse_hour_minute_second): Move side effects
6172         outside of strchr call.
6173         (parse_non_iso8601): Move side effects outside of isspace call.
6174         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
6175         call.
6176
6177 2008-12-16  Bruno Haible  <bruno@clisp.org>
6178
6179         * tests/test-parse-duration.sh: Produce no output when the test
6180         succeeds.
6181
6182 2008-12-16  Bruno Haible  <bruno@clisp.org>
6183
6184         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
6185         expressions.
6186
6187 2008-12-15  Bruno Haible  <bruno@clisp.org>
6188
6189         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
6190         * doc/glibc-functions/flistxattr.texi: Likewise.
6191         * doc/glibc-functions/fopencookie.texi: Likewise.
6192         * doc/glibc-functions/fremovexattr.texi: Likewise.
6193         * doc/glibc-functions/fsetxattr.texi: Likewise.
6194         * doc/glibc-functions/getxattr.texi: Likewise.
6195         * doc/glibc-functions/lgetxattr.texi: Likewise.
6196         * doc/glibc-functions/listxattr.texi: Likewise.
6197         * doc/glibc-functions/llistxattr.texi: Likewise.
6198         * doc/glibc-functions/lremovexattr.texi: Likewise.
6199         * doc/glibc-functions/lsetxattr.texi: Likewise.
6200         * doc/glibc-functions/removexattr.texi: Likewise.
6201         * doc/glibc-functions/setxattr.texi: Likewise.
6202         * doc/posix-functions/open_memstream.texi: Likewise.
6203
6204 2008-12-15  Eric Blake  <ebb9@byu.net>
6205
6206         Update doc for cygwin 1.7.
6207         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
6208         functions.
6209         * doc/posix-functions/fchmodat.texi: Likewise.
6210         * doc/posix-functions/fchownat.texi: Likewise.
6211         * doc/posix-functions/fdopendir.texi: Likewise.
6212         * doc/posix-functions/fmemopen.texi: Likewise.
6213         * doc/posix-functions/freeaddrinfo.texi: Likewise.
6214         * doc/posix-functions/fstatat.texi: Likewise.
6215         * doc/posix-functions/futimens.texi: Likewise.
6216         * doc/posix-functions/gai_strerror.texi: Likewise.
6217         * doc/posix-functions/getaddrinfo.texi: Likewise.
6218         * doc/posix-functions/getnameinfo.texi: Likewise.
6219         * doc/posix-functions/if_freenameindex.texi: Likewise.
6220         * doc/posix-functions/if_indextoname.texi: Likewise.
6221         * doc/posix-functions/if_nameindex.texi: Likewise.
6222         * doc/posix-functions/if_nametoindex.texi: Likewise.
6223         * doc/posix-functions/insque.texi: Likewise.
6224         * doc/posix-functions/linkat.texi: Likewise.
6225         * doc/posix-functions/llrint.texi: Likewise.
6226         * doc/posix-functions/llrintf.texi: Likewise.
6227         * doc/posix-functions/llrintl.texi: Likewise.
6228         * doc/posix-functions/lockf.texi: Likewise.
6229         * doc/posix-functions/lrintl.texi: Likewise.
6230         * doc/posix-functions/mkdirat.texi: Likewise.
6231         * doc/posix-functions/mkfifoat.texi: Likewise.
6232         * doc/posix-functions/mknodat.texi: Likewise.
6233         * doc/posix-functions/mq_close.texi: Likewise.
6234         * doc/posix-functions/mq_getattr.texi: Likewise.
6235         * doc/posix-functions/mq_notify.texi: Likewise.
6236         * doc/posix-functions/mq_open.texi: Likewise.
6237         * doc/posix-functions/mq_receive.texi: Likewise.
6238         * doc/posix-functions/mq_send.texi: Likewise.
6239         * doc/posix-functions/mq_setattr.texi: Likewise.
6240         * doc/posix-functions/mq_timedreceive.texi: Likewise.
6241         * doc/posix-functions/mq_timedsend.texi: Likewise.
6242         * doc/posix-functions/mq_unlink.texi: Likewise.
6243         * doc/posix-functions/open_memstream.texi: Likewise.
6244         * doc/posix-functions/openat.texi: Likewise.
6245         * doc/posix-functions/posix_fadvise.texi: Likewise.
6246         * doc/posix-functions/posix_fallocate.texi: Likewise.
6247         * doc/posix-functions/posix_madvise.texi: Likewise.
6248         * doc/posix-functions/posix_memalign.texi: Likewise.
6249         * doc/posix-functions/posix_openpt.texi: Likewise.
6250         * doc/posix-functions/readlinkat.texi: Likewise.
6251         * doc/posix-functions/remque.texi: Likewise.
6252         * doc/posix-functions/renameat.texi: Likewise.
6253         * doc/posix-functions/rintl.texi: Likewise.
6254         * doc/posix-functions/sem_unlink.texi: Likewise.
6255         * doc/posix-functions/shm_open.texi: Likewise.
6256         * doc/posix-functions/shm_unlink.texi: Likewise.
6257         * doc/posix-functions/signgam.texi: Likewise.
6258         * doc/posix-functions/sigset.texi: Likewise.
6259         * doc/posix-functions/stpcpy.texi: Likewise.
6260         * doc/posix-functions/stpncpy.texi: Likewise.
6261         * doc/posix-functions/strerror.texi: Likewise.
6262         * doc/posix-functions/strtod.texi: Likewise.
6263         * doc/posix-functions/symlinkat.texi: Likewise.
6264         * doc/posix-functions/unlinkat.texi: Likewise.
6265         * doc/posix-functions/utimensat.texi: Likewise.
6266         * doc/glibc-functions/bindresvport.texi: Likewise.
6267         * doc/glibc-functions/dn_expand.texi: Likewise.
6268         * doc/glibc-functions/exp10.texi: Likewise.
6269         * doc/glibc-functions/exp10f.texi: Likewise.
6270         * doc/glibc-functions/fgetxattr.texi: Likewise.
6271         * doc/glibc-functions/flistxattr.texi: Likewise.
6272         * doc/glibc-functions/fopencookie.texi: Likewise.
6273         * doc/glibc-functions/freeifaddrs.texi: Likewise.
6274         * doc/glibc-functions/fremovexattr.texi: Likewise.
6275         * doc/glibc-functions/fsetxattr.texi: Likewise.
6276         * doc/glibc-functions/getifaddrs.texi: Likewise.
6277         * doc/glibc-functions/getxattr.texi: Likewise.
6278         * doc/glibc-functions/lgetxattr.texi: Likewise.
6279         * doc/glibc-functions/listxattr.texi: Likewise.
6280         * doc/glibc-functions/llistxattr.texi: Likewise.
6281         * doc/glibc-functions/lremovexattr.texi: Likewise.
6282         * doc/glibc-functions/lsetxattr.texi: Likewise.
6283         * doc/glibc-functions/pow10.texi: Likewise.
6284         * doc/glibc-functions/pow10f.texi: Likewise.
6285         * doc/glibc-functions/rcmd_af.texi: Likewise.
6286         * doc/glibc-functions/removexattr.texi: Likewise.
6287         * doc/glibc-functions/res_init.texi: Likewise.
6288         * doc/glibc-functions/res_mkquery.texi: Likewise.
6289         * doc/glibc-functions/res_query.texi: Likewise.
6290         * doc/glibc-functions/res_querydomain.texi: Likewise.
6291         * doc/glibc-functions/res_send.texi: Likewise.
6292         * doc/glibc-functions/rresvport_af.texi: Likewise.
6293         * doc/glibc-functions/setxattr.texi: Likewise.
6294         * doc/glibc-functions/strcasestr.texi: Likewise.
6295
6296 2008-12-15  Bruno Haible  <bruno@clisp.org>
6297
6298         Fix compilation error on OSF/1 4.0.
6299         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
6300         <sys/time.h>, simply delegate to the system header.
6301         Reported by Daniel Richard G. <oss@teragram.com>.
6302
6303 2008-12-15  Bruno Haible  <bruno@clisp.org>
6304
6305         * doc/posix-functions/openat.texi: Mention the 'openat' module.
6306         * doc/posix-functions/fchmodat.texi: Likewise.
6307         * doc/posix-functions/fchownat.texi: Likewise.
6308         * doc/posix-functions/fdopendir.texi: Likewise.
6309         * doc/posix-functions/fstatat.texi: Likewise.
6310         * doc/posix-functions/mkdirat.texi: Likewise.
6311         * doc/posix-functions/unlinkat.texi: Likewise.
6312
6313 2008-12-14  Bruno Haible  <bruno@clisp.org>
6314
6315         Update doc for POSIX:2008.
6316         * doc/posix-functions/faccessat.texi: New file.
6317         * doc/posix-functions/fchmodat.texi: New file.
6318         * doc/posix-functions/fchownat.texi: New file.
6319         * doc/posix-functions/fdopendir.texi: New file.
6320         * doc/posix-functions/fstatat.texi: New file.
6321         * doc/posix-functions/futimens.texi: New file.
6322         * doc/posix-functions/linkat.texi: New file.
6323         * doc/posix-functions/mkdirat.texi: New file.
6324         * doc/posix-functions/mkfifoat.texi: New file.
6325         * doc/posix-functions/mknodat.texi: New file.
6326         * doc/posix-functions/open_wmemstream.texi: New file.
6327         * doc/posix-functions/openat.texi: New file.
6328         * doc/posix-functions/psiginfo.texi: New file.
6329         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
6330         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
6331         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
6332         * doc/posix-functions/readlinkat.texi: New file.
6333         * doc/posix-functions/renameat.texi: New file.
6334         * doc/posix-functions/strerror_l.texi: New file.
6335         * doc/posix-functions/symlinkat.texi: New file.
6336         * doc/posix-functions/unlinkat.texi: New file.
6337         * doc/posix-functions/utimensat.texi: New file.
6338         * doc/gnulib.texi (Function Substitutes): Add these subsections.
6339
6340 2008-12-14  Bruno Haible  <bruno@clisp.org>
6341
6342         Update doc for POSIX:2008.
6343         * doc/posix-functions/alphasort.texi: Renamed from
6344         doc/glibc-functions/alphasort.texi.
6345         * doc/posix-functions/dirfd.texi: Renamed from
6346         doc/glibc-functions/dirfd.texi.
6347         * doc/posix-functions/dprintf.texi: Renamed from
6348         doc/glibc-functions/dprintf.texi.
6349         * doc/posix-functions/duplocale.texi: Renamed from
6350         doc/glibc-functions/duplocale.texi.
6351         * doc/posix-functions/fexecve.texi: Renamed from
6352         doc/glibc-functions/fexecve.texi.
6353         * doc/posix-functions/fmemopen.texi: Renamed from
6354         doc/glibc-functions/fmemopen.texi.
6355         * doc/posix-functions/freelocale.texi: Renamed from
6356         doc/glibc-functions/freelocale.texi.
6357         * doc/posix-functions/getdate_err.texi: Renamed from
6358         doc/glibc-functions/getdate_err.texi.
6359         * doc/posix-functions/isalnum_l.texi: Renamed from
6360         doc/glibc-functions/isalnum_l.texi.
6361         * doc/posix-functions/isalpha_l.texi: Renamed from
6362         doc/glibc-functions/isalpha_l.texi.
6363         * doc/posix-functions/isblank_l.texi: Renamed from
6364         doc/glibc-functions/isblank_l.texi.
6365         * doc/posix-functions/iscntrl_l.texi: Renamed from
6366         doc/glibc-functions/iscntrl_l.texi.
6367         * doc/posix-functions/isdigit_l.texi: Renamed from
6368         doc/glibc-functions/isdigit_l.texi.
6369         * doc/posix-functions/isgraph_l.texi: Renamed from
6370         doc/glibc-functions/isgraph_l.texi.
6371         * doc/posix-functions/islower_l.texi: Renamed from
6372         doc/glibc-functions/islower_l.texi.
6373         * doc/posix-functions/isprint_l.texi: Renamed from
6374         doc/glibc-functions/isprint_l.texi.
6375         * doc/posix-functions/ispunct_l.texi: Renamed from
6376         doc/glibc-functions/ispunct_l.texi.
6377         * doc/posix-functions/isspace_l.texi: Renamed from
6378         doc/glibc-functions/isspace_l.texi.
6379         * doc/posix-functions/isupper_l.texi: Renamed from
6380         doc/glibc-functions/isupper_l.texi.
6381         * doc/posix-functions/iswalnum_l.texi: Renamed from
6382         doc/glibc-functions/iswalnum_l.texi.
6383         * doc/posix-functions/iswalpha_l.texi: Renamed from
6384         doc/glibc-functions/iswalpha_l.texi.
6385         * doc/posix-functions/iswblank_l.texi: Renamed from
6386         doc/glibc-functions/iswblank_l.texi.
6387         * doc/posix-functions/iswcntrl_l.texi: Renamed from
6388         doc/glibc-functions/iswcntrl_l.texi.
6389         * doc/posix-functions/iswctype_l.texi: Renamed from
6390         doc/glibc-functions/iswctype_l.texi.
6391         * doc/posix-functions/iswdigit_l.texi: Renamed from
6392         doc/glibc-functions/iswdigit_l.texi.
6393         * doc/posix-functions/iswgraph_l.texi: Renamed from
6394         doc/glibc-functions/iswgraph_l.texi.
6395         * doc/posix-functions/iswlower_l.texi: Renamed from
6396         doc/glibc-functions/iswlower_l.texi.
6397         * doc/posix-functions/iswprint_l.texi: Renamed from
6398         doc/glibc-functions/iswprint_l.texi.
6399         * doc/posix-functions/iswpunct_l.texi: Renamed from
6400         doc/glibc-functions/iswpunct_l.texi.
6401         * doc/posix-functions/iswspace_l.texi: Renamed from
6402         doc/glibc-functions/iswspace_l.texi.
6403         * doc/posix-functions/iswupper_l.texi: Renamed from
6404         doc/glibc-functions/iswupper_l.texi.
6405         * doc/posix-functions/iswxdigit_l.texi: Renamed from
6406         doc/glibc-functions/iswxdigit_l.texi.
6407         * doc/posix-functions/isxdigit_l.texi: Renamed from
6408         doc/glibc-functions/isxdigit_l.texi.
6409         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
6410         doc/glibc-functions/mbsnrtowcs.texi.
6411         * doc/posix-functions/mkdtemp.texi: Renamed from
6412         doc/glibc-functions/mkdtemp.texi.
6413         * doc/posix-functions/newlocale.texi: Renamed from
6414         doc/glibc-functions/newlocale.texi.
6415         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
6416         doc/glibc-functions/nl_langinfo_l.texi.
6417         * doc/posix-functions/open_memstream.texi: Renamed from
6418         doc/glibc-functions/open_memstream.texi.
6419         * doc/posix-functions/opterr.texi: Renamed from
6420         doc/glibc-functions/opterr.texi.
6421         * doc/posix-functions/optind.texi: Renamed from
6422         doc/glibc-functions/optind.texi.
6423         * doc/posix-functions/optopt.texi: Renamed from
6424         doc/glibc-functions/optopt.texi.
6425         * doc/posix-functions/psignal.texi: Renamed from
6426         doc/glibc-functions/psignal.texi.
6427         * doc/posix-functions/scandir.texi: Renamed from
6428         doc/glibc-functions/scandir.texi.
6429         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
6430         doc/glibc-functions/sched_get_priority_min.texi.
6431         * doc/posix-functions/signgam.texi: Renamed from
6432         doc/glibc-functions/signgam.texi.
6433         * doc/posix-functions/stpcpy.texi: Renamed from
6434         doc/glibc-functions/stpcpy.texi.
6435         * doc/posix-functions/stpncpy.texi: Renamed from
6436         doc/glibc-functions/stpncpy.texi.
6437         * doc/posix-functions/strcasecmp_l.texi: Renamed from
6438         doc/glibc-functions/strcasecmp_l.texi.
6439         * doc/posix-functions/strcoll_l.texi: Renamed from
6440         doc/glibc-functions/strcoll_l.texi.
6441         * doc/posix-functions/strfmon_l.texi: Renamed from
6442         doc/glibc-functions/strfmon_l.texi.
6443         * doc/posix-functions/strftime_l.texi: Renamed from
6444         doc/glibc-functions/strftime_l.texi.
6445         * doc/posix-functions/strncasecmp_l.texi: Renamed from
6446         doc/glibc-functions/strncasecmp_l.texi.
6447         * doc/posix-functions/strndup.texi: Renamed from
6448         doc/glibc-functions/strndup.texi.
6449         * doc/posix-functions/strnlen.texi: Renamed from
6450         doc/glibc-functions/strnlen.texi.
6451         * doc/posix-functions/strsignal.texi: Renamed from
6452         doc/glibc-functions/strsignal.texi.
6453         * doc/posix-functions/strxfrm_l.texi: Renamed from
6454         doc/glibc-functions/strxfrm_l.texi.
6455         * doc/posix-functions/timer_gettime.texi: Renamed from
6456         doc/glibc-functions/timer_gettime.texi.
6457         * doc/posix-functions/tolower_l.texi: Renamed from
6458         doc/glibc-functions/tolower_l.texi.
6459         * doc/posix-functions/toupper_l.texi: Renamed from
6460         doc/glibc-functions/toupper_l.texi.
6461         * doc/posix-functions/towctrans_l.texi: Renamed from
6462         doc/glibc-functions/towctrans_l.texi.
6463         * doc/posix-functions/towlower_l.texi: Renamed from
6464         doc/glibc-functions/towlower_l.texi.
6465         * doc/posix-functions/towupper_l.texi: Renamed from
6466         doc/glibc-functions/towupper_l.texi.
6467         * doc/posix-functions/uselocale.texi: Renamed from
6468         doc/glibc-functions/uselocale.texi.
6469         * doc/posix-functions/vdprintf.texi: Renamed from
6470         doc/glibc-functions/vdprintf.texi.
6471         * doc/posix-functions/wcpcpy.texi:
6472         Renamed from doc/glibc-functions/wcpcpy.texi.
6473         * doc/posix-functions/wcpncpy.texi: Renamed from
6474         doc/glibc-functions/wcpncpy.texi.
6475         * doc/posix-functions/wcscasecmp.texi: Renamed from
6476         doc/glibc-functions/wcscasecmp.texi.
6477         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
6478         doc/glibc-functions/wcscasecmp_l.texi.
6479         * doc/posix-functions/wcscoll_l.texi: Renamed from
6480         doc/glibc-functions/wcscoll_l.texi.
6481         * doc/posix-functions/wcsdup.texi: Renamed from
6482         doc/glibc-functions/wcsdup.texi.
6483         * doc/posix-functions/wcsncasecmp.texi: Renamed from
6484         doc/glibc-functions/wcsncasecmp.texi.
6485         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
6486         doc/glibc-functions/wcsncasecmp_l.texi.
6487         * doc/posix-functions/wcsnlen.texi: Renamed from
6488         doc/glibc-functions/wcsnlen.texi.
6489         * doc/posix-functions/wcsnrtombs.texi: Renamed from
6490         doc/glibc-functions/wcsnrtombs.texi.
6491         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
6492         doc/glibc-functions/wcsxfrm_l.texi.
6493         * doc/posix-functions/wctrans_l.texi: Renamed from
6494         doc/glibc-functions/wctrans_l.texi.
6495         * doc/posix-functions/wctype_l.texi: Renamed from
6496         doc/glibc-functions/wctype_l.texi.
6497         * doc/gnulib.texi (Function Substitutes): Add these subsections.
6498         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
6499         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
6500         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
6501         these subsections.
6502         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
6503         Remove sections.
6504
6505 2008-12-14  Bruno Haible  <bruno@clisp.org>
6506
6507         Update doc for POSIX:2008.
6508         * doc/posix-functions/*.texi: Update URL of POSIX specification.
6509
6510 2008-12-14  Bruno Haible  <bruno@clisp.org>
6511
6512         Update doc for POSIX:2008.
6513         * doc/pastposix-functions/bcmp.texi: Renamed from
6514         doc/posix-functions/bcmp.texi.
6515         * doc/pastposix-functions/bcopy.texi: Renamed from
6516         doc/posix-functions/bcopy.texi.
6517         * doc/pastposix-functions/bsd_signal.texi: Renamed from
6518         doc/posix-functions/bsd_signal.texi.
6519         * doc/pastposix-functions/bzero.texi: Renamed from
6520         doc/posix-functions/bzero.texi.
6521         * doc/pastposix-functions/ecvt.texi: Renamed from
6522         doc/posix-functions/ecvt.texi.
6523         * doc/pastposix-functions/fcvt.texi: Renamed from
6524         doc/posix-functions/fcvt.texi.
6525         * doc/pastposix-functions/ftime.texi: Renamed from
6526         doc/posix-functions/ftime.texi.
6527         * doc/pastposix-functions/gcvt.texi: Renamed from
6528         doc/posix-functions/gcvt.texi.
6529         * doc/pastposix-functions/getcontext.texi: Renamed from
6530         doc/posix-functions/getcontext.texi.
6531         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
6532         doc/posix-functions/gethostbyaddr.texi.
6533         * doc/pastposix-functions/gethostbyname.texi: Renamed from
6534         doc/posix-functions/gethostbyname.texi.
6535         * doc/pastposix-functions/getwd.texi: Renamed from
6536         doc/posix-functions/getwd.texi.
6537         * doc/pastposix-functions/h_errno.texi: Renamed from
6538         doc/posix-functions/h_errno.texi.
6539         * doc/pastposix-functions/index.texi: Renamed from
6540         doc/posix-functions/index.texi.
6541         * doc/pastposix-functions/makecontext.texi: Renamed from
6542         doc/posix-functions/makecontext.texi.
6543         * doc/pastposix-functions/mktemp.texi: Renamed from
6544         doc/posix-functions/mktemp.texi.
6545         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
6546         doc/posix-functions/pthread_attr_getstackaddr.texi.
6547         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
6548         doc/posix-functions/pthread_attr_setstackaddr.texi.
6549         * doc/pastposix-functions/rindex.texi: Renamed from
6550         doc/posix-functions/rindex.texi.
6551         * doc/pastposix-functions/scalb.texi: Renamed from
6552         doc/posix-functions/scalb.texi.
6553         * doc/pastposix-functions/setcontext.texi: Renamed from
6554         doc/posix-functions/setcontext.texi.
6555         * doc/pastposix-functions/swapcontext.texi: Renamed from
6556         doc/posix-functions/swapcontext.texi.
6557         * doc/pastposix-functions/ualarm.texi: Renamed from
6558         doc/posix-functions/ualarm.texi.
6559         * doc/pastposix-functions/usleep.texi: Renamed from
6560         doc/posix-functions/usleep.texi.
6561         * doc/pastposix-functions/vfork.texi: Renamed from
6562         doc/posix-functions/vfork.texi.
6563         * doc/pastposix-functions/wcswcs.texi: Renamed from
6564         doc/posix-functions/wcswcs.texi.
6565         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
6566         (Function Substitutes): Update.
6567
6568 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6569
6570         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
6571         m4/strerror.m4.
6572
6573 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6574             Bruno Haible  <bruno@clisp.org>
6575
6576         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
6577
6578 2008-12-13  Bruno Haible  <bruno@clisp.org>
6579
6580         * modules/strtoull (Depends-on): Remove unistd.
6581
6582 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6583
6584         * modules/strtoull (Depends-on): Add stdlib.
6585
6586 2008-12-11  Simon Josefsson  <simon@josefsson.org>
6587
6588         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
6589
6590 2008-12-10  Jim Meyering  <meyering@redhat.com>
6591
6592         gl_ASSERT: don't say assertions are disabled when they're not
6593         * m4/assert.m4 (gl_ASSERT): Do not make configure report
6594         "checking whether to enable assertions... no", when they are in
6595         fact enabled.  This is solely a bug in the output of configure.
6596         In spite of saying "no", NDEBUG was not defined in that case.
6597         Also, as noted by Eric Blake, leave assertions enabled upon
6598         --enable-assert=INVALID.
6599
6600 2008-12-10  Bruno Haible  <bruno@clisp.org>
6601
6602         Change MODULES.html to refer to POSIX:2008 where possible.
6603         * MODULES.html.sh (POSIX2008_URL): New variable.
6604         (posix_headers): Remove sys/timeb, ucontext.
6605         (posix2001_headers): New variable.
6606         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
6607         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
6608         index, makecontext, mktemp, pthread_attr_getstackaddr,
6609         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
6610         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
6611         (posix2001_functions): New variable.
6612         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
6613         otherwise.
6614
6615 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6616
6617         add missing include to parse-duration.c
6618         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
6619         * modules/parse-duration (Depends-on): Add xalloc.
6620
6621         fix sed script reading maint.mk
6622         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
6623         (syntax-check-rules): Use it.
6624
6625 2008-12-09  Bruno Haible  <bruno@clisp.org>
6626
6627         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
6628         MacOS X 10.4/PowerPC.
6629         Reported by Simon Josefsson.
6630
6631 2008-12-08  Jim Meyering  <meyering@redhat.com>
6632
6633         work around mingw's lack of some S_IF definitions
6634         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
6635         Reported by Simon Josefsson.
6636
6637 2008-12-08  Bruno Haible  <bruno@clisp.org>
6638
6639         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
6640         applied to variables. Needed on MacOS X 10.4/PowerPC.
6641         Reported by Simon Josefsson.
6642
6643 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
6644         and Eric Blake  <ebb9@byu.net>
6645
6646         assert: honor --enable-assert
6647         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
6648         order to honor --enable-assert, rather than treating it as a
6649         synonym for --disable-assert.
6650
6651 2008-12-08  Jim Meyering  <meyering@redhat.com>
6652
6653         * lib/posixtm.c: Remove now-useless declaration of mktime.
6654
6655         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
6656
6657 2008-12-07  Bruno Haible  <bruno@clisp.org>
6658
6659         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
6660         test_once): Mark functions as static.
6661         * tests/test-tls.c (test_tls): Likewise.
6662
6663 2008-12-07  Bruno Haible  <bruno@clisp.org>
6664
6665         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
6666         iconv_register_autodetect.
6667
6668 2008-12-07  Jim Meyering  <meyering@redhat.com>
6669
6670         posixtm.c: avoid a warning
6671         * lib/posixtm.c (posixtime): Don't initialize tm0.
6672         It's no longer needed to placate gcc4's -Wuninitialized,
6673         and the attempt to placate would elicit a new warning.
6674
6675         unicodeio.c: mark unused parameters
6676         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
6677         (fallback_failure_callback): Likewise.
6678
6679 2008-12-07  Bruno Haible  <bruno@clisp.org>
6680
6681         * gnulib-tool (func_create_testdir): When building the tests
6682         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
6683         Reported by Simon Josefsson.
6684
6685 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6686
6687         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
6688
6689 2008-12-06  Bruno Haible  <bruno@clisp.org>
6690
6691         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
6692         Suggested by Eric Blake.
6693
6694 2008-12-06  Bruno Haible  <bruno@clisp.org>
6695
6696         Fix a c-stack test failure on MacOS X.
6697         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
6698         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
6699         handler for SIGBUS as well.
6700         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
6701         install a signal handler for SIGBUS as well.
6702         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
6703
6704 2008-12-06  Bruno Haible  <bruno@clisp.org>
6705
6706         Advocacy documentation.
6707         * doc/gnulib-intro.texi (Benefits): New section.
6708         * doc/gnulib.texi: Update.
6709
6710 2008-12-06  Bruno Haible  <bruno@clisp.org>
6711
6712         Document the 'manywarnings' module.
6713         * doc/manywarnings.texi: New file.
6714         * doc/gnulib.texi: Include it.
6715
6716 2008-12-05  Eric Blake  <ebb9@byu.net>
6717
6718         tests: silence some gcc warnings
6719         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
6720         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
6721         type mismatches.
6722
6723 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6724             Bruno Haible  <bruno@clisp.org>
6725
6726         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
6727
6728 2008-11-29  Jim Meyering  <meyering@redhat.com>
6729
6730         unicodeio.c: mark unused parameters
6731         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
6732         (fallback_failure_callback): Likewise.
6733
6734         fts: fix a thinko
6735         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
6736         (set_stat_type): Return S_IF*-valued "type" directly.
6737         Prompted by James Youngman's spotting a related bug.
6738         Confirmed by further testing through find.
6739
6740         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
6741         * lib/fts.c (D_TYPE): Define.
6742         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
6743         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
6744         (s_ifmt_shift_bits): New function.
6745         (set_stat_type): New function.
6746         (fts_build): When not calling fts_stat, call set_stat_type
6747         to propagate dirent.d_type info to fts_read caller.
6748         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
6749         fts_statp->st_mode type information may be valid.
6750
6751 2008-11-28  Simon Josefsson  <simon@josefsson.org>
6752
6753         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
6754         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
6755         <sds@gnu.org>.
6756
6757 2008-11-20  Bruno Haible  <bruno@clisp.org>
6758
6759         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
6760         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
6761         INCLUDE_NEXT.
6762         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
6763         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
6764         * modules/math (Makefile.am): Substitute
6765         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
6766         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
6767
6768 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
6769             Bruno Haible  <bruno@clisp.org>
6770
6771         * lib/stdint.in.h: Define all type macros so that their expansion is
6772         a single typedef'ed token. Fixes a compilation failure in Boost which
6773         does "using ::int8_t;".
6774
6775 2008-11-18  Simon Josefsson  <simon@josefsson.org>
6776
6777         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
6778         gl_MANYWARN_ALL_GCC.
6779         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
6780         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
6781         * modules/manywarnings: New file.
6782         * MODULES.html.sh: Mention manywarnings module.
6783
6784 2008-11-18  Bruno Haible  <bruno@clisp.org>
6785
6786         * doc/gnulib-tool.texi (Unit tests): New section.
6787
6788 2008-11-18  Simon Josefsson  <simon@josefsson.org>
6789
6790         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
6791         paths like 'lib/po/foo.po'.
6792
6793 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6794
6795         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
6796         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
6797
6798 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6799
6800         * m4/warnings.m4: Use CPPFLAGS to really check whether the
6801         parameter works.
6802
6803 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6804
6805         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
6806
6807 2008-11-17  Bruce Korb  <bkorb@gnu.org>
6808
6809         * modules/parse-duration-tests: New file.
6810         * tests/test-parse-duration.sh: New file.
6811         * tests/test-parse-duration.c: New file.
6812
6813         New module 'parse-duration'.
6814         * lib/parse-duration.h: New file.
6815         * lib/parse-duration.c: New file.
6816         * modules/parse-duration: New file.
6817
6818 2008-11-17  Bruno Haible  <bruno@clisp.org>
6819
6820         * tests/test-select-out.sh: Comment out the first pipe test.
6821         Reported by Simon Josefsson.
6822
6823 2008-11-17  Bruno Haible  <bruno@clisp.org>
6824
6825         * modules/getaddrinfo (Depends-on): Add servent, hostent.
6826         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
6827         gl_HOSTENT.
6828
6829 2008-11-17  Bruno Haible  <bruno@clisp.org>
6830
6831         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
6832         -lnetwork and -lnet. Needed for Haiku and BeOS.
6833
6834 2008-11-16  Bruno Haible  <bruno@clisp.org>
6835
6836         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
6837
6838 2008-11-16  Bruno Haible  <bruno@clisp.org>
6839
6840         Avoid test failure on Haiku.
6841         * tests/test-fsync.c: Include <errno.h>.
6842         (main): Don't require that fsync (0) fails.
6843
6844 2008-11-15  Bruno Haible  <bruno@clisp.org>
6845
6846         New module 'hostent'.
6847         * modules/hostent: New file.
6848         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
6849
6850 2008-11-15  Bruno Haible  <bruno@clisp.org>
6851
6852         New module 'servent'.
6853         * modules/servent: New file.
6854         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
6855
6856 2008-11-15  Bruno Haible  <bruno@clisp.org>
6857
6858         Avoid generating same test program with two different rules.
6859         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
6860         test-frexp to test-frexp-nolibm.
6861         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
6862         test-frexpl to test-frexpl-nolibm.
6863
6864 2008-11-15  Bruno Haible  <bruno@clisp.org>
6865
6866         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
6867         $(FREXPL_LIBM).
6868
6869 2008-11-15  Bruno Haible  <bruno@clisp.org>
6870
6871         * lib/netdb.in.h: Activate the definitions also when the system's
6872         <netdb.h> has 'struct addrinfo'.
6873         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
6874         EAI_OVERFLOW or AI_NUMERICSERV.
6875         * doc/posix-headers/netdb.texi: Document the problem.
6876
6877 2008-11-15  Bruno Haible  <bruno@clisp.org>
6878
6879         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
6880
6881         Make the 'sched' module work on platforms where <sched.h> exists but
6882         is incomplete (such as Haiku).
6883         * lib/sched.in.h; Include the system's <sched.h> if it exists.
6884         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
6885         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
6886         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
6887         HAVE_STRUCT_SCHED_PARAM.
6888         * modules/sched (Depends-on): Add include_next.
6889         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
6890         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
6891         * doc/posix-headers/sched.texi: Document the issue.
6892
6893 2008-11-13  Jim Meyering  <meyering@redhat.com>
6894
6895         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
6896         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
6897         test would fail due to the difference in the Report bugs to ...
6898         line.  The expected address is empty, "<>", while the actual
6899         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
6900
6901 2008-11-12  Bruno Haible  <bruno@clisp.org>
6902
6903         lstat: don't compile lstat.c on systems lacking lstat
6904         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
6905         which don't have lstat; this is handled by lib/sys_stat.in.h already.
6906         Reported by Daniel P. Berrange via Jim Meyering.
6907
6908 2008-11-12  Jim Meyering  <meyering@redhat.com>
6909
6910         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
6911
6912 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6913
6914         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
6915         instead.
6916
6917 2008-11-12  Bruno Haible  <bruno@clisp.org>
6918
6919         * lib/unicodeio.c: Include unistr.h.
6920         (utf8_wctomb): Remove function.
6921         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
6922
6923 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6924
6925         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
6926         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
6927         <bruno@clisp.org>.
6928         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
6929
6930 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6931
6932         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
6933         * doc/gnulib.texi: Add section for warnings.
6934
6935 2008-11-11  Bruno Haible  <bruno@clisp.org>
6936
6937         * lib/sockets.h: Add a comment.
6938
6939 2008-11-11  Karl Berry  <karl@gnu.org>
6940
6941         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
6942
6943 2008-11-11  Eric Blake  <ebb9@byu.net>
6944
6945         fdl.texi: avoid git symlinks
6946         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
6947
6948 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6949
6950         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
6951
6952 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6953
6954         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
6955         (gl_WARN_ADD): Substitute $2 if literal.
6956
6957 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6958
6959         * m4/warning.m4: Remove.
6960
6961 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6962
6963         * m4/warnings.m4: Almost complete rewrite. :-)
6964
6965 2008-11-10  Simon Josefsson  <simon@josefsson.org>
6966
6967         * modules/warnings: New module.
6968         * m4/warnings.m4: New file.
6969         * MODULES.html.sh: Mention warnings module.
6970         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
6971         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6972
6973 2008-11-10  Eric Blake  <ebb9@byu.net>
6974
6975         fdl.texi: make a symlink to the latest version
6976         * doc/standards.texi: Revert today's earlier change.
6977         * doc/fdl-1.2.texi: Rename from old fdl.texi...
6978         * doc/fdl.texi: ...and replace this with a symlink to the newer
6979         fdl-1.3.texi.
6980
6981 2008-11-10  Bruno Haible  <bruno@clisp.org>
6982
6983         * tests/test-select-fd.c (main): Accept the result file name as fourth
6984         argument.
6985         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
6986         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
6987
6988 2008-11-10  Bruno Haible  <bruno@clisp.org>
6989
6990         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
6991         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
6992         as autoconf-substituted macros.
6993         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
6994         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
6995         gl_NETDB_H_DEFAULTS. Set these variables.
6996         * modules/netdb (Makefile.am): Substitute these variables.
6997
6998 2008-11-10  Eric Blake  <ebb9@byu.net>
6999
7000         standards.texi: include correct file for FDL 1.3
7001         * doc/standards.texi (GNU Free Documentation License): Change
7002         include file to pull in FDL 1.3, not 1.2.
7003
7004         fdl.texi: revert accidental change to license
7005         * doc/fdl.texi: This is FDL 1.2, not 1.3.
7006
7007 2008-11-10  Bruno Haible  <bruno@clisp.org>
7008
7009         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
7010         cross-compiling guesses also when the native compile gives no result.
7011
7012 2008-11-10  Bruno Haible  <bruno@clisp.org>
7013
7014         * lib/spawni.c (__spawni): Force variable into the stack.
7015
7016 2008-11-10  Bruno Haible  <bruno@clisp.org>
7017
7018         Add support for Haiku.
7019         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
7020         glibc and BeOS, but also on Haiku.
7021         * lib/fpurge.c (fpurge): Likewise.
7022         * lib/freadable.c (freadable): Likewise.
7023         * lib/freadahead.c (freadahead): Likewise.
7024         * lib/freading.c (freading): Likewise.
7025         * lib/freadptr.c (freadptr): Likewise.
7026         * lib/freadseek.c (freadptrinc): Likewise.
7027         * lib/fseeko.c (rpl_fseeko): Likewise.
7028         * lib/fseterr.c (fseterr): Likewise.
7029         * lib/fwritable.c (fwritable): Likewise.
7030         * lib/fwriting.c (fwriting): Likewise.
7031         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
7032
7033 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
7034
7035         * lib/config.charset: Treat Haiku like BeOS.
7036
7037 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
7038
7039         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
7040         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
7041
7042 2008-11-08  Bruno Haible  <bruno@clisp.org>
7043
7044         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
7045         AC_CACHE_CHECK.
7046
7047 2008-11-08  Bruno Haible  <bruno@clisp.org>
7048
7049         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
7050
7051 2008-11-08  Bruno Haible  <bruno@clisp.org>
7052
7053         * tests/test-select-fd.c: New file.
7054         * tests/test-select-in.sh: New file.
7055         * tests/test-select-out.sh: New file.
7056         * tests/test-select-stdin.c: New file.
7057         * modules/select-tests (Files): Add the new files.
7058         (Depends-on): Add gettimeofday.
7059         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
7060         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
7061         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
7062
7063 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
7064             Bruno Haible  <bruno@clisp.org>
7065
7066         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
7067
7068 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
7069
7070         * build-aux/pmccabe2html: Added support for C++ source files.
7071
7072 2008-11-05  Ben Pfaff  <blp@gnu.org>
7073
7074         Fix lib/close.c build on Windows.
7075         * modules/close (Files): Add lib/w32sock.h.
7076
7077 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
7078
7079         Accept Bison's NEWS format.
7080         * build-aux/announce-gen (print_news_deltas): Tweak
7081         $re_prefix.
7082
7083 2008-11-04  Bruno Haible  <bruno@clisp.org>
7084
7085         * modules/random_r (Maintainer): Add glibc.
7086
7087 2008-11-04  Simon Josefsson  <simon@josefsson.org>
7088
7089         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
7090         by karl@freefriends.org (Karl Berry).
7091         * doc/alloca.texi: Likewise.
7092         * doc/c-ctype.texi: Likewise.
7093         * doc/c-strcase.texi: Likewise.
7094         * doc/c-strcaseeq.texi: Likewise.
7095         * doc/c-strcasestr.texi: Likewise.
7096         * doc/c-strstr.texi: Likewise.
7097         * doc/c-strtod.texi: Likewise.
7098         * doc/c-strtold.texi: Likewise.
7099         * doc/ctime.texi: Likewise.
7100         * doc/error.texi: Likewise.
7101         * doc/fdl.texi: Likewise.
7102         * doc/gcd.texi: Likewise.
7103         * doc/getdate.texi: Likewise.
7104         * doc/gnulib-intro.texi: Likewise.
7105         * doc/gnulib-tool.texi: Likewise.
7106         * doc/gnulib.texi: Likewise.
7107         * doc/inet_ntoa.texi: Likewise.
7108         * doc/maintain.texi: Likewise.
7109         * doc/make-stds.texi: Likewise.
7110         * doc/quote.texi: Likewise.
7111         * doc/regexprops-generic.texi: Likewise.
7112         * doc/standards.texi: Likewise.
7113         * doc/verify.texi: Likewise.
7114         * doc/visibility.texi: Likewise.
7115         * doc/gnulib.texi (GNU Free Documentation License): Include
7116         fdl-1.3.texi instead of fdl.texi.
7117
7118 2008-11-04  Simon Josefsson  <simon@josefsson.org>
7119
7120         * doc/fdl-1.3.texi: New file, from
7121         <http://www.gnu.org/licenses/fdl-1.3.texi>.
7122         * modules/fdl-1.3: Add.
7123         * MODULES.html.sh: Add fdl-1.3.
7124
7125 2008-11-03  Bruno Haible  <bruno@clisp.org>
7126
7127         Make determination of absolute name of header file work with AIX xlc.
7128         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
7129         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
7130         preprocessing.
7131         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7132         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
7133
7134 2008-11-03  Simon Josefsson  <simon@josefsson.org>
7135
7136         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
7137         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
7138         <ludo@gnu.org>.
7139
7140 2008-11-02  Bruno Haible  <bruno@clisp.org>
7141
7142         Mark 'strpbrk' obsolete.
7143         * modules/strpbrk (Status, Notice): New sections.
7144         * modules/strtok_r (Depends-on): Add strpbrk.
7145
7146 2008-11-02  Bruno Haible  <bruno@clisp.org>
7147
7148         Mark 'strdup' obsolete.
7149         * modules/strdup (Status, Notice): New sections.
7150         * modules/findprog (Depends-on): Add strdup.
7151         * modules/getaddrinfo (Depends-on): Likewise.
7152         * modules/localename (Depends-on): Likewise.
7153         * modules/relocatable-lib (Depends-on): Likewise.
7154         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
7155         * modules/relocatable-prog (Depends-on): Likewise.
7156         * modules/trim (Depends-on): Likewise.
7157         * modules/unictype/gen-ctype (Depends-on): Likewise.
7158         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
7159
7160 2008-11-02  Bruno Haible  <bruno@clisp.org>
7161
7162         Mark 'strcspn' obsolete.
7163         * modules/strcspn (Status, Notice): New sections.
7164
7165 2008-11-02  Bruno Haible  <bruno@clisp.org>
7166
7167         Mark 'rmdir' obsolete.
7168         * modules/rmdir (Status, Notice): New sections.
7169         * modules/clean-temp (Depends-on): Add rmdir.
7170         * modules/openat (Depends-on): Likewise.
7171
7172 2008-11-02  Bruno Haible  <bruno@clisp.org>
7173
7174         Mark 'raise' obsolete.
7175         * modules/raise (Status, Notice): New sections.
7176         (Include): Specify <signal.h>.
7177         * modules/stdio (Depends-on): Add raise.
7178         * modules/write (Depends-on): Likewise.
7179
7180 2008-11-02  Bruno Haible  <bruno@clisp.org>
7181
7182         Mark 'memset' obsolete.
7183         * modules/memset (Status, Notice): New sections.
7184
7185 2008-11-02  Bruno Haible  <bruno@clisp.org>
7186
7187         Mark 'memmove' obsolete.
7188         * modules/memmove (Status, Notice): New sections.
7189         * modules/argp (Depends-on): Add memmove.
7190         * modules/argz (Depends-on): Likewise.
7191         * modules/canonicalize (Depends-on): Likewise.
7192         * modules/canonicalize-lgpl (Depends-on): Likewise.
7193         * modules/fts (Depends-on): Likewise.
7194         * modules/getcwd (Depends-on): Likewise.
7195         * modules/human (Depends-on): Likewise.
7196         * modules/regex (Depends-on): Likewise.
7197         * modules/striconveh (Depends-on): Likewise.
7198         * modules/trim (Depends-on): Likewise.
7199         * modules/unistr/u8-move (Depends-on): Likewise.
7200         * modules/unistr/u16-move (Depends-on): Likewise.
7201         * modules/unistr/u32-move (Depends-on): Likewise.
7202
7203 2008-11-02  Bruno Haible  <bruno@clisp.org>
7204
7205         Mark 'memcpy' obsolete.
7206         * modules/memcpy (Status, Notice): New sections.
7207
7208 2008-11-02  Bruno Haible  <bruno@clisp.org>
7209
7210         Mark 'memcmp' obsolete.
7211         * modules/memcmp (Status, Notice): New sections.
7212         * modules/argmatch (Depends-on): Add memchr.
7213         * modules/backupfile (Depends-on): Likewise.
7214         * modules/c-strcasestr (Depends-on): Likewise.
7215         * modules/crypto/des (Depends-on): Likewise.
7216         * modules/csharpcomp (Depends-on): Likewise.
7217         * modules/fnmatch (Depends-on): Likewise.
7218         * modules/git-merge-changelog (Depends-on): Likewise.
7219         * modules/isnand (Depends-on): Likewise.
7220         * modules/isnand-nolibm (Depends-on): Likewise.
7221         * modules/isnanf (Depends-on): Likewise.
7222         * modules/isnanf-nolibm (Depends-on): Likewise.
7223         * modules/isnanl (Depends-on): Likewise.
7224         * modules/isnanl-nolibm (Depends-on): Likewise.
7225         * modules/mbchar (Depends-on): Likewise.
7226         * modules/memcoll (Depends-on): Likewise.
7227         * modules/quotearg (Depends-on): Likewise.
7228         * modules/regex (Depends-on): Likewise.
7229         * modules/relocatable-prog (Depends-on): Likewise.
7230         * modules/same (Depends-on): Likewise.
7231         * modules/signbit (Depends-on): Likewise.
7232         * modules/strcasestr-simple (Depends-on): Likewise.
7233         * modules/unictype/gen-ctype (Depends-on): Likewise.
7234         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
7235         * modules/uniname/uniname (Depends-on): Likewise.
7236         * modules/unistr/u8-cmp (Depends-on): Likewise.
7237
7238 2008-11-02  Bruno Haible  <bruno@clisp.org>
7239
7240         Mark 'memchr' obsolete.
7241         * modules/memchr (Status, Notice): New sections.
7242         * modules/argp (Depends-on): Add memchr.
7243         * modules/base64 (Depends-on): Likewise.
7244         * modules/c-strcasestr (Depends-on): Likewise.
7245         * modules/chdir-long (Depends-on): Likewise.
7246         * modules/fnmatch (Depends-on): Likewise.
7247         * modules/getsubopt (Depends-on): Likewise.
7248         * modules/git-merge-changelog (Depends-on): Likewise.
7249         * modules/glob (Depends-on): Likewise.
7250         * modules/strcasestr-simple (Depends-on): Likewise.
7251         * modules/strnlen (Depends-on): Likewise.
7252
7253 2008-11-02  Bruno Haible  <bruno@clisp.org>
7254
7255         Mark 'atexit' obsolete.
7256         * modules/atexit (Status, Notice): New sections.
7257         * modules/chdir-long (Depends-on): Add atexit.
7258         * modules/wait-process (Depends-on): Likewise.
7259
7260 2008-11-02  Bruno Haible  <bruno@clisp.org>
7261
7262         * gnulib-tool: New option --with-obsolete.
7263         (func_usage): Document it.
7264         (func_modules_transitive_closure): Drop obsolete dependencies if
7265         incobsolete is not true.
7266         (func_import): Read and save the incobsolete variable to the cache.
7267
7268 2008-11-02  Bruno Haible  <bruno@clisp.org>
7269
7270         * modules/TEMPLATE-EXTENDED: New field 'Status'.
7271         * gnulib-tool: New option --extract-status.
7272         (func_usage): Document it.
7273         (sed_extract_prog): Recognize it.
7274         (func_get_status): New function.
7275
7276 2008-10-30  Simon Josefsson  <simon@josefsson.org>
7277
7278         * modules/sockets (License): Change from LGPL to LGPLv2+.
7279
7280 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7281
7282         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
7283
7284 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7285
7286         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7287         Mention times and sys_times.
7288         * modules/sys_times, modules/sys_times-tests: New modules.
7289         * modules/times, modules/times-tests: Likewise
7290         * m4/sys_times_h.m4: New file.
7291         * lib/sys_times.in.h: Likewise
7292         * lib/times.c: Likewise.
7293         * tests/test-sys_times.c: Likewise.
7294         * tests/test-times.c: Likewise.
7295         * doc/posix-headers/sys_times.texi: Update.
7296         * doc/posix-functions/times.texi: Update.
7297
7298 2008-10-28  Jim Meyering  <meyering@redhat.com>
7299
7300         * modules/tempname (Depends-on): Add lstat.
7301
7302         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
7303
7304 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7305
7306         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
7307         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
7308         using idiom used elsewhere in gnulib.
7309
7310 2008-10-27  Jim Meyering  <meyering@redhat.com>
7311
7312         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
7313
7314 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7315
7316         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
7317         TESTS_ENVIRONMENT, for shell scripts that needs to call built
7318         programs.
7319         * tests/test-argp-2.sh: Use $EXEEXT when needed.
7320
7321 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7322
7323         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
7324
7325 2008-10-27  Bruno Haible  <bruno@clisp.org>
7326
7327         * tests/test-lstat.c: Include <stdio.h>.
7328
7329 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7330
7331         * modules/lstat-tests: New module.
7332         * tests/test-lstat.c: New file.
7333
7334 2008-10-26  Jim Meyering  <meyering@redhat.com>
7335
7336         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
7337
7338 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7339             Bruno Haible  <bruno@clisp.org>
7340
7341         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
7342         * modules/configmake (Include): Add a note that the include must come
7343         after all system headers.
7344         * lib/javaversion.c: Include configmake.h after all other includes.
7345
7346 2008-10-26  Bruno Haible  <bruno@clisp.org>
7347
7348         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
7349         HAVE_STRUCT_RANDOM_DATA to 1.
7350         (gl_STDLIB_H): Simplify.
7351
7352 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7353
7354         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
7355         substitute HAVE_STRUCT_RANDOM_DATA.
7356         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
7357         random_data.
7358         * modules/stdlib (Makefile.am): Substitute
7359         HAVE_STRUCT_RANDOM_DATA.
7360
7361 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7362
7363         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
7364         * doc/gnulib-intro.texi (Copyright): Likewise.
7365
7366 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7367
7368         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
7369         findings.
7370
7371 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
7372             Bruno Haible  <bruno@clisp.org>
7373
7374         * lib/unistd.in.h: Include <winsock2.h>.
7375         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
7376         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
7377         Provide dummy declarations.
7378         (gethostname): Override.
7379         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
7380         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
7381         gl_PREREQ_SYS_H_WINSOCK2.
7382         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
7383         * doc/posix-functions/gethostname.texi: More details.
7384
7385 2008-10-25  Bruno Haible  <bruno@clisp.org>
7386
7387         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
7388         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
7389         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
7390
7391         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
7392         here ...
7393         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
7394         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
7395         gl_UNISTD_H_DEFAULTS.
7396
7397 2008-10-25  Eric Blake  <ebb9@byu.net>
7398
7399         signbit: avoid spurious compiler failure
7400         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
7401         declarations inside function.
7402
7403 2008-10-24  Simon Josefsson  <simon@josefsson.org>
7404             Bruno Haible  <bruno@clisp.org>
7405
7406         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
7407         * modules/random_r (Depends-on): Add stdint.
7408
7409 2008-10-24  Bruno Haible  <bruno@clisp.org>
7410
7411         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
7412         Eggert.
7413         * modules/strerror (License): Likewise.
7414
7415 2008-10-24  Jim Meyering  <meyering@redhat.com>
7416
7417         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
7418         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
7419
7420 2008-10-24  Eric Blake  <ebb9@byu.net>
7421
7422         getgroups: fix compilation when getgroups is available
7423         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
7424         but with <config.h> override of getgroups disabled.
7425
7426 2008-10-24  Simon Josefsson  <simon@josefsson.org>
7427
7428         * doc/gnulib.texi (Header files): Add note about C++ problems.
7429         Explained by Bruno Haible <bruno@clisp.org>.
7430
7431 2008-10-23  Bruno Haible  <bruno@clisp.org>
7432
7433         Define a dummy SA_NODEFER macro on Interix.
7434         * lib/signal.in.h (SA_NODEFER): Define fallback.
7435         Reported by Aleksey Cheusov <cheusov@tut.by> via
7436         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
7437
7438 2008-10-23  Bruno Haible  <bruno@clisp.org>
7439
7440         * modules/freadahead (License): Change to LGPLv2+.
7441         Suggested by Simon Josefsson.
7442
7443 2008-10-23  Jim Meyering  <meyering@redhat.com>
7444
7445         random_r: new module
7446         * modules/random_r: New file.
7447         * m4/random_r.m4: New file.
7448         * lib/random_r.c: New file, from glibc.
7449         * modules/random_r-tests: New file.
7450         * tests/test-random_r.c: New file.
7451         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
7452          Declare.
7453         (RAND_MAX): Define.
7454         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
7455         * modules/stdlib: Substitute them, too.
7456         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
7457         * doc/glibc-functions/initstate_r.texi: Mention the new module.
7458         * doc/glibc-functions/random_r.texi: Likewise.
7459         * doc/glibc-functions/setstate_r.texi: Likewise.
7460         * doc/glibc-functions/srandom_r.texi: Likewise.
7461         * config/srclist.txt: Mention it.
7462
7463 2008-10-23  David Lutterkort  <lutter@redhat.com>
7464
7465         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
7466         link requirement
7467
7468 2008-10-23  Jim Meyering  <meyering@redhat.com>
7469
7470         selinux-h: mark parameters of stub functions as intentionally unused
7471         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
7472         * lib/se-context.in.h: Likewise.
7473
7474 2008-10-22  Simon Josefsson  <simon@josefsson.org>
7475
7476         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
7477
7478 2008-10-22  Simon Josefsson  <simon@josefsson.org>
7479
7480         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
7481
7482 2008-10-22  Eric Blake  <ebb9@byu.net>
7483
7484         glthread/thread: avoid compiler warning
7485         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
7486         Add unreachable abort to silence compiler.
7487
7488 2008-10-22  Eric Blake  <ebb9@byu.net>
7489
7490         netdb: also supply struct addrinfo for cygwin 1.5.x
7491         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
7492         older cygwin.
7493         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
7494         cygwin.
7495         * doc/posix-headers/netdb.texi (netdb.h): Document this.
7496
7497 2008-10-22  Bruno Haible  <bruno@clisp.org>
7498
7499         * users.txt: Update entry about pspp.
7500
7501 2008-10-21  Bruno Haible  <bruno@clisp.org>
7502
7503         Simplification.
7504         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
7505         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
7506
7507         Simplification.
7508         * lib/ioctl.c (ioctl): Don't undefine.
7509         * lib/socket.c (socket): Don't undefine.
7510
7511         Remove unused module indicator macros.
7512         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
7513         GNULIB_$1 as a C macro.
7514
7515         * doc/posix-functions/close.texi: Undo last change.
7516         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
7517         Windows platforms.
7518
7519 2008-10-21  Bruno Haible  <bruno@clisp.org>
7520
7521         Add gethostname() declaration to <unistd.h>.
7522         * lib/unistd.in.h (gethostname): New declaration.
7523         * lib/gethostname.c: Include <unistd.h>.
7524         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
7525         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
7526         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
7527         and HAVE_GETHOSTNAME.
7528         * modules/gethostname (Depends-on): Add unistd.
7529         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7530         (Include): Specify <unistd.h>.
7531         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
7532         HAVE_GETHOSTNAME.
7533         * tests/test-gethostname.c: Include <unistd.h> first.
7534
7535 2008-10-21  Bruno Haible  <bruno@clisp.org>
7536
7537         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
7538         * modules/select-tests (Depends-on): Likewise.
7539         Reported by Simon Josefsson.
7540
7541 2008-10-21  Simon Josefsson  <simon@josefsson.org>
7542
7543         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
7544         * lib/accept.c: New file, based on winsock.c.
7545         * lib/bind.c: New file, based on winsock.c.
7546         * lib/connect.c: New file, based on winsock.c.
7547         * lib/getpeername.c: New file, based on winsock.c.
7548         * lib/getsockname.c: New file, based on winsock.c.
7549         * lib/getsockopt.c: New file, based on winsock.c.
7550         * lib/ioctl.c: New file, based on winsock.c.
7551         * lib/listen.c: New file, based on winsock.c.
7552         * lib/recv.c: New file, based on winsock.c.
7553         * lib/recvfrom.c: New file, based on winsock.c.
7554         * lib/send.c: New file, based on winsock.c.
7555         * lib/sendto.c: New file, based on winsock.c.
7556         * lib/setsockopt.c: New file, based on winsock.c.
7557         * lib/shutdown.c: New file, based on winsock.c.
7558         * lib/socket.c: New file, based on winsock.c.
7559         * lib/w32sock.h: New file, based on winsock.c.
7560         * lib/winsock.c: Remove file.
7561         * modules/accept: Likewise.
7562         * modules/bind: Likewise.
7563         * modules/connect: Likewise.
7564         * modules/getpeername: Likewise.
7565         * modules/getsockname: Likewise.
7566         * modules/getsockopt: Likewise.
7567         * modules/ioctl: Likewise.
7568         * modules/listen: Likewise.
7569         * modules/recv: Likewise.
7570         * modules/recvfrom: Likewise.
7571         * modules/send: Likewise.
7572         * modules/sendto: Likewise.
7573         * modules/setsockopt: Likewise.
7574         * modules/shutdown: Likewise.
7575         * modules/socket: Use socket.c instead of winsock.c.
7576         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
7577         * doc/posix-functions/accept.texi: Doc fix.
7578         * doc/posix-functions/bind.texi: Doc fix.
7579         * doc/posix-functions/close.texi: Doc fix.
7580         * doc/posix-functions/connect.texi: Doc fix.
7581         * doc/posix-functions/getpeername.texi: Doc fix.
7582         * doc/posix-functions/getsockname.texi: Doc fix.
7583         * doc/posix-functions/getsockopt.texi: Doc fix.
7584         * doc/posix-functions/ioctl.texi: Doc fix.
7585         * doc/posix-functions/listen.texi: Doc fix.
7586         * doc/posix-functions/recv.texi: Doc fix.
7587         * doc/posix-functions/recvfrom.texi: Doc fix.
7588         * doc/posix-functions/send.texi: Doc fix.
7589         * doc/posix-functions/sendto.texi: Doc fix.
7590         * doc/posix-functions/setsockopt.texi: Doc fix.
7591         * doc/posix-functions/shutdown.texi: Doc fix.
7592         * doc/posix-functions/socket.texi: Doc fix.
7593
7594 2008-10-20  Bruno Haible  <bruno@clisp.org>
7595
7596         Take into account the role of SIGABRT_COMPAT on Windows 2008.
7597         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
7598         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
7599         as an alias for SIGABRT.
7600         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
7601         (sigaction): Map it to SIGABRT.
7602         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
7603
7604 2008-10-20  Bruno Haible  <bruno@clisp.org>
7605
7606         * lib/fts.c: Don't include lstat.h.
7607         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
7608
7609         Move the lstat() declaration to <sys/stat.h>.
7610         * lib/lstat.h: Remove file.
7611         * lib/sys_stat.in.h: Add special invocation convention.
7612         (lstat): New declaration.
7613         * lib/lstat.c (orig_lstat): New function.
7614         (rpl_lstat): Use orig_lstat instead of lstat.
7615         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
7616         AC_C_INLINE. Set REPLACE_LSTAT.
7617         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
7618         and REPLACE_LSTAT.
7619         * modules/lstat (Files): Remove lib/lstat.h.
7620         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
7621         (Include): Specify <sys/stat.h> instead of lstat.h.
7622         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
7623         REPLACE_LSTAT.
7624         * NEWS: Mention the change.
7625
7626 2008-10-20  Bruno Haible  <bruno@clisp.org>
7627
7628         * modules/posix_spawn-tests: New file.
7629         * tests/test-posix_spawn3.c: New file.
7630
7631 2008-10-20  Bruno Haible  <bruno@clisp.org>
7632
7633         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
7634         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
7635         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
7636         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
7637         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
7638
7639 2008-10-20  Bruno Haible  <bruno@clisp.org>
7640
7641         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
7642         of posix_spawn on AIX 5.3.
7643
7644 2008-10-20  Bruno Haible  <bruno@clisp.org>
7645
7646         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
7647
7648 2008-10-20  Bruno Haible  <bruno@clisp.org>
7649
7650         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
7651         of AC_LANG_PROGRAM.
7652
7653 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7654
7655         * lib/netdb.in.h: Don't define GNU specific constants until they
7656         are supported or needed.  Reported by Bruno Haible
7657         <bruno@clisp.org>.
7658
7659 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7660
7661         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
7662
7663 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7664
7665         * lib/getaddrinfo.h: Remove file.
7666         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
7667         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
7668         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
7669         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
7670         * modules/netdb: Substitute GNULIB_GETADDRINFO.
7671         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
7672         * tests/test-getaddrinfo.c: Likewise.
7673         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
7674         * NEWS: Mention change.
7675
7676 2008-10-19  Bruno Haible  <bruno@clisp.org>
7677
7678         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
7679
7680 2008-10-19  Bruno Haible  <bruno@clisp.org>
7681
7682         * lib/wait-process.c: Include simply <sys/wait.h>.
7683         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
7684         WIFSTOPPED): Remove fallback definitions.
7685         * modules/wait-process (Depends-on): Add sys_wait.
7686
7687         New module 'sys_wait'.
7688         * modules/sys_wait: New file.
7689         * lib/sys_wait.in.h: New file, partially copied from
7690         lib/wait-process.c.
7691         * m4/sys_wait_h.m4: New file.
7692         * doc/posix-headers/sys_wait.texi: Mention the new module.
7693
7694 2008-10-19  Bruno Haible  <bruno@clisp.org>
7695
7696         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
7697
7698 2008-10-19  Bruno Haible  <bruno@clisp.org>
7699
7700         Assume that waitpid() fills an 'int' status, not a 'union wait'.
7701         * lib/wait-process.c (WAIT_T): Remove type.
7702         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
7703         (wait_subprocess): Update.
7704
7705 2008-10-19  Bruno Haible  <bruno@clisp.org>
7706
7707         New module 'atoll'.
7708         * modules/atoll: New file.
7709         * lib/stdlib.in.h (atoll): New declaration.
7710         * lib/atoll.c: New file, from glibc with modifications.
7711         * m4/atoll.m4: New file.
7712         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
7713         HAVE_ATOLL.
7714         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
7715         * doc/posix-functions/atoll.texi: Mention the new module.
7716
7717 2008-10-19  Bruno Haible  <bruno@clisp.org>
7718
7719         Add strtoull() declaration to <stdlib.h>.
7720         * lib/stdlib.in.h (strtoull): New declaration.
7721         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
7722         Set HAVE_STRTOULL.
7723         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
7724         HAVE_STRTOULL.
7725         * modules/strtoull (Depends-on): Add stdlib.
7726         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7727         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
7728         HAVE_STRTOULL.
7729
7730 2008-10-19  Bruno Haible  <bruno@clisp.org>
7731
7732         Add strtoll() declaration to <stdlib.h>.
7733         * lib/stdlib.in.h (strtoll): New declaration.
7734         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
7735         Set HAVE_STRTOLL.
7736         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
7737         HAVE_STRTOLL.
7738         * modules/strtoll (Depends-on): Add stdlib.
7739         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7740         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
7741
7742 2008-10-19  Bruno Haible  <bruno@clisp.org>
7743
7744         * modules/bcopy (Depends-on): Add strings.
7745         (Include): Specify <strings.h>.
7746
7747 2008-10-19  Bruno Haible  <bruno@clisp.org>
7748
7749         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
7750
7751 2008-10-19  Bruno Haible  <bruno@clisp.org>
7752
7753         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
7754         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
7755         mingw.
7756
7757 2008-10-19  Bruno Haible  <bruno@clisp.org>
7758
7759         * lib/atanl.c: Don't include isnanl.h.
7760         * lib/cosl.c: Likewise.
7761         * lib/ldexpl.c: Likewise.
7762         * lib/logl.c: Likewise.
7763         * lib/sinl.c: Likewise.
7764         * lib/sqrtl.c: Likewise.
7765         * lib/tanl.c: Likewise.
7766
7767         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
7768         * lib/isnanf.h: Remove file.
7769         * lib/isnand.h: Remove file.
7770         * lib/isnanl.h: Remove file.
7771         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
7772         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
7773         macros.
7774         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
7775         HAVE_ISNANF, don't define it as a C macro.
7776         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
7777         HAVE_ISNAND, don't define it as a C macro.
7778         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
7779         HAVE_ISNANL, don't define it as a C macro.
7780         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
7781         HAVE_ISNAN[FDL].
7782         * modules/isnanf (Files): Remove lib/isnanf.h.
7783         (Depends-on): Add math.
7784         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7785         (Include): Specify <math.h> instead of isnanf.h.
7786         * modules/isnand (Files): Remove lib/isnand.h.
7787         (Depends-on): Add math.
7788         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7789         (Include): Specify <math.h> instead of isnand.h.
7790         * modules/isnanl (Files): Remove lib/isnanl.h.
7791         (Depends-on): Add math.
7792         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7793         (Include): Specify <math.h> instead of isnanl.h.
7794         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
7795         HAVE_ISNAN[FDL].
7796         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
7797         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
7798         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
7799         * NEWS: Mention the change.
7800
7801 2008-10-18  Bruno Haible  <bruno@clisp.org>
7802
7803         Add getusershell(), setusershell(), endusershell() declarations to
7804         <unistd.h>.
7805         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
7806         declarations.
7807         * lib/getusershell.c: Include unistd.h.
7808         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
7809         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
7810         HAVE_GETUSERSHELL.
7811         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
7812         and HAVE_GETUSERSHELL.
7813         * modules/getusershell (Depends-on): Add unistd, extensions.
7814         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7815         (Include): Specify <unistd.h>.
7816         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
7817         HAVE_GETUSERSHELL.
7818
7819 2008-10-18  Bruno Haible  <bruno@clisp.org>
7820
7821         Add a getloadavg() declaration to <stdlib.h>.
7822         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
7823         getloadavg declaration.
7824         (getloadavg): New declaration.
7825         * lib/getloadavg.c: Include <stdlib.h> first.
7826         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
7827         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
7828         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
7829         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
7830         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
7831         * modules/getloadavg (Depends-on): Add stdlib, extensions.
7832         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7833         (Include): Specify <stdlib.h>.
7834         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
7835         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
7836
7837 2008-10-18  Bruno Haible  <bruno@clisp.org>
7838
7839         * lib/dirchownmod.c: Don't include lchmod.h.
7840
7841         Move the lchmod() declaration to <sys/stat.h>.
7842         * lib/lchmod.h: Remove file.
7843         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
7844         (lchmod): New declaration, moved here from lib/lchown.h.
7845         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
7846         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
7847         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
7848         and HAVE_LCHMOD.
7849         * modules/lchmod (Files): Remove lib/lchmod.h.
7850         (Depends-on): Add sys_stat, extensions.
7851         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
7852         (Include): Specify <sys/stat.h> instead of lchmod.h.
7853         * modules/sys_stat (Depends-on): Add link-warning.
7854         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
7855         definition of GL_LINK_WARNING.
7856         * NEWS: Mention the change.
7857
7858 2008-10-18  Bruno Haible  <bruno@clisp.org>
7859
7860         * lib/fchdir.c: Don't include dirfd.h.
7861         * lib/fts.c: Likewise.
7862         * lib/getcwd.c: Likewise.
7863         * lib/glob.c: Likewise.
7864
7865         Move the dirfd() declaration to <dirent.h>.
7866         * lib/dirfd.h: Remove file.
7867         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
7868         (dirfd): New declaration.
7869         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
7870         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
7871         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
7872         HAVE_DECL_DIRFD.
7873         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
7874         HAVE_DECL_DIRFD.
7875         * modules/dirfd (Files): Remove lib/dirfd.h.
7876         (Depends-on): Add dirent, extensions.
7877         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
7878         (Include): Specify <dirent.h> instead of dirfd.h.
7879         * modules/dirent (Depends-on): Add link-warning.
7880         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
7881         definition of GL_LINK_WARNING.
7882         * NEWS: Mention the change.
7883
7884 2008-10-18  Bruno Haible  <bruno@clisp.org>
7885
7886         Move the euidaccess() declaration to <unistd.h>.
7887         * lib/euidaccess.h: Remove file.
7888         * lib/unistd.in.h (euidaccess): New declaration.
7889         * lib/euidaccess.c: Don't include euidaccess.h.
7890         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
7891         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
7892         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
7893         and HAVE_EUIDACCESS.
7894         * modules/euidaccess (Files): Remove lib/euidaccess.h.
7895         (Depends-on): Add unistd.
7896         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7897         (Include): Specify <unistd.h> instead of euidaccess.h.
7898         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
7899         HAVE_EUIDACCESS.
7900         * NEWS: Mention the change.
7901
7902 2008-10-18  Bruno Haible  <bruno@clisp.org>
7903
7904         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
7905
7906         Move the getdomainname() declaration to <unistd.h>.
7907         * lib/getdomainname.h: Remove file.
7908         * lib/unistd.in.h (getdomainname): New declaration.
7909         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
7910         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
7911         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
7912         HAVE_GETDOMAINNAME.
7913         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
7914         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
7915         * modules/getdomainname (Files): Remove lib/getdomainname.h.
7916         (Depends-on): Add unistd, extensions.
7917         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7918         (Includes): Specify <unistd.h> instead of getdomainname.h.
7919         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
7920         HAVE_GETDOMAINNAME.
7921         * NEWS: Mention the change.
7922
7923 2008-10-18  Bruno Haible  <bruno@clisp.org>
7924
7925         * modules/dirent: New file.
7926         * m4/dirent_h.m4: New file.
7927         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
7928         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
7929         * modules/fchdir (Files): Remove lib/dirent.in.h.
7930         (Depends-on): Add dirent.
7931         (Makefile.am): Move rules to modules/dirent.
7932         * doc/posix-headers/dirent.texi: Mention the new module.
7933
7934 2008-10-18  Bruno Haible  <bruno@clisp.org>
7935
7936         Avoid -Wunused-parameter warnings in public gnulib header files.
7937         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
7938         macro.
7939         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
7940
7941 2008-10-18  Bruno Haible  <bruno@clisp.org>
7942
7943         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
7944         * doc/glibc-functions/error.texi: Mention the module 'error'.
7945         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
7946         * doc/glibc-functions/getdomainname.texi: Mention the module
7947         'getdomainname'.
7948         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
7949         * doc/glibc-functions/getpagesize.texi: Mention the module
7950         'getpagesize'.
7951         * doc/glibc-functions/getusershell.texi: Mention the module
7952         'getusershell'.
7953         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
7954         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
7955         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
7956         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
7957         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
7958         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
7959         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
7960         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
7961         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
7962         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
7963         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
7964         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
7965         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
7966         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
7967
7968 2008-10-17  Bruno Haible  <bruno@clisp.org>
7969
7970         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
7971         HP-UX and IRIX, use -0.0L.
7972         * tests/test-ceill.c (minus_zero): Likewise.
7973         * tests/test-floorl.c (minus_zero): Likewise.
7974         * tests/test-frexpl.c (minus_zero): Likewise.
7975         * tests/test-isnan.c (minus_zerol): Likewise.
7976         * tests/test-isnanl.h (minus_zero): Likewise.
7977         * tests/test-ldexpl.c (minus_zero): Likewise.
7978         * tests/test-roundl.c (minus_zero): Likewise.
7979         * tests/test-signbit.c (minus_zerol): Likewise.
7980         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
7981         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
7982         * tests/test-truncl.c (minus_zero): Likewise.
7983         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
7984         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
7985         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
7986         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
7987
7988 2008-10-17  Bruno Haible  <bruno@clisp.org>
7989
7990         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
7991         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
7992         that it gets activated only for gcc >= 3.0.
7993         * lib/dirent.in.h: Likewise.
7994         * lib/errno.in.h: Likewise.
7995         * lib/fcntl.in.h: Likewise.
7996         * lib/float.in.h: Likewise.
7997         * lib/iconv.in.h: Likewise.
7998         * lib/inttypes.in.h: Likewise.
7999         * lib/locale.in.h: Likewise.
8000         * lib/math.in.h: Likewise.
8001         * lib/netdb.in.h: Likewise.
8002         * lib/netinet_in.in.h: Likewise.
8003         * lib/search.in.h: Likewise.
8004         * lib/signal.in.h: Likewise.
8005         * lib/spawn.in.h: Likewise.
8006         * lib/stdarg.in.h: Likewise.
8007         * lib/stdint.in.h: Likewise.
8008         * lib/stdio.in.h: Likewise.
8009         * lib/stdlib.in.h: Likewise.
8010         * lib/string.in.h: Likewise.
8011         * lib/strings.in.h: Likewise.
8012         * lib/sys_file.in.h: Likewise.
8013         * lib/sys_ioctl.in.h: Likewise.
8014         * lib/sys_select.in.h: Likewise.
8015         * lib/sys_socket.in.h: Likewise.
8016         * lib/sys_stat.in.h: Likewise.
8017         * lib/sys_time.in.h: Likewise.
8018         * lib/sysexits.in.h: Likewise.
8019         * lib/time.in.h: Likewise.
8020         * lib/unistd.in.h: Likewise.
8021         * lib/wchar.in.h: Likewise.
8022         * lib/wctype.in.h: Likewise.
8023         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
8024
8025 2008-10-17  Jim Meyering  <meyering@redhat.com>
8026
8027         ignore-value: don't depend on inline module
8028         * modules/ignore-value (Depends-on): Remove 'inline'.
8029         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
8030         Suggestion from Bruno Haible.
8031
8032 2008-10-17  Bruno Haible  <bruno@clisp.org>
8033
8034         New implementation of condition variables for Win32.
8035         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
8036         (gl_linked_waitqueue_t): New type.
8037         (gl_cond_t): Use it.
8038         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
8039         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
8040         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
8041         (glthread_cond_init_func, glthread_cond_wait_func,
8042         glthread_cond_timedwait_func, glthread_cond_signal_func,
8043         glthread_cond_broadcast_func, glthread_cond_destroy_func):
8044         Reimplemented on the basis of gl_linked_waitqueue_t.
8045         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
8046         gl_waitqueue_t.
8047         (gl_rwlock_t): Update.
8048         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
8049
8050 2008-10-17  Simon Josefsson  <simon@josefsson.org>
8051
8052         * modules/recvfrom (Depends-on): Add dependency on getpeername.
8053         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
8054
8055 2008-10-17  Jim Meyering  <meyering@redhat.com>
8056
8057         ignore-value: new module
8058         * modules/ignore-value: New file.
8059         * lib/ignore-value.h: New file.
8060         * MODULES.html.sh (Compiler warning management): New section,
8061         just for this module.  More to come.
8062
8063 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8064
8065         open-safer.c: avoid 'signed and unsigned in conditional...' warning
8066         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
8067         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
8068
8069 2008-10-16  Jim Meyering  <meyering@redhat.com>
8070
8071         openat-die.c: avoid 'no previous prototype' warning
8072         * lib/openat-die.c: Include "openat.h".
8073         Reported by Reuben Thomas <rrt@sc3d.org>.
8074
8075 2008-10-16  Simon Josefsson  <simon@josefsson.org>
8076
8077         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
8078         * lib/netdb.in.h: Fix typo.
8079         Reported by Bruno Haible  <bruno@clisp.org>
8080
8081         * lib/netdb.in.h: Include sys/socket.h for platforms without
8082         netdb.h, to get structures like hostent on MinGW.
8083         * modules/netdb (Depends-on): Add sys_socket.
8084
8085 2008-10-15  Simon Josefsson  <simon@josefsson.org>
8086
8087         * modules/netdb, modules/netdb-tests: New file.
8088         * m4/netdb_h.m4: New file.
8089         * lib/netdb.in.h: Add, currently just an empty file pending
8090         definitions.
8091         * tests/test-netdb.c: New file.
8092         * doc/posix-headers/netdb.texi: Mention that we replace it if
8093         needed.
8094         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
8095         netdb.
8096
8097 2008-10-15  Simon Josefsson  <simon@josefsson.org>
8098
8099         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
8100         with code.
8101
8102 2008-10-13  Bruno Haible  <bruno@clisp.org>
8103
8104         * lib/glthread/cond.c (glthread_cond_wait_func,
8105         glthread_cond_timedwait_func): Add a comment.
8106
8107 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
8108
8109         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
8110         * tests/test-select.c: Likewise,
8111
8112 2008-10-13  Bruno Haible  <bruno@clisp.org>
8113
8114         * lib/glthread/cond.c (glthread_cond_wait_func,
8115         glthread_cond_timedwait_func): Fix variable name.
8116         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
8117
8118 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
8119
8120         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
8121         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
8122         struct sockaddr.sa_len.
8123         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
8124
8125 2008-10-13  Simon Josefsson  <simon@josefsson.org>
8126
8127         * build-aux/pmccabe2html: Add css and css_url parameters.
8128
8129 2008-10-12  Bruno Haible  <bruno@clisp.org>
8130
8131         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
8132         calling aclx_get.
8133         Reported by Rainer Tammer <tammer@tammer.net>.
8134
8135 2008-10-12  Bruno Haible  <bruno@clisp.org>
8136
8137         Use msvcrt aware primitives for creation/termination of Win32 threads.
8138         * lib/glthread/thread.c: Include <process.h>.
8139         (glthread_create_func): Use _beginthreadex instead of CreateThread.
8140         (wrapper_func): Update signature.
8141         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
8142
8143 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
8144             Bruno Haible  <bruno@clisp.org>
8145
8146         Provide a Win32 implementation of the 'cond' module.
8147         * lib/glthread/cond.h [USE_WIN32]: New implementation.
8148         * lib/glthread/cond.c (glthread_cond_init_func,
8149         glthread_cond_wait_func, glthread_cond_timedwait_func,
8150         glthread_cond_signal_func, glthread_cond_broadcast_func,
8151         glthread_cond_destroy_func) [USE_WIN32]: New functions.
8152         * modules/cond (Dependencies): Add gettimeofday.
8153
8154 2008-10-11  Bruno Haible  <bruno@clisp.org>
8155
8156         Make sleep work on older versions of mingw.
8157         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
8158         only whether it exists.
8159         * doc/posix-functions/sleep.texi: Mention the problem with older
8160         versions of mingw.
8161
8162 2008-10-11  Bruno Haible  <bruno@clisp.org>
8163
8164         New module 'shutdown'.
8165         * modules/shutdown: New file.
8166         * lib/sys_socket.in.h (shutdown): New declaration.
8167         * lib/winsock.c (shutdown): New function.
8168         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
8169         GNULIB_SHUTDOWN.
8170         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
8171         * doc/posix-functions/shutdown.texi: Document the new module.
8172
8173 2008-10-11  Jim Meyering  <meyering@redhat.com>
8174
8175         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
8176
8177 2008-10-11  Bruno Haible  <bruno@clisp.org>
8178
8179         New module 'fclose'.
8180         * modules/fclose: New file.
8181         * lib/stdio.in.h (fclose): New declaration.
8182         * lib/fclose.c: New file.
8183         * m4/fclose.m4: New file.
8184         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
8185         REPLACE_FCLOSE.
8186         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
8187         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
8188         REPLACE_FCLOSE.
8189         * modules/close (Depends-on): fclose.
8190         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
8191
8192 2008-10-11  Bruno Haible  <bruno@clisp.org>
8193
8194         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
8195         set errno and don't call _close.
8196
8197 2008-10-10  Bruno Haible  <bruno@clisp.org>
8198
8199         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
8200         ACL, not afterwards. Fixes test failure on Cygwin.
8201
8202 2008-10-09  Ben Pfaff  <blp@gnu.org>
8203
8204         * build-aux/announce-gen: Fix gnulib version related part of usage
8205         message.  Die with a useful error message if no tarballs are
8206         found.
8207
8208 2008-10-10  Jim Meyering  <meyering@redhat.com>
8209
8210         bootstrap: use git's --depth=N option only if it's supported
8211         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
8212         recognize the --depth option.  Reported by Pádraig Brady.
8213
8214 2008-10-09  Bruno Haible  <bruno@clisp.org>
8215
8216         New module 'ioctl'.
8217         * modules/ioctl: New file.
8218         * lib/sys_socket.in.h (ioctl): Remove declaration.
8219         * lib/winsock.c: Include <sys/ioctl.h>.
8220         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
8221         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
8222         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
8223         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
8224         * doc/posix-functions/ioctl.texi: Mention the new module.
8225
8226 2008-10-09  Bruno Haible  <bruno@clisp.org>
8227
8228         New module 'sys_ioctl'.
8229         * lib/sys_ioctl.in.h: New file.
8230         * m4/sys_ioctl_h.m4: New file.
8231         * modules/sys_ioctl: New file.
8232         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
8233
8234 2008-10-09  Bruno Haible  <bruno@clisp.org>
8235
8236         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
8237         * lib/winsock.c: Include <stdarg.h>.
8238         (rpl_ioctl): Change to second argument 'int' and then varargs.
8239
8240 2008-10-09  Bruno Haible  <bruno@clisp.org>
8241
8242         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
8243         when the sys_socket module is present and the system has <winsock2.h>.
8244
8245 2008-10-09  Bruno Haible  <bruno@clisp.org>
8246
8247         * doc/posix-functions/close.texi: Mention module 'close' instead of
8248         module 'sys_socket'.
8249
8250 2008-10-09  Bruno Haible  <bruno@clisp.org>
8251
8252         * doc/glibc-headers/sys_ioctl.texi: New file.
8253         * doc/gnulib.texi: Include it.
8254
8255 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8256             Bruno Haible  <bruno@clisp.org>
8257
8258         Combine the two replacements of 'close'.
8259         * lib/sys_socket.in.h (close): Define to a reminder to include
8260         <unistd.h>.
8261         (_gl_close_fd_maybe_socket): New declaration.
8262         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
8263         * lib/winsock.c (close): Remove undefinition.
8264         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
8265         needed for the gnulib module 'close'.
8266         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
8267         define to an error symbol or to a warning, if suitable.
8268         * lib/close.c: Include <sys/socket.h>.
8269         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
8270         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
8271         UNISTD_H_HAVE_WINSOCK2_H.
8272         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
8273         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8274         UNISTD_H_HAVE_WINSOCK2_H.
8275         * modules/sys_socket (Files): Add m4/unistd_h.m4.
8276         (configure.ac): Set a module indicator.
8277         (Makefile.am): Substitute GNULIB_CLOSE.
8278         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
8279         * modules/poll-tests (Depends-on): Add close.
8280         * modules/select-tests (Depends-on): Likewise.
8281
8282 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8283             Bruno Haible  <bruno@clisp.org>
8284
8285         New module 'close'.
8286         * modules/close: New file.
8287         * lib/unistd.in.h (close): Move declaration out of the
8288         FCHDIR_REPLACEMENT scope.
8289         (_gl_unregister_fd): New declaration.
8290         * lib/close.c: New file.
8291         * lib/fchdir.c (rpl_close): Remove function.
8292         * m4/close.m4: New file.
8293         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
8294         close.
8295         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
8296         REPLACE_CLOSE.
8297         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
8298         REPLACE_CLOSE.
8299         * modules/fchdir (Depends-on): Add close.
8300
8301 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8302             Bruno Haible  <bruno@clisp.org>
8303
8304         * lib/fcntl.in.h (open): Simplify conditionals.
8305         (_gl_register_fd): New declaration.
8306         * lib/fchdir.c (rpl_open): Remove function.
8307         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
8308         also.
8309         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
8310         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
8311         open.
8312
8313 2008-10-09  Jim Meyering  <meyering@redhat.com>
8314
8315         GNUmakefile: use the more name-space-friendly "_version"
8316         * top/GNUmakefile (_dummy): Update.
8317         (_version): Rename from "version".
8318
8319 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8320             Bruno Haible  <bruno@clisp.org>
8321
8322         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
8323         rpl_close.
8324         (_gl_register_fd): New function, extracted from rpl_open.
8325         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
8326         (rpl_open, rpl_opendir): Use _gl_register_fd.
8327
8328 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8329
8330         Fix organization of 'open' replacement.
8331         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
8332         (gl_FUNC_OPEN): Use it.
8333         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
8334
8335 2008-10-08  Bruno Haible  <bruno@clisp.org>
8336
8337         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
8338
8339 2008-10-08  Simon Josefsson  <simon@josefsson.org>
8340
8341         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
8342         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
8343         listen).
8344
8345 2008-10-08  Eric Blake  <ebb9@byu.net>
8346
8347         GNUmakefile: add 'make version' target
8348         * top/GNUmakefile (_curr-ver): Split version update rules...
8349         (version): ...into a target.
8350
8351 2008-10-07  Bruno Haible  <bruno@clisp.org>
8352
8353         Use a more portable replacement expression for -0.0L.
8354         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
8355         instead of -0.0L. Fix m4 quotation.
8356
8357         * tests/test-signbit.c: Include <float.h>.
8358         (minus_zero): New variable.
8359         (test_signbitl): Use minus_zero instead of -zero.
8360         * modules/signbit-tests (Depends-on): Add float.
8361
8362         * tests/test-ceill.c: Include <float.h>.
8363         (zero): Remove variable.
8364         (minus_zero): New variable.
8365         (main): Use minus_zero instead of -zero.
8366         * modules/ceill-tests (Depends-on): Add float.
8367
8368         * tests/test-floorl.c: Include <float.h>.
8369         (zero): Remove variable.
8370         (minus_zero): New variable.
8371         (main): Use minus_zero instead of -zero.
8372         * modules/floorl-tests (Depends-on): Add float.
8373
8374         * tests/test-roundl.c: Include <float.h>.
8375         (zero): Remove variable.
8376         (minus_zero): New variable.
8377         (main): Use minus_zero instead of -zero.
8378         * modules/roundl-tests (Depends-on): Add float.
8379
8380         * tests/test-truncl.c: Include <float.h>.
8381         (zero): Remove variable.
8382         (minus_zero): New variable.
8383         (main): Use minus_zero instead of -zero.
8384         * modules/truncl-tests (Depends-on): Add float.
8385
8386         * tests/test-frexpl.c (zero): Remove variable.
8387         (minus_zero): New variable.
8388         (main): Use minus_zero instead of -zero.
8389         * modules/frexpl-tests (Depends-on): Add float.
8390
8391         * tests/test-isnan.c (zerol): Remove variable.
8392         (minus_zerol): New variable.
8393         (test_long_double): Use minus_zerol instead of -zerol.
8394         * modules/isnan-tests (Depends-on): Add float.
8395
8396         * tests/test-isnanl.h (zero): Remove variable.
8397         (minus_zero): New variable.
8398         (main): Use minus_zero instead of -zero.
8399         * modules/isnanl-nolibm-tests (Depends-on): Add float.
8400         * modules/isnanl-tests (Depends-on): Add float.
8401
8402         * tests/test-ldexpl.c (zero): Remove variable.
8403         (minus_zero): New variable.
8404         (main): Use minus_zero instead of -zero.
8405         * modules/ldexpl-tests (Depends-on): Add float.
8406
8407         * tests/test-snprintf-posix.h (zerol): Remove variable.
8408         (minus_zerol): New variable.
8409         (test_function): Use minus_zerol instead of -zerol.
8410         * modules/snprintf-posix-tests (Depends-on): Add float.
8411         * modules/vsnprintf-posix-tests (Depends-on): Add float.
8412
8413         * tests/test-sprintf-posix.h (zerol): Remove variable.
8414         (minus_zerol): New variable.
8415         (test_function): Use minus_zerol instead of -zerol.
8416         * modules/sprintf-posix-tests (Depends-on): Add float.
8417         * modules/vsprintf-posix-tests (Depends-on): Add float.
8418
8419         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
8420         (minus_zerol): New variable.
8421         (test_function): Use minus_zerol instead of -zerol.
8422         * modules/vasnprintf-posix-tests (Depends-on): Add float.
8423
8424         * tests/test-vasprintf-posix.c (zerol): Remove variable.
8425         (minus_zerol): New variable.
8426         (test_function): Use minus_zerol instead of -zerol.
8427         * modules/vasprintf-posix-tests (Depends-on): Add float.
8428
8429 2008-10-07  Simon Josefsson  <simon@josefsson.org>
8430
8431         * MODULES.html.sh (Support for building documentation): Mention
8432         pmccabe2html.  Sort entries.
8433
8434         Add pmccabe2html module, from gnupdf.
8435         * build-aux/pmccabe.css: New file.
8436         * build-aux/pmccabe2html: New file.
8437         * m4/pmccabe2html.m4: New file.
8438         * modules/pmccabe2html: New file.
8439
8440 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
8441
8442         flock: new module
8443         * MODULES.html.sh: Add to list of modules.
8444         * lib/flock.c: flock implementation for Windows and Unix systems
8445         which have fcntl.
8446         * doc/glibc-functions/flock.texi: Update documentation.
8447         * lib/sys_file.in.h: <sys/file.h> header file.
8448         * m4/flock.m4: M4 macros.
8449         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
8450         * modules/flock: flock module.
8451         * modules/flock-tests: flock tests module.
8452         * modules/sys_file: sys/file.h module.
8453         * tests/test-flock.c: test suite for flock.
8454
8455 2008-10-06  Jim Meyering  <meyering@redhat.com>
8456
8457         bootstrap: check for LT_INIT more portably still ;-)
8458         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
8459         Spotted by Bruno Haible.
8460
8461 2008-10-06  Eric Blake  <ebb9@byu.net>
8462
8463         test-signbit: avoid tripping Irix cc bug on -0.0L
8464         * tests/test-signbit.c (minus_zerol): Delete, and replace with
8465         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
8466         entire testsuite consistent and avoids an Irix 6.2 bug.
8467
8468 2008-10-05  Bruno Haible  <bruno@clisp.org>
8469             Jim Meyering  <jim@meyering.net>
8470
8471         Add an option for ignoring EPIPE during close_stdout.
8472         * lib/closeout.h: Include <stdbool.h>.
8473         (close_stdout_set_ignore_EPIPE): New declaration.
8474         * lib/closeout.c: Include <stdbool.h>.
8475         (ignore_EPIPE): New variable.
8476         (close_stdout_set_ignore_EPIPE): New function.
8477         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
8478         * lib/close-stream.c (close_stream): Mention the possible EPIPE
8479         failure.
8480         * modules/closeout (Depends-on): Add stdbool.
8481
8482 2008-10-05  Bruno Haible  <bruno@clisp.org>
8483
8484         * modules/accept: New file.
8485         * modules/bind: New file.
8486         * modules/connect: New file.
8487         * modules/getpeername: New file.
8488         * modules/getsockname: New file.
8489         * modules/getsockopt: New file.
8490         * modules/listen: New file.
8491         * modules/recv: New file.
8492         * modules/recvfrom: New file.
8493         * modules/send: New file.
8494         * modules/sendto: New file.
8495         * modules/setsockopt: New file.
8496         * modules/socket: New file.
8497         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
8498         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
8499         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
8500         the particular module is requested. Add a link warning when the
8501         particular module is not requested.
8502         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
8503         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
8504         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
8505         the particular module is requested.
8506         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
8507         gl_SYS_SOCKET_H_DEFAULTS): New macros.
8508         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
8509         * modules/sys_socket (Depends-on): Add link-warning.
8510         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
8511         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
8512         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
8513         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
8514         GL_LINK_WARNING.
8515         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
8516         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
8517         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
8518         * doc/posix-functions/getpeername.texi: Mention the new module
8519         'getpeername'.
8520         * doc/posix-functions/getsockname.texi: Mention the new module
8521         'getsockname'.
8522         * doc/posix-functions/getsockopt.texi: Mention the new module
8523         'getsockopt'.
8524         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
8525         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
8526         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
8527         * doc/posix-functions/send.texi: Mention the new module 'send'.
8528         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
8529         * doc/posix-functions/setsockopt.texi: Mention the new module
8530         'setsockopt'.
8531         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
8532         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
8533         listen, connect, accept.
8534         * modules/select-tests (Depends-on): Likewise.
8535
8536 2008-10-05  Bruno Haible  <bruno@clisp.org>
8537
8538         * lib/winsock.c (strerror): Remove unused #undef.
8539         (rpl_close): Remove unused local variable.
8540
8541         * modules/sys_socket (Depends-on); Add errno.
8542
8543 2008-10-05  Bruno Haible  <bruno@clisp.org>
8544
8545         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
8546         (select): Add a link warning when the 'select' module is not used.
8547         * modules/sys_select (Depends-on): Add link-warning.
8548         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
8549         Suggested by Paolo Bonzini.
8550
8551 2008-10-05  Jim Meyering  <meyering@redhat.com>
8552
8553         bootstrap: check for LT_INIT more portably
8554         * build-aux/bootstrap: Avoid using grep -E, since it's not
8555         portable enough.  Suggestion from Bruno Haible.
8556
8557 2008-10-05  Bruno Haible  <bruno@clisp.org>
8558
8559         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
8560         as being fixed by gnulib.
8561
8562 2008-10-05  Bruno Haible  <bruno@clisp.org>
8563
8564         * modules/select-tests: New file, mostly copied from
8565         modules/sys_select-tests.
8566         * tests/test-select.c: New file, mostly copied from
8567         tests/test-sys_select.c.
8568         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
8569         * modules/sys_select-tests (Depends-on): Remove all dependencies.
8570         (Makefile.am): Remove test_sys_select_LDADD.
8571
8572         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
8573         to an undefined symbol, for an error message.
8574         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
8575         (gl_SYS_SELECT_H_DEFAULTS): New macro.
8576         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
8577         winsock-select.c here.
8578         * modules/sys_select (Files): Remove lib/winsock-select.c.
8579         (Depends-on): Remove alloca.
8580         (Makefile.am): Substitute GNULIB_SELECT.
8581         * modules/select: New file.
8582         * doc/posix-functions/select.texi: Update.
8583
8584 2008-10-05  Bruno Haible  <bruno@clisp.org>
8585
8586         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
8587         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
8588         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
8589         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
8590         getdtablesize.
8591         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
8592         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
8593
8594 2008-10-05  Bruno Haible  <bruno@clisp.org>
8595
8596         * modules/getdtablesize-tests: New file.
8597         * tests/test-getdtablesize.c: New file.
8598
8599         New module 'getdtablesize'.
8600         * lib/unistd.in.h (getdtablesize): New declaration.
8601         * lib/getdtablesize.c: New file.
8602         * m4/getdtablesize.m4: New file.
8603         * modules/getdtablesize: New file.
8604         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8605         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
8606         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
8607         HAVE_GETDTABLESIZE.
8608         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
8609
8610 2008-10-05  Bruno Haible  <bruno@clisp.org>
8611
8612         * modules/sched (Makefile.am): Fix typo.
8613         Reported by Simon Josefsson.
8614
8615 2008-10-05  Jim Meyering  <meyering@redhat.com>
8616
8617         bootstrap: check for LT_INIT, too
8618         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
8619         are deprecated.  Suggestion from Ralf Wildenhues.
8620
8621 2008-10-05  Bruno Haible  <bruno@clisp.org>
8622
8623         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
8624         overriding them by ours.
8625         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
8626
8627 2008-10-05  Jim Meyering  <meyering@redhat.com>
8628
8629         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
8630         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
8631         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
8632
8633 2008-10-04  Bruno Haible  <bruno@clisp.org>
8634
8635         * modules/dup2 (License): Change to LGPLv2+.
8636         * modules/sleep (License): Likewise.
8637         * modules/perror (License): Likewise.
8638         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
8639         Blake.
8640         * modules/signal (License): Likewise.
8641         * modules/sigprocmask (License): Likewise.
8642         * modules/raise (License): Change to LGPLv2+, with approval by Jim
8643         Meyering.
8644
8645 2008-10-04  Bruno Haible  <bruno@clisp.org>
8646
8647         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
8648         Reported by Rainer Tammer <tammer@tammer.net>.
8649
8650 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
8651             Bruno Haible  <bruno@clisp.org>
8652
8653         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
8654         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
8655         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
8656
8657 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
8658
8659         filevercmp: new module
8660         * lib/filevercmp.h: New function filevercmp comparing version strings.
8661         * lib/filevercmp.c: Implementation of filevercmp function.
8662         * modules/filevercmp: Module metadata.
8663         * tests/test-filevercmp.c: Unit test for new module.
8664         * modules/filevercmp-tests: Unit test metadata.
8665         * MODULES.html.sh: Add filevercmp module.
8666
8667 2008-10-03  Bruno Haible  <bruno@clisp.org>
8668
8669         * lib/c-ctype.h: Add comment.
8670         Reported by Jim Meyering.
8671
8672 2008-10-02  Bruno Haible  <bruno@clisp.org>
8673
8674         * modules/posix_spawn-internal (Depends-on): Add 'open'.
8675
8676 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8677
8678         * build-aux/bootstrap: Allow renaming bootstrap, and change the
8679         name of bootstrap.conf accordingly.
8680
8681 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8682
8683         * build-aux/bootstrap: Install git-merge-changelog configuration
8684         items into .gitconfig if needed.
8685
8686 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8687
8688         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
8689         git repository, and initialize/update it accordingly.
8690
8691 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
8692
8693         * modules/fsync-tests: New file.
8694         * tests/test-fsync.c: New file.
8695
8696         New module 'fsync'.
8697         * lib/fsync.c: New file.
8698         * m4/fsync.m4: New file.
8699         * modules/fsync: New file.
8700         * lib/unistd.in.h (fsync): New declaration.
8701         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
8702         GNULIB_FSYNC and HAVE_FSYNC.
8703         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
8704         * MODULES.html.sh (posix_functions): Add fsync.
8705         * doc/posix-functions/fsync.texi: Mention the new module.
8706
8707 2008-10-02  Jim Meyering  <meyering@redhat.com>
8708
8709         fts.c: sync with similar code from coreutils' remove.c
8710         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
8711         Guard also with "#if defined __linux__", since for now at least,
8712         this code is Linux-kernel-specific.
8713
8714 2008-10-02  Jim Meyering  <meyering@redhat.com>
8715
8716         fts: bug fixes
8717         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
8718         Include <sys/vfs.h>, not <sys/statfs.h>.
8719
8720         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
8721         Include <sys/vfs.h>, not <sys/statfs.h>.
8722
8723 2008-10-01  Bruno Haible  <bruno@clisp.org>
8724
8725         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
8726         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
8727         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
8728         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
8729         * doc/posix-functions/posix_spawnp.texi: Likewise.
8730         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
8731         whether posix_spawn actually works.
8732         * m4/pipe.m4 (gl_PIPE): Likewise.
8733         * modules/execute (Files): Add m4/posix_spawn.m4.
8734         * modules/pipe (Files): Add m4/posix_spawn.m4.
8735         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
8736
8737 2008-10-01  Jim Meyering  <meyering@redhat.com>
8738
8739         remove trailing spaces
8740         * NEWS: Likewise.
8741         * lib/poll.c (poll): Likewise.
8742         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
8743         * lib/winsock.c (rpl_close): Likewise.
8744         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
8745         * modules/yield: Likewise.
8746         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
8747         * tests/test-sys_select.c (connect_to_socket): Likewise.
8748
8749         fts.c: adjust a new interface to be more generally useful
8750         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
8751         (fts_build): Adjust caller.
8752
8753 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8754
8755         * modules/cond-tests: New file.
8756         * tests/test-cond.c: New file.
8757
8758 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8759             Bruno Haible  <bruno@clisp.org>
8760
8761         * modules/cond (Dependencies): Add errno, time.
8762         * lib/glthread/cond.h: Include <time.h>.
8763         (gl_cond_define, gl_cond_define_initialized): Use the same definition
8764         across platforms.
8765
8766 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8767             Bruno Haible  <bruno@clisp.org>
8768
8769         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
8770
8771 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8772             Bruno Haible  <bruno@clisp.org>
8773
8774         * modules/tls-tests (Depends-on): Add thread, yield.
8775         (configure.ac): Remove all checks.
8776         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
8777         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
8778         gl_thread_self): Remove definitions. Include glthread/thread.h and
8779         glthread/yield.h instead.
8780         (test_tls): Pass an additional NULL argument to gl_thread_join.
8781
8782 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8783             Bruno Haible  <bruno@clisp.org>
8784
8785         * modules/lock-tests (Depends-on): Add thread, yield.
8786         (configure.ac): Remove all checks.
8787         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
8788         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
8789         gl_thread_self): Remove definitions. Include glthread/thread.h and
8790         glthread/yield.h instead.
8791         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
8792         additional NULL argument to gl_thread_join.
8793
8794 2008-09-30  Bruno Haible  <bruno@clisp.org>
8795
8796         Fix the Win32 implementation of the 'thread' module.
8797         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
8798         pointer type.
8799         (gl_thread_self): Invoke gl_thread_self_func.
8800         (gl_thread_self_func): New declaration.
8801         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
8802         (do_init_self_key, init_self_key): New functions.
8803         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
8804         Remove some fields.
8805         (running_threads, running_lock): Remove variables.
8806         (get_current_thread_handle): New function.
8807         (gl_thread_self_func, wrapper_func, glthread_create_func,
8808         glthread_join_func, gl_thread_exit_func): Largely rewritten and
8809         simplified.
8810
8811 2008-09-30  Bruno Haible  <bruno@clisp.org>
8812
8813         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
8814         files.
8815
8816 2008-09-30  Jim Meyering  <meyering@redhat.com>
8817
8818         fts.m4: correct the test for statfs.f_type
8819         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
8820         when checking for statfs.f_type.
8821
8822 2008-09-15  Simon Josefsson  <simon@josefsson.org>
8823
8824         tests: avoid some compiler warnings
8825         * tests/test-memchr.c (main): Pass NULL indirectly.
8826         * tests/test-getdate.c (main): Remove unused variable 'ret'.
8827
8828 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
8829
8830         getdate.y: disallow countable dayshifts like "4 yesterday ago"
8831         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
8832         exactly specified dayshifts.
8833         (dayshift): New rule.
8834         (rel): Add dayshift.
8835         (relative_time_table) [tomorrow, yesterday, today, now]:
8836         Use tDAY_SHIFT in place of tDAY_UNIT.
8837         * tests/test-getdate.c: Add tests for now-disallowed countable
8838         dayshifts, e.g., "4 yesterday ago".
8839
8840 2008-09-29  Bruno Haible  <bruno@clisp.org>
8841
8842         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
8843         * tests/test-posix_spawn1.in.sh: Renamed from
8844         tests/test-posix_spawn.in.sh.
8845         * tests/test-posix_spawn2.c: New file.
8846         * tests/test-posix_spawn2.in.sh: New file.
8847         * modules/posix_spawnp-tests (Files): Update.
8848         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
8849
8850 2008-09-29  Bruno Haible  <bruno@clisp.org>
8851
8852         Propagate effects of putenv/setenv/unsetenv to child processes.
8853         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
8854         * lib/pipe.c (create_pipe): Likewise.
8855
8856 2008-09-29  Bruno Haible  <bruno@clisp.org>
8857
8858         Enable use of shell scripts as executables in mingw.
8859         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
8860         run the program as a shell script.
8861         * lib/pipe.c (create_pipe): Likewise.
8862         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
8863         resulting array.
8864
8865 2008-09-29  Eric Blake  <ebb9@byu.net>
8866
8867         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
8868
8869 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
8870
8871         * doc/posix-functions/accept.texi: Update mingw problems.
8872         * doc/posix-functions/bind.texi: Update mingw problems.
8873         * doc/posix-functions/close.texi: Update mingw problems.
8874         * doc/posix-functions/connect.texi: Update mingw problems.
8875         * doc/posix-functions/getpeername.texi: Update mingw problems.
8876         * doc/posix-functions/getsockname.texi: Update mingw problems.
8877         * doc/posix-functions/getsockopt.texi: Update mingw problems.
8878         * doc/posix-functions/ioctl.texi: Update mingw problems.
8879         * doc/posix-functions/listen.texi: Update mingw problems.
8880         * doc/posix-functions/recv.texi: Update mingw problems.
8881         * doc/posix-functions/recvfrom.texi: Update mingw problems.
8882         * doc/posix-functions/select.texi: Update mingw problems.
8883         * doc/posix-functions/send.texi: Update mingw problems.
8884         * doc/posix-functions/sendto.texi: Update mingw problems.
8885         * doc/posix-functions/setsockopt.texi: Update mingw problems.
8886         * doc/posix-functions/socket.texi: Update mingw problems.
8887
8888 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
8889             Bruno Haible  <bruno@clisp.org>
8890
8891         * lib/sys_select.in.h: Include sys/time.h.
8892         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
8893         * modules/sys_select: Depend on sys_time.
8894         * tests/test-sys_select.c: Test that sys/select.h defines struct
8895         timeval fully.
8896
8897 2008-09-29  Bruno Haible  <bruno@clisp.org>
8898
8899         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
8900         * lib/sys_select.in.h: Likewise.
8901
8902 2008-09-29  Bruno Haible  <bruno@clisp.org>
8903
8904         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
8905
8906 2008-09-29  Bruno Haible  <bruno@clisp.org>
8907
8908         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
8909         Set LIBSOCKET instead of augmenting LIBS.
8910         * modules/sockets (Link): New section.
8911         * modules/sockets-tests (test_sockets_LDADD): New variable.
8912         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
8913         * modules/poll-tests (test_poll_LDADD): New variable.
8914         * NEWS: Document the change.
8915
8916 2008-09-29  Bruno Haible  <bruno@clisp.org>
8917
8918         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
8919         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
8920         ARPA_INET_H directly.
8921         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8922
8923 2008-09-28  Bruno Haible  <bruno@clisp.org>
8924
8925         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
8926         from gl_HEADER_SYS_SOCKET.
8927         (gl_HEADER_SYS_SOCKET): Invoke it.
8928         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8929
8930 2008-09-28  Bruno Haible  <bruno@clisp.org>
8931
8932         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
8933         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
8934         Needed on OSF/1 4.0.
8935
8936 2008-09-28  Bruno Haible  <bruno@clisp.org>
8937
8938         Override open more carefully.
8939         * lib/open.c (orig_open): New function.
8940         (rpl_open): Use orig_open instead of open.
8941         * lib/fcntl.in.h: Add special invocation convention.
8942         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
8943         (gl_FUNC_OPEN): Invoke it.
8944
8945         Override freopen more carefully.
8946         * lib/freopen.c (orig_freopen): New function.
8947         (rpl_freopen): Use orig_freopen instead of freopen.
8948         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
8949         (gl_FUNC_FREOPEN): Invoke it.
8950
8951         Override fopen more carefully.
8952         * lib/fopen.c (orig_fopen): New function.
8953         (rpl_fopen): Use orig_fopen instead of fopen.
8954         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
8955         (gl_FUNC_FOPEN): Invoke it.
8956         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
8957
8958 2008-09-28  Bruno Haible  <bruno@clisp.org>
8959
8960         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
8961         SIGPIPE.
8962
8963 2008-09-28  Bruno Haible  <bruno@clisp.org>
8964
8965         * tests/test-sigaction.c (handler, main): Disable the check whether
8966         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
8967         glibc systems with LinuxThreads.
8968
8969 2008-09-28  Bruno Haible  <bruno@clisp.org>
8970
8971         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
8972
8973         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
8974         with AIX xlc.
8975         * lib/fcntl.in.h (open): Likewise.
8976         Reported by Rainer Tammer <tammer@tammer.net>.
8977
8978 2008-09-28  Bruno Haible  <bruno@clisp.org>
8979
8980         * modules/posix_spawnp-tests: New file.
8981         * tests/test-posix_spawn.c: New file.
8982         * tests/test-posix_spawn.in.sh: New file.
8983
8984         New module 'posix_spawnp'.
8985         * modules/posix_spawnp: New file.
8986         * lib/spawnp.c: New file, from GNU libc with modifications.
8987         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
8988
8989         New module 'posix_spawn'.
8990         * modules/posix_spawn: New file.
8991         * lib/spawn.c: New file, from GNU libc with modifications.
8992         * doc/posix-functions/posix_spawn.texi: Mention the new module.
8993
8994         New module 'posix_spawnattr_destroy'.
8995         * modules/posix_spawnattr_destroy: New file.
8996         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
8997         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
8998         module.
8999
9000         New module 'posix_spawnattr_setsigmask'.
9001         * modules/posix_spawnattr_setsigmask: New file.
9002         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
9003         modifications.
9004         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
9005         new module.
9006
9007         New module 'posix_spawnattr_getsigmask'.
9008         * modules/posix_spawnattr_getsigmask: New file.
9009         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
9010         modifications.
9011         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
9012         new module.
9013
9014         New module 'posix_spawnattr_setsigdefault'.
9015         * modules/posix_spawnattr_setsigdefault: New file.
9016         * lib/spawnattr_setdefault.c: New file, from GNU libc with
9017         modifications.
9018         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
9019         new module.
9020
9021         New module 'posix_spawnattr_getsigdefault'.
9022         * modules/posix_spawnattr_getsigdefault: New file.
9023         * lib/spawnattr_getdefault.c: New file, from GNU libc with
9024         modifications.
9025         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
9026         new module.
9027
9028         New module 'posix_spawnattr_setschedpolicy'.
9029         * modules/posix_spawnattr_setschedpolicy: New file.
9030         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
9031         modifications.
9032         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
9033         new module.
9034
9035         New module 'posix_spawnattr_getschedpolicy'.
9036         * modules/posix_spawnattr_getschedpolicy: New file.
9037         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
9038         modifications.
9039         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
9040         new module.
9041
9042         New module 'posix_spawnattr_setschedparam'.
9043         * modules/posix_spawnattr_setschedparam: New file.
9044         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
9045         modifications.
9046         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
9047         new module.
9048
9049         New module 'posix_spawnattr_getschedparam'.
9050         * modules/posix_spawnattr_getschedparam: New file.
9051         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
9052         modifications.
9053         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
9054         new module.
9055
9056         New module 'posix_spawnattr_setpgroup'.
9057         * modules/posix_spawnattr_setpgroup: New file.
9058         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
9059         modifications.
9060         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
9061         module.
9062
9063         New module 'posix_spawnattr_getpgroup'.
9064         * modules/posix_spawnattr_getpgroup: New file.
9065         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
9066         modifications.
9067         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
9068         module.
9069
9070         New module 'posix_spawnattr_setflags'.
9071         * modules/posix_spawnattr_setflags: New file.
9072         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
9073         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
9074         module.
9075
9076         New module 'posix_spawnattr_getflags'.
9077         * modules/posix_spawnattr_getflags: New file.
9078         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
9079         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
9080         module.
9081
9082         New module 'posix_spawnattr_init'.
9083         * modules/posix_spawnattr_init: New file.
9084         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
9085         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
9086         module.
9087
9088         New module 'posix_spawn_file_actions_destroy'.
9089         * modules/posix_spawn_file_actions_destroy: New file.
9090         * lib/spawn_faction_destroy.c: New file, from GNU libc with
9091         modifications.
9092         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
9093         the new module.
9094
9095         New module 'posix_spawn_file_actions_addopen'.
9096         * modules/posix_spawn_file_actions_addopen: New file.
9097         * lib/spawn_faction_addopen.c: New file, from GNU libc with
9098         modifications.
9099         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
9100         the new module.
9101
9102         New module 'posix_spawn_file_actions_adddup2'.
9103         * modules/posix_spawn_file_actions_adddup2: New file.
9104         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
9105         modifications.
9106         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
9107         the new module.
9108
9109         New module 'posix_spawn_file_actions_addclose'.
9110         * modules/posix_spawn_file_actions_addclose: New file.
9111         * lib/spawn_faction_addclose.c: New file, from GNU libc with
9112         modifications.
9113         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
9114         the new module.
9115
9116         New module 'posix_spawn_file_actions_init'.
9117         * modules/posix_spawn_file_actions_init: New file.
9118         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
9119         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
9120         new module.
9121
9122         New module 'posix_spawn-internal'.
9123         * modules/posix_spawn-internal: New file.
9124         * lib/spawn_int.h: New file, from GNU libc with modifications.
9125         * lib/spawni.c: New file, from GNU libc with modifications.
9126         * m4/posix_spawn.m4: New file.
9127
9128         New module 'spawn'.
9129         * modules/spawn: New file.
9130         * lib/spawn.in.h: New file, from GNU libc with modifications.
9131         * m4/spawn_h.m4: New file.
9132         * doc/posix-headers/spawn.texi: Mention the new module.
9133
9134 2008-09-28  Bruno Haible  <bruno@clisp.org>
9135
9136         * modules/sched-tests: New file.
9137         * tests/test-sched.c: New file.
9138
9139         New module 'sched'.
9140         * modules/sched: New file.
9141         * lib/sched.in.h: New file.
9142         * m4/sched_h.m4: New file.
9143         * doc/posix-headers/sched.texi: Mention the new module.
9144
9145 2008-09-27  Eric Blake  <ebb9@byu.net>
9146
9147         Fix previous patch, and tweak references to $0.
9148         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
9149         (func_version, func_gnulib_dir): Don't call this program
9150         gnulib-tool.
9151         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
9152         with using $0 in function.
9153         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
9154         (func_fatal_error): Reuse the name the user invoked us with.
9155
9156 2008-09-27  Bruno Haible  <bruno@clisp.org>
9157
9158         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
9159         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
9160         (gl_ICONV_H): Not here.
9161         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
9162         instead of assigning ICONV_H directly.
9163
9164         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
9165         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
9166         WCHAR_H directly.
9167
9168 2008-09-27  Bruno Haible  <bruno@clisp.org>
9169
9170         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
9171         * modules/arpa_inet (Depends-on): Add link-warning.
9172         (Makefile.am): Insert the definition of GL_LINK-WARNING.
9173         * modules/unistd (Makefile.am): Likewise.
9174
9175 2008-09-26  Bruno Haible  <bruno@clisp.org>
9176
9177         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
9178         variables.
9179         (func_version): Essentially copied from gnulib-tool.
9180         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
9181         func_readlink): Copied from gnulib-tool.
9182
9183 2008-09-26  Bruno Haible  <bruno@clisp.org>
9184
9185         * gnulib-tool (func_version): Change directory to $gnulib_dir before
9186         invoking git-version-gen.
9187
9188 2008-09-26  Bruno Haible  <bruno@clisp.org>
9189
9190         * posix-modules: Update to directory names changed on 2008-01-19.
9191         Remove commas in output before splitting into words. No more need to
9192         avoid 'ftruncate' since 2007-02-19.
9193
9194 2008-09-26  Bruno Haible  <bruno@clisp.org>
9195
9196         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
9197
9198 2008-09-26  Bruno Haible  <bruno@clisp.org>
9199
9200         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
9201         * modules/fwriteerror (Depends-on): Add errno.
9202
9203 2008-09-26  Bruno Haible  <bruno@clisp.org>
9204
9205         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
9206         * tests/test-vc-list-files-cvs.sh: Likewise.
9207
9208 2008-09-26  Bruno Haible  <bruno@clisp.org>
9209
9210         * doc/posix-headers/sys_resource.texi: Reorder items.
9211
9212 2008-09-26  Jim Meyering  <meyering@redhat.com>
9213
9214         fts: tweak inode comparison function
9215         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
9216         inode numbers, as documented.
9217
9218         fts: sort dirent entries on inode number before traversing
9219         This avoids a quadratic, seek-related performance penalty when
9220         operating on a directory containing many entries (measurable at 10k;
9221         3.5 hours at 2 million entries with a cold cache) on certain types
9222         of file systems, including ext3 and ext4, but not tmpfs.
9223         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
9224         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
9225         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
9226         (fs_handles_readdir_ordered_dirents_efficiently): New function.
9227         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
9228         (fts_build): Set the stat.st_ino member from D_INO.
9229         If it is likely to be useful, sort dirent entries on inode number.
9230
9231         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
9232         and the struct statfs.f_type member.
9233         * modules/fts (Depends-on): Add d-ino.
9234
9235 2008-09-26  Bruno Haible  <bruno@clisp.org>
9236
9237         * modules/sigpipe-die (Depends-on): Add sigpipe.
9238
9239         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
9240         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
9241         and GNULIB_STDIO_H_SIGPIPE are set.
9242         * lib/stdio-write.c: New file.
9243         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
9244         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9245         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9246         REPLACE_STDIO_WRITE_FUNCS.
9247         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
9248         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9249         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9250         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
9251         * modules/stdio (Files): Add lib/stdio-write.c.
9252         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
9253         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9254         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9255         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
9256         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
9257         REPLACE_FPRINTF_POSIX.
9258         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
9259         REPLACE_PRINTF_POSIX.
9260         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
9261         REPLACE_VFPRINTF_POSIX.
9262         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
9263         REPLACE_VPRINTF_POSIX.
9264         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
9265         SIGPIPE issue.
9266         * doc/posix-functions/fputc.texi: Likewise.
9267         * doc/posix-functions/fputs.texi: Likewise.
9268         * doc/posix-functions/fwrite.texi: Likewise.
9269         * doc/posix-functions/printf.texi: Likewise.
9270         * doc/posix-functions/putc.texi: Likewise.
9271         * doc/posix-functions/putchar.texi: Likewise.
9272         * doc/posix-functions/puts.texi: Likewise.
9273         * doc/posix-functions/vfprintf.texi: Likewise.
9274         * doc/posix-functions/vprintf.texi: Likewise.
9275
9276         * modules/safe-write (Depends-on): Add write.
9277
9278         * modules/sigpipe-tests: New file.
9279         * tests/test-sigpipe.c: New file.
9280         * tests/test-sigpipe.sh: New file.
9281
9282         * modules/write: New file.
9283         * lib/unistd.in.h: Include <sys/types.h>.
9284         (write): New declaration.
9285         * lib/write.c: New file.
9286         * m4/write.m4: New file.
9287         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
9288         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
9289         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
9290         GNULIB_WRITE, REPLACE_WRITE.
9291         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
9292         and the SIGPIPE issue.
9293
9294         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
9295         (raise): New declaration.
9296         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
9297         (ext_signal): New function.
9298         (rpl_raise): New function.
9299         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
9300         GNULIB_SIGNAL_H_SIGPIPE.
9301         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
9302         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
9303
9304         * modules/sigpipe: New file.
9305         * m4/sigpipe.m4: New file.
9306
9307 2008-09-25  Derek Price  <derek@ximbiot.com>
9308             Bruno Haible  <bruno@clisp.org>
9309
9310         * gnulib-tool (func_import): Report all license incompatibilities, not
9311         just the first one.
9312
9313 2008-09-25  Bruno Haible  <bruno@clisp.org>
9314
9315         * gnulib-tool (func_import): When computing the edits, consider not
9316         only the Makefile.ams that exist but also those that will be generated.
9317
9318 2008-09-25  Simon Josefsson  <simon@josefsson.org>
9319
9320         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
9321         fixes gnulib-tool --test warning about duplicate dependency.
9322
9323 2008-09-25  Bruno Haible  <bruno@clisp.org>
9324
9325         * gnulib-tool: Don't ask the user to perform edits in the generated
9326         Makefile.ams.
9327         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
9328         apply to the Makefile.am being generated.
9329         (func_emit_tests_Makefile_am): Execute edits that apply to the
9330         Makefile.am being generated.
9331         (func_import): Setup list of Makefile.am edits before emitting the
9332         Makefile.ams, not at the end.
9333         (func_create_testdir): Update.
9334         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9335
9336 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9337
9338         * gnulib-tool (func_import): Store the --tests-base option in the
9339         comment in gnulib-cache.m4.
9340
9341 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
9342
9343         * NEWS: Document increased portability that sys_select now provides.
9344
9345         * lib/sys_select.in.h: Install select wrapper.
9346         * lib/sys_socket.in.h: Use more descriptive name when there is no
9347         select wrapper.
9348         * lib/winsock-select.c: New.
9349         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
9350         Require gl_HEADER_SYS_SOCKET.
9351         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
9352         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
9353         * tests/test-sys_select.c: Add functional tests.
9354
9355 2008-09-24  Eric Blake  <ebb9@byu.net>
9356
9357         open, fopen: close fd leak in last patch
9358         * lib/open.c (rpl_open): Close fd before returning error.
9359         * lib/fopen.c (rpl_fopen): Close fd before returning error.
9360         * doc/posix-functions/open.texi (open): Document that Irix also
9361         has the bug.
9362         * doc/posix-functions/fopen.texi (fopen): Likewise.
9363         Reported by Paolo Bonzini.
9364
9365 2008-09-24  Bruno Haible  <bruno@clisp.org>
9366
9367         Ensure that a filename ending in a slash cannot be used to access a
9368         non-directory.
9369         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
9370         to check whether it's really a directory.
9371         * lib/fopen.c: Include fcntl.h, unistd.h.
9372         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
9373         and fdopen().
9374         * modules/fopen (Depends-on): Add unistd.
9375         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
9376         * tests/test-fopen.c (main): Likewise.
9377         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
9378         * doc/posix-functions/fopen.texi: Likewise.
9379         Reported by Eric Blake.
9380
9381 2008-09-23  Eric Blake  <ebb9@byu.net>
9382
9383         c-stack: avoid compiler optimizations when provoking overflow
9384         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
9385         recursion harder to optimize, to ensure a stack overflow occurs.
9386         * tests/test-c-stack.c (recurse): Likewise.
9387         Borrowed from libsigsegv.
9388
9389         c-stack: work around Irix sigaltstack bug
9390         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
9391         whether sigaltstack uses wrong end of stack_t (copied in part from
9392         libsigsegv).
9393         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
9394         Irix bug, without requiring an over-allocation.
9395         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
9396         bug.
9397
9398         fopen: document mingw bug on directories
9399         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
9400         not allowing a stream visiting a directory, even though reading
9401         from such a stream is not portable.
9402
9403 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9404
9405         * lib/poll.c: Rewrite.
9406         * modules/poll: Depend on alloca.
9407
9408 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9409
9410         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
9411         instead define prototypes for a full set of wrappers.  Ensure
9412         that Cygwin does not use the compatibility code, which is only
9413         for MinGW.
9414         * lib/winsock.c: New.
9415         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
9416         * modules/sys_socket: Add lib/winsock.c.
9417
9418         * modules/poll-tests: Add errno and perror.
9419         * tests/test-poll.c: Use ioctl, not ioctlsocket.
9420
9421 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9422
9423         * tests/test-poll.c: Downgrade minimum needed Winsock version.
9424
9425 2008-09-23  Bruno Haible  <bruno@clisp.org>
9426
9427         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
9428         * doc/glibc-functions/*: Likewise.
9429
9430 2008-09-23  Simon Josefsson  <simon@josefsson.org>
9431
9432         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
9433         success.
9434
9435 2008-09-22  Eric Blake  <ebb9@byu.net>
9436             Bruno Haible  <bruno@clisp.org>
9437
9438         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
9439         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
9440         supply %A but mishandle pseudo-NaN.
9441         Reported by Simon Josefsson.
9442
9443 2008-09-21  Bruno Haible  <bruno@clisp.org>
9444
9445         * tests/test-lock.c (main): Tweak skip message.
9446         * tests/test-tls.c (main): Likewise.
9447
9448 2008-09-21  Bruno Haible  <bruno@clisp.org>
9449
9450         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
9451         whether 'struct sigaction' has sa_sigaction here...
9452         (gl_PREREQ_SIG_HANDLER_H): ... not here.
9453         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
9454
9455 2008-09-21  Bruno Haible  <bruno@clisp.org>
9456
9457         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
9458         section.
9459         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
9460         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
9461         the new section.
9462         (Support for obsolete systems lacking POSIX:2001): New section.
9463         (String handling <string.h>): Move strdup to the new section.
9464         Suggested by Simon Josefsson and Paolo Bonzini.
9465
9466 2008-09-21  Bruno Haible  <bruno@clisp.org>
9467
9468         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
9469         exponents in %e and %g results on 'long double'. Needed for mingw's
9470         improved *printf functions.
9471         * tests/test-vasprintf-posix.c (test_function): Likewise.
9472         * tests/test-snprintf-posix.h (test_function): Likewise.
9473         * tests/test-sprintf-posix.h (test_function): Likewise.
9474         Reported by Eric Blake.
9475
9476 2008-09-21  Bruno Haible  <bruno@clisp.org>
9477
9478         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
9479         * tests/test-sprintf-posix.h (test_function): Likewise.
9480
9481 2008-09-21  Bruno Haible  <bruno@clisp.org>
9482
9483         * modules/getpass (Depends-on): Add strdup-posix.
9484
9485         New module 'strdup-posix'.
9486         * modules/strdup-posix: New file.
9487         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
9488         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
9489         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
9490         REPLACE_STRDUP.
9491         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
9492         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
9493         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9494         strdup-posix.
9495
9496         * modules/strdup (Depends-on): Remove malloc-posix.
9497
9498 2008-09-20  Bruno Haible  <bruno@clisp.org>
9499
9500         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
9501         Wildenhues.
9502
9503 2008-09-20  Bruno Haible  <bruno@clisp.org>
9504
9505         Ensure that wint_t gets defined on IRIX 5.3.
9506         * lib/wchar.in.h (wint_t): Define if not defined by the system.
9507         * lib/wctype.in.h (wint_t): Likewise.
9508         (__wctype_wint_t): Remove type.
9509         (isw*): Use wint_t instead of __wctype_wint_t.
9510         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
9511         * modules/wchar (Files): Add m4/wint_t.m4.
9512         (Makefile.am): Substitute HAVE_WINT_T.
9513         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
9514         * tests/test-wctype.c: Check that wint_t is defined.
9515         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
9516         * doc/posix-headers/wctype.texi: Likewise.
9517         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9518
9519 2008-09-18  Bruno Haible  <bruno@clisp.org>
9520
9521         * gnulib-tool (func_exit): Update comment.
9522
9523 2008-09-18  Simon Josefsson  <simon@josefsson.org>
9524
9525         * modules/getaddrinfo (Depends-on): Remove strdup, this module
9526         assumes strdup exists and does not depend on strdup to return
9527         ENOMEM on out of memory conditions.
9528
9529 2008-09-18  Bruno Haible  <bruno@clisp.org>
9530
9531         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
9532         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
9533         digits for the exponent.
9534
9535 2008-09-18  Jim Meyering  <meyering@redhat.com>
9536             Bruno Haible  <bruno@clisp.org>
9537
9538         * lib/vasnprintf.c (decimal_point_char): Define also if
9539         NEED_PRINTF_INFINITE_LONG_DOUBLE.
9540
9541 2008-09-16  Bruno Haible  <bruno@clisp.org>
9542         and Eric Blake  <ebb9@byu.net>
9543
9544         vasnprintf: support Irix 5.3
9545         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
9546         that mishandle long double infinity.
9547         Reported by Tom G. Christensen.
9548
9549 2008-09-16  Bruno Haible  <bruno@clisp.org>
9550
9551         * doc/glibc-functions/scandir.texi: Mention the function is missing on
9552         Solaris 9.
9553         * doc/glibc-functions/alphasort.texi: Likewise.
9554         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
9555
9556 2008-09-16  Jim Meyering  <meyering@redhat.com>
9557
9558         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
9559         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
9560         a umask modification leak out of a subshell.  Otherwise, the
9561         opensolaris /bin/sh would be accepted and thus cause unwarranted
9562         failures in the coreutils test suite.
9563
9564 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
9565
9566         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
9567         to succeed.
9568
9569 2008-09-16  Jim Meyering  <meyering@redhat.com>
9570
9571         avoid spurious test failure when library is built without ACL support
9572         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
9573         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
9574         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
9575         * tests/test-copy-acl.sh: Likewise.
9576
9577 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9578
9579         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
9580         based on character occurrence counts.
9581
9582 2008-09-15  Eric Blake  <ebb9@byu.net>
9583
9584         tests: avoid some compiler warnings
9585         * tests/test-memchr.c (main): Pass NULL indirectly.
9586         * tests/test-closein.c (main): Avoid unused variable.
9587
9588 2008-09-15  Bruno Haible  <bruno@clisp.org>
9589
9590         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
9591         are missing on OpenBSD 4.0 individually.
9592         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9593
9594 2008-09-15  Bruno Haible  <bruno@clisp.org>
9595
9596         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
9597         * doc/posix-functions/strerror.texi: Mention also Cygwin.
9598         * doc/posix-functions/perror.texi: Likewise.
9599         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
9600         is missing.
9601         Reported by Eric Blake.
9602
9603         * lib/errno.in.h: Use replacement values >= 2000.
9604         Reported by Eric Blake.
9605
9606 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9607
9608         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
9609         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
9610         limit.
9611         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
9612         compareseq was aborted.
9613
9614 2008-09-14  Bruno Haible  <bruno@clisp.org>
9615
9616         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
9617         yvec_edit_count.
9618         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
9619         (fstrcmp_bounded): Simplify result computation accordingly.
9620
9621 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9622
9623         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
9624         (fstrcmp): Define in terms of fstrcmp_bounded.
9625         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
9626         lower_bound argument.
9627         Return quickly if the result is certainly < lower_bound.
9628         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
9629
9630 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9631
9632         * lib/diffseq.h (EARLY_ABORT): New macro.
9633         (compareseq): Change return type to bool. Return true when EARLY_ABORT
9634         evaluates to true.
9635
9636 2008-09-14  Bruno Haible  <bruno@clisp.org>
9637
9638         * modules/perror-tests: New file.
9639         * tests/test-perror.sh: New file.
9640         * tests/test-perror.c: New file.
9641
9642         New module 'perror'.
9643         * lib/stdio.in.h (perror): New declaration.
9644         * lib/perror.c: New file.
9645         * m4/perror.m4: New file.
9646         * modules/perror: New file.
9647         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
9648         * doc/posix-functions/perror.texi: Mention the perror module.
9649         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
9650         REPLACE_PERROR.
9651         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
9652         REPLACE_PERROR.
9653
9654 2008-09-14  Bruno Haible  <bruno@clisp.org>
9655
9656         * modules/stdio (Makefile.am): Reorder to match the order in
9657         lib/stdio.in.h.
9658         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
9659
9660 2008-09-13  Bruno Haible  <bruno@clisp.org>
9661
9662         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
9663
9664 2008-09-13  Bruno Haible  <bruno@clisp.org>
9665
9666         Extend strerror to cover the added errno values.
9667         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
9668         (rpl_strerror): Provide error messages for the added errno values and
9669         for the WSA* values.
9670         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
9671         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
9672         strerror.
9673         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
9674         * modules/strerror (Depends-on): Add errno.
9675         * doc/posix-functions/strerror.texi: Document the change.
9676         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
9677         and EOVERFLOW.
9678
9679 2008-09-13  Bruno Haible  <bruno@clisp.org>
9680
9681         * modules/EOVERFLOW: Remove file.
9682         * m4/eoverflow.m4: Remove file.
9683         * modules/EOVERFLOW-tests: Remove file.
9684         * tests/test-EOVERFLOW.c: Remove file.
9685         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
9686         * modules/ftell (Depends-on): Likewise.
9687         * modules/getdelim (Depends-on): Likewise.
9688         * modules/getugroups (Depends-on): Likewise.
9689         * modules/poll (Depends-on): Likewise.
9690         * modules/snprintf (Depends-on): Likewise.
9691         * modules/sprintf-posix (Depends-on): Likewise.
9692         * modules/vasnprintf (Depends-on): Likewise.
9693         * modules/vasprintf (Depends-on): Likewise.
9694         * modules/vfprintf-posix (Depends-on): Likewise.
9695         * modules/vsnprintf (Depends-on): Likewise.
9696         * modules/vsprintf-posix (Depends-on): Likewise.
9697         * modules/xvasprintf (Depends-on): Likewise.
9698         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
9699         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
9700         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
9701         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
9702         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
9703         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
9704         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
9705         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
9706         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
9707         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
9708         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
9709         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
9710         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
9711         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
9712         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
9713         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
9714         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
9715         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
9716         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
9717         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
9718         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
9719         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
9720         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
9721         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
9722         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
9723         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
9724         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
9725         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
9726         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
9727         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
9728         * MODULES.html.sh: Remove EOVERFLOW.
9729         * NEWS: Mention the change.
9730
9731 2008-09-13  Bruno Haible  <bruno@clisp.org>
9732
9733         * modules/errno-tests: New file.
9734         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
9735
9736         * lib/errno.in.h: New file.
9737         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
9738         * modules/errno: New file.
9739         * doc/posix-headers/errno.texi: Update documentation.
9740         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
9741
9742 2008-09-13  Bruno Haible  <bruno@clisp.org>
9743
9744         * tests/test-poll.c: Use #if for native Windows, rather than testing
9745         __MSVCRT__.
9746
9747 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9748             Bruno Haible  <bruno@clisp.org>
9749
9750         * lib/glob.c: Don't include <pwd.h> on native Windows.
9751         (WINDOWS32): New macro.
9752         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
9753
9754 2008-09-13  Bruno Haible  <bruno@clisp.org>
9755
9756         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
9757         (ETIMEDOUT): Remove macro.
9758         (glthread_cond_timedwait_multithreaded): New declaration.
9759         (glthread_cond_timedwait): Use it.
9760         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
9761         (glthread_cond_timedwait_multithreaded): New function.
9762
9763 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9764
9765         * modules/poll-tests: Do not check for io.h.
9766         * tests/test-poll.c: Check for __MSVCRT__ instead.
9767
9768 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9769
9770         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
9771         * modules/poll-tests: Add inet_pton, stdbool, sockets.
9772         * tests/test-poll.c: Use them.  Use _pipe on Windows.
9773
9774 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9775
9776         * modules/poll-tests: New.
9777         * tests/test-poll.c: New.
9778
9779 2008-09-12  Eric Blake  <ebb9@byu.net>
9780
9781         frexp: test for NetBSD failure on -0.0
9782         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
9783         not all, bugs from NetBSD 3.0 have been fixed.
9784         * doc/posix-functions/frexp.texi (frexp): Document bug.
9785         Reported by Thomas Klausner.
9786
9787         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
9788         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
9789         literal -0.0.
9790         Reported by Jonathan C. Patschke <jp@centtech.com>.
9791
9792 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9793
9794         * lib/glthread/cond.h: Use dummy implementation also if
9795         USE_WIN32_THREADS.
9796
9797 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9798
9799         * modules/fnmatch-posix (License): Change to LGPLv2+.
9800         * modules/fnmatch-gnu (License): Likewise.
9801
9802 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9803
9804         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
9805
9806 2008-09-11  Jim Meyering  <meyering@redhat.com>
9807
9808         * users.txt: Add gtk-vnc.
9809
9810 2008-09-08  Simon Josefsson  <simon@josefsson.org>
9811
9812         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
9813         rotate amounts.
9814
9815         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
9816         required for 16-bit and 8-bit rotates.
9817         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
9818         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
9819         UINT8_MAX instead of hard-coded constants.
9820         Suggested by Paul Eggert.
9821
9822 2008-09-07  Bruno Haible  <bruno@clisp.org>
9823
9824         * tests/test-striconveh.c (main): Check behaviour when converting from
9825         UTF-7.
9826
9827         Make striconveh work better with stateful encodings.
9828         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
9829         that iconv does not increment the inptr when returning -1/EINVAL.
9830
9831 2008-09-07  Bruno Haible  <bruno@clisp.org>
9832
9833         * build-aux/config.rpath: Update according to libtool-2.2.6.
9834         * build-aux/config.libpath: Likewise.
9835
9836 2008-09-06  Bruno Haible  <bruno@clisp.org>
9837
9838         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
9839         * lib/freadptr.c (freadptr): Likewise.
9840         * lib/freadseek.c (freadptrinc): Likewise.
9841         Reported by Simon Josefsson.
9842
9843 2008-09-06  Bruno Haible  <bruno@clisp.org>
9844
9845         * modules/freadptr (License): Change to LGPLv2+.
9846         * modules/freadseek (License): Likewise.
9847         Suggested by Eric Blake.
9848
9849         * modules/memchr2 (License): Change to LGPLv2+.
9850         Approved by Eric Blake.
9851
9852 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9853             Bruno Haible  <bruno@clisp.org>
9854
9855         Make gnulib-tool work with native 'sed' on AIX.
9856         * gnulib-tool (sed_noop): New variable.
9857         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
9858         func_add_or_update, func_create_testdir): Use it to initialize sed
9859         script variables.
9860         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
9861
9862 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
9863             Bruno Haible  <bruno@clisp.org>
9864
9865         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
9866         also works after #include directives.
9867
9868 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
9869
9870         getdate.y: reject an out-of-range timezone value
9871         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
9872         the range [-24...+24].  When specified with only one or two digits,
9873         * tests/test-getdate.c: Tests for the fix.
9874         * doc/getdate.texi: Document this change.
9875
9876 2008-09-03  Bruno Haible  <bruno@clisp.org>
9877
9878         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
9879
9880 2008-09-02  Simon Josefsson  <simon@josefsson.org>
9881
9882         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
9883         <bruce.korb@gmail.com> with ideas from Ben Pfaff
9884         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
9885         Blake <ebb9@byu.net>.
9886
9887         * tests/test-bitrotate.c: Add more test vectors.
9888
9889 2008-09-02  Eric Blake  <ebb9@byu.net>
9890
9891         vasnprintf-posix: handle large precision via %.*d
9892         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
9893         when handling it ourselves.
9894         * tests/test-vasnprintf-posix.c (test_function): Add test.
9895         * tests/test-snprintf-posix.h (test_function): Likewise.
9896         * tests/test-sprintf-posix.h (test_function): Likewise.
9897         * tests/test-vasprintf-posix.c (test_function): Likewise.
9898         Reported by Alain Guibert.
9899
9900 2008-09-01  Eric Blake  <ebb9@byu.net>
9901
9902         c-stack: make configure-time check more robust
9903         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
9904         successful sigaction call.
9905         Reported by Tom G. Christensen.
9906
9907 2008-09-01  Bruno Haible  <bruno@clisp.org>
9908
9909         New module 'findprog-lgpl'.
9910         * modules/findprog-lgpl: New file.
9911         * lib/findprog-lgpl.c: New file.
9912         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
9913         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
9914         to decide whether to use strdup or xstrdup, concatenated_filename or
9915         xconcatenated_filename.
9916
9917 2008-09-01  Bruno Haible  <bruno@clisp.org>
9918
9919         Split module 'concat-filename' into 'concat-filename' (LGPL) and
9920         'xconcat-filename' (GPL).
9921         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
9922         (License): Change to LGPLv2+.
9923         * modules/xconcat-filename: New file.
9924         * lib/concat-filename.h (concatenated_filename): Change specification.
9925         (xconcatenated_filename): New declaration.
9926         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
9927         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
9928         memory situations.
9929         * lib/xconcat-filename.c: New file.
9930         * NEWS: Mention the change.
9931         * lib/findprog.c: Include concat-filename.h, not filename.h.
9932         (find_in_path): Use xconcatenated_filename instead of
9933         concatenated_filename.
9934         * lib/javacomp.c: Include concat-filename.h, not filename.h.
9935         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
9936         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
9937         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
9938         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
9939         instead of concatenated_filename.
9940         * lib/javaexec.c: Include concat-filename.h, not filename.h.
9941         (execute_java_class): Use xconcatenated_filename instead of
9942         concatenated_filename.
9943         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
9944         * modules/javacomp (Depends-on): Likewise.
9945         * modules/javaexec (Depends-on): Likewise.
9946
9947 2008-09-01  Bruno Haible  <bruno@clisp.org>
9948
9949         Split module 'filename' into 'filename' and 'concat-filename'.
9950         * modules/filename: Keep only lib/filename.h.
9951         (License): Change to LGPLv2+.
9952         * modules/concat-filename: New file, extracted from modules/filename.
9953         * lib/filename.h (concatenated_filename): Remove declaration.
9954         * lib/concat-filename.h: New file, extracted from lib/filename.h.
9955         * lib/concat-filename.c: Include concat-filename.h.
9956         * NEWS: Mention the change.
9957
9958 2008-09-01  Simon Josefsson  <simon@josefsson.org>
9959
9960         * lib/bitrotate.h (rotl8, rotr8): Add.
9961
9962         * modules/bitrotate (configure.ac): Need
9963         AC_REQUIRE([AC_C_INLINE]).
9964         (Description): Mention stdint.h.  Reported by Bruno Haible
9965         <bruno@clisp.org>.
9966
9967         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
9968         Paolo Bonzini <bonzini@gnu.org>.
9969
9970 2008-08-31  Bruno Haible  <bruno@clisp.org>
9971
9972         Assume Solaris specific bi-arch conventions on Solaris systems.
9973         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
9974         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
9975         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
9976         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
9977         like acl_libdirstem.
9978         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
9979         acl_libdirstem.
9980         * NEWS: Mention the change.
9981         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
9982
9983 2008-08-31  Jim Meyering  <meyering@redhat.com>
9984
9985         * lib/strftime.h: Add comments describing the two added arguments.
9986
9987         remove duplicate #include directives
9988         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
9989         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
9990
9991 2008-08-31  Bruno Haible  <bruno@clisp.org>
9992
9993         New module 'sigpipe-die'.
9994         * modules/sigpipe-die: New file.
9995         * lib/sigpipe-die.h: New file.
9996         * lib/sigpipe-die.c: New file.
9997         * MODULES.html.sh (Signal handling): Add sigpipe-die.
9998
9999 2008-08-31  Bruno Haible  <bruno@clisp.org>
10000
10001         Don't override previously installed signal handlers.
10002         * lib/fatal-signal.c (saved_sigactions): New variable.
10003         (uninstall_handlers): Reset the signal to the saved handler, not
10004         to SIG_DFL (except when ignored).
10005         (install_handlers): Save the previous handlers.
10006
10007 2008-08-30  Bruno Haible  <bruno@clisp.org>
10008
10009         * gnulib-tool (func_reset_sigpipe): New function.
10010         (func_get_automake_snippet, func_modules_transitive_closure,
10011         func_import): Invoke it before a join command that reads from stdin,
10012         to avoid "echo: write error: Broken pipe" error messages on stderr.
10013         Reported by Sam Steingold <sds@gnu.org>.
10014
10015 2008-08-30  Bruno Haible  <bruno@clisp.org>
10016
10017         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
10018         Code copied from m4/open.m4.
10019         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
10020         access and the filename ends in a slash. Code copied from lib/open.c.
10021         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
10022         * tests/test-fopen.c (main): Check against bug with trailing slash.
10023
10024 2008-08-29  Bruno Haible  <bruno@clisp.org>
10025
10026         Avoid some "gcc -pedantic" warnings.
10027         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
10028         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
10029         * lib/dirent.in.h: Likewise.
10030         * lib/fcntl.in.h: Likewise.
10031         * lib/float.in.h: Likewise.
10032         * lib/iconv.in.h: Likewise.
10033         * lib/inttypes.in.h: Likewise.
10034         * lib/locale.in.h: Likewise.
10035         * lib/math.in.h: Likewise.
10036         * lib/netinet_in.in.h: Likewise.
10037         * lib/search.in.h: Likewise.
10038         * lib/signal.in.h: Likewise.
10039         * lib/stdarg.in.h: Likewise.
10040         * lib/stdint.in.h: Likewise.
10041         * lib/stdio.in.h: Likewise.
10042         * lib/stdlib.in.h: Likewise.
10043         * lib/string.in.h: Likewise.
10044         * lib/strings.in.h: Likewise.
10045         * lib/sys_select.in.h: Likewise.
10046         * lib/sys_socket.in.h: Likewise.
10047         * lib/sys_stat.in.h: Likewise.
10048         * lib/sys_time.in.h: Likewise.
10049         * lib/sysexits.in.h: Likewise.
10050         * lib/time.in.h: Likewise.
10051         * lib/unistd.in.h: Likewise.
10052         * lib/wchar.in.h: Likewise.
10053         * lib/wctype.in.h: Likewise.
10054         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
10055         * modules/fchdir (Makefile.am): Likewise.
10056         * modules/fcntl (Makefile.am): Likewise.
10057         * modules/float (Makefile.am): Likewise.
10058         * modules/iconv_open (Makefile.am): Likewise.
10059         * modules/inttypes (Makefile.am): Likewise.
10060         * modules/locale (Makefile.am): Likewise.
10061         * modules/math (Makefile.am): Likewise.
10062         * modules/netinet_in (Makefile.am): Likewise.
10063         * modules/search (Makefile.am): Likewise.
10064         * modules/signal (Makefile.am): Likewise.
10065         * modules/stdarg (Makefile.am): Likewise.
10066         * modules/stdint (Makefile.am): Likewise.
10067         * modules/stdio (Makefile.am): Likewise.
10068         * modules/stdlib (Makefile.am): Likewise.
10069         * modules/string (Makefile.am): Likewise.
10070         * modules/strings (Makefile.am): Likewise.
10071         * modules/sys_select (Makefile.am): Likewise.
10072         * modules/sys_socket (Makefile.am): Likewise.
10073         * modules/sys_stat (Makefile.am): Likewise.
10074         * modules/sys_time (Makefile.am): Likewise.
10075         * modules/sysexits (Makefile.am): Likewise.
10076         * modules/time (Makefile.am): Likewise.
10077         * modules/unistd (Makefile.am): Likewise.
10078         * modules/wchar (Makefile.am): Likewise.
10079         * modules/wctype (Makefile.am): Likewise.
10080         Reported by Reuben Thomas <rrt@sc3d.org>.
10081
10082 2008-08-29  Bruno Haible  <bruno@clisp.org>
10083
10084         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
10085         any more.
10086
10087 2008-08-29  Simon Josefsson  <simon@josefsson.org>
10088
10089         * MODULES.html.sh (Misc): Add bitrotate.
10090
10091         * modules/bitrotate: New file.
10092
10093         * lib/bitrotate.h: New file.
10094
10095         * modules/bitrotate-tests: New file.
10096
10097         * tests/test-bitrotate.c: New file.
10098
10099         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
10100         on the bitrotate module.
10101
10102         * lib/arctwo.c: Use new bitrotate module.
10103
10104 2008-08-29  Jim Meyering  <meyering@redhat.com>
10105
10106         bootstrap: merge changes from coreutils
10107         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
10108         of copied files.  Remove a kludge, now that this is fixed.
10109         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
10110         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
10111         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
10112
10113 2008-08-29  Bruno Haible  <bruno@clisp.org>
10114
10115         * MODULES.html.sh: Remove --cvs-urls option.
10116
10117 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
10118
10119         maint.mk: adjust to file name change
10120         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
10121
10122 2008-08-28  Jim Meyering  <meyering@redhat.com>
10123
10124         * modules/getndelim2 (License): Relicense to LGPLv2+.
10125         Approved by Richard Stallman for the version of 1995, and by
10126         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
10127
10128 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
10129
10130         * lib/getdelim.c (flockfile, funlockfile): Make all of them
10131         dummy if one is not available.  Do not touch them if
10132         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
10133         (getc_maybe_unlocked): New.
10134         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
10135
10136 2008-08-26  Eric Blake  <ebb9@byu.net>
10137
10138         doc/INSTALL: resync from autoconf
10139         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
10140         (INSTALL_PRELUDE): Delete; this is done more efficiently by
10141         moving...
10142         * install.texi [!autoconf]: ...here.  Resync from autoconf.
10143         * INSTALL: Regenerate.
10144         * INSTALL.ISO: New file.
10145         * INSTALL.UTF-8: Likewise.
10146
10147 2008-08-26  Jim Meyering  <meyering@redhat.com>
10148
10149         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
10150         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
10151         these definitions conditional, so that they may be overridden, too.
10152
10153 2008-08-26  Bruno Haible  <bruno@clisp.org>
10154
10155         Generate INSTALL file variants with prettier quotes.
10156         * doc/Makefile (INSTALL_PRELUDE): New macro.
10157         (INSTALL): Use it.
10158         (INSTALL.ISO, INSTALL.UTF-8): New rules.
10159
10160 2008-08-26  Bruno Haible  <bruno@clisp.org>
10161
10162         Run makeinfo in an English locale.
10163         * doc/Makefile (MAKEINFO): New variable.
10164
10165 2008-08-26  Bruno Haible  <bruno@clisp.org>
10166
10167         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
10168         Suggested by Eric Blake.
10169
10170 2008-08-25  Bruno Haible  <bruno@clisp.org>
10171
10172         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
10173
10174 2008-08-25  Eric Blake  <ebb9@byu.net>
10175
10176         c-stack: test that stack overflow can be caught
10177         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
10178         that platform allows handling stack overflow; at least OS/2 EMX
10179         has sigaltstack, but crashes before transferring control to
10180         handler on stack overflow.
10181         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
10182         check for HAVE_STACK_OVERFLOW_HANDLING.
10183         Reported by Elbert Pol.
10184
10185 2008-08-25  Bruno Haible  <bruno@clisp.org>
10186
10187         * doc/posix-functions/strftime.texi: Fix description of strftime
10188         module.
10189
10190 2008-08-24  Bruno Haible  <bruno@clisp.org>
10191
10192         * tests/uniwidth/test-uc_width2.c: New file.
10193         * tests/uniwidth/test-uc_width2.sh: New file.
10194         * modules/uniwidth/width-tests (Files): Add the new files.
10195         (TESTS): Add uniwidth/test-uc_width2.sh.
10196         (TESTS_ENVIRONMENT): New variable.
10197         (check_PROGRAMS): Add test-uc_width2.
10198         (test_uc_width2_SOURCES): New variable.
10199
10200         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
10201         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
10202         not 0x00AB.
10203         Reported by Alexander V. Lukyanov <lav@netis.ru>.
10204
10205 2008-08-22  Eric Blake  <ebb9@byu.net>
10206
10207         test-lock, test-tls: mention why a test is skipped
10208         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
10209         skipped.
10210         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
10211
10212         count-one-bits: relax license
10213         * modules/count-one-bits (License): Relicense to LGPLv2+.
10214         Suggested by Ludovic Courtès, approved by Ben Pfaff.
10215
10216 2008-08-22  Andreas Schwab  <schwab@suse.de>
10217
10218         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
10219         Remove spurious space in assignment.
10220
10221 2008-08-21  Simon Josefsson  <simon@josefsson.org>
10222
10223         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
10224         Paul Eggert <eggert@CS.UCLA.EDU>.
10225
10226 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
10227
10228         * modules/gettext: Add m4/threadlib.m4.
10229
10230 2008-08-19  Eric Blake  <ebb9@byu.net>
10231
10232         test-c-stack: fix compilation failure on FreeBSD 5.0
10233         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
10234         headers before <sys/resource.h>.
10235         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
10236         the bug.
10237         Reported by Nelson H. F. Beebe.
10238
10239         strverscmp: migrate from "strverscmp.h" to <string.h>
10240         * modules/string (Makefile.am): Add new hooks.
10241         * modules/strverscmp (Files): Remove strverscmp.h.
10242         (Depends-on): Add string.
10243         (configure.ac): Add indicator.
10244         (Include): Mention new header.
10245         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
10246         defaults.
10247         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
10248         results.
10249         * lib/strverscmp.h: Delete.
10250         * lib/string.in.h (strverscmp): Provide declaration, when needed.
10251         * tests/test-strverscmp.c (includes): Adjust client.
10252         * lib/check-version.c (includes): Likewise.
10253         * NEWS: Document the change.
10254
10255         strverscmp: add unit test
10256         * modules/strverscmp-tests: New file.
10257         * tests/test-strverscmp.c: Likewise.
10258
10259 2008-08-19  Simon Josefsson  <simon@josefsson.org>
10260
10261         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
10262         regarding Windows crypto stuff, from Mono.
10263
10264 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
10265
10266         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
10267         if present, for intel RND.  Return error on failures.
10268
10269 2008-08-18  Ben Pfaff  <blp@gnu.org>
10270
10271         gitlog-to-changelog: give better diagnostic for failed pipe-open
10272         * build-aux/gitlog-to-changelog: Improve error message: suggest
10273         that the version of Git may be too old.
10274
10275 2008-08-18  Simon Josefsson  <simon@josefsson.org>
10276
10277         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
10278         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
10279
10280 2008-08-18  Bruno Haible  <bruno@clisp.org>
10281
10282         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
10283         pthread_in_use().
10284
10285 2008-08-18  Bruno Haible  <bruno@clisp.org>
10286
10287         * lib/glthread/threadlib.c: Include <pthread.h>.
10288
10289 2008-08-18  Bruno Haible  <bruno@clisp.org>
10290
10291         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
10292         glthread_recursive_lock_* macros.
10293         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
10294         Fix syntax error.
10295
10296 2008-08-18  Bruno Haible  <bruno@clisp.org>
10297
10298         * lib/glthread/thread.c: Avoid forcing a context switch right after
10299         thread creation.
10300
10301 2008-08-17  Bruno Haible  <bruno@clisp.org>
10302
10303         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
10304         * lib/glthread/thread.h: Provide Win32 specific implementation.
10305         * modules/thread (Files): Add lib/glthread/thread.c.
10306         (Depends-on): Add lock.
10307         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
10308
10309 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10310
10311         New module 'yield'.
10312         * modules/yield: New file.
10313         * lib/glthread/yield.h: New file.
10314         * m4/yield.m4: New file.
10315         * MODULES.html.sh (Multithreading): Add yield.
10316
10317 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10318
10319         New module 'thread'.
10320         * modules/thread: New file.
10321         * lib/glthread/thread.h: New file.
10322         * m4/thread.m4: New file.
10323         * MODULES.html.sh (Multithreading): Add thread.
10324
10325 2008-08-17  Bruno Haible  <bruno@clisp.org>
10326
10327         * lib/glthread/lock.h: Include <stdlib.h> always.
10328         * lib/glthread/tls.h: Likewise.
10329         * lib/glthread/cond.h: Likewise.
10330
10331 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10332
10333         New module 'cond'.
10334         * modules/cond: New file.
10335         * lib/glthread/cond.h: New file.
10336         * lib/glthread/cond.c: New file.
10337         * m4/cond.m4: New file.
10338         * MODULES.html.sh (Multithreading): Add cond.
10339
10340 2008-08-16  Eric Blake  <ebb9@byu.net>
10341
10342         c-stack: fix regression on Irix 5.3 from 2008-06-21
10343         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
10344         sa_sigaction...
10345         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
10346         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
10347         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
10348         * modules/signal (Makefile.am): Use the value.
10349         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
10350         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
10351         * doc/posix-headers/signal.texi (signal.h): Document this
10352         portability issue.
10353         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
10354         Reported by Tom G. Christensen.
10355
10356 2008-08-17  Bruno Haible  <bruno@clisp.org>
10357
10358         New module 'threadlib'.
10359         * modules/threadlib: New file.
10360         * lib/glthread/threadlib.c: New file, extracted from
10361         lib/glthread/lock.c.
10362         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
10363         functions.
10364         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
10365         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
10366         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
10367         macros.
10368         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
10369         (gl_DISABLE_THREADS): Remove macro.
10370         * modules/lock (Files): Remove build-aux/config.rpath.
10371         (Depends-on): Remove havelib. Add threadlib.
10372         (configure.ac-early): Remove section.
10373         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
10374         * modules/tls (Depends-on): Remove lock. Add threadlib.
10375         (Link): New section, copied from threadlib.
10376         * MODULES.html.sh (Multithreading): Add threadlib.
10377
10378 2008-08-14  Bruno Haible  <bruno@clisp.org>
10379
10380         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
10381         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
10382         glthread_rwlock_unlock, glthread_rwlock_destroy,
10383         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
10384         glthread_recursive_lock_destroy): Define as macros always.
10385         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
10386         glthread_lock_lock.
10387         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
10388         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
10389         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
10390         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
10391         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
10392         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
10393         (glthread_recursive_lock_lock_func): Renamed from
10394         glthread_recursive_lock_lock.
10395         (glthread_recursive_lock_unlock_func): Renamed from
10396         glthread_recursive_lock_unlock.
10397         (glthread_recursive_lock_destroy_func): Renamed from
10398         glthread_recursive_lock_destroy.
10399
10400 2008-08-14  Bruno Haible  <bruno@clisp.org>
10401
10402         * lib/glthread/lock.h: Renamed from lib/lock.h.
10403         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
10404         * lib/glthread/tls.h: Renamed from lib/tls.h.
10405         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
10406         * lib/fstrcmp.c: Update includes.
10407         * lib/strsignal.c: Update includes.
10408         * modules/lock (Files, Makefile.am): Update.
10409         (Include): Change to "glthread/lock.h".
10410         * modules/tls (Files, Makefile.am): Update.
10411         (Include): Change to "glthread/tls.h".
10412         * tests/test-lock.c: Update includes.
10413         * tests/test-tls.c: Update includes.
10414         * NEWS: Mention the renamed header files.
10415
10416 2008-08-11  Jim Meyering  <meyering@redhat.com>
10417
10418         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
10419
10420 2008-08-11  Eric Blake  <ebb9@byu.net>
10421
10422         test-c-stack: avoid C99-ism
10423         * tests/test-c-stack.c (main): Fix whitespace, move declaration
10424         before statement.
10425         Reported by Alain Guibert.
10426
10427 2008-08-10  Jim Meyering  <meyering@redhat.com>
10428
10429         ensure that return value of uinttostr et al are not ignored
10430         * lib/inttostr.h (__GNUC_PREREQ): Define.
10431         (__attribute_warn_unused_result__): Define.
10432         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
10433
10434 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
10435
10436         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
10437         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
10438
10439 2008-08-07  Jim Meyering  <meyering@redhat.com>
10440
10441         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
10442
10443         * modules/mkstemp (License): Relicense under LGPLv2+.
10444         * modules/tempname (License): Likewise.
10445
10446 2008-08-06  Bruno Haible  <bruno@clisp.org>
10447
10448         * lib/poll.c (poll): Further micro-optimization.
10449
10450 2008-08-06  Jim Meyering  <meyering@redhat.com>
10451
10452         inet_pton.c: use locale-independent tolower
10453         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
10454         (inet_pton6): Use c_tolower rather than tolower.
10455         * modules/inet_pton (Depends-on): Add c-ctype.
10456
10457 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
10458
10459         * lib/poll.c (poll): Avoid division when timeout is 0, cache
10460         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
10461
10462 2008-08-06  Jim Meyering  <meyering@redhat.com>
10463
10464         * modules/inet_pton (License): Relicense under LGPLv2+.
10465
10466 2008-08-03  Bruno Haible  <bruno@clisp.org>
10467
10468         Additional non-aborting API for lock and tls.
10469         * lib/lock.h: Include <errno.h>.
10470         (glthread_lock_init): New macro/function.
10471         (gl_lock_init): Define as wrapper around glthread_lock_init.
10472         (glthread_lock_lock): New macro/function.
10473         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
10474         (glthread_lock_unlock): New macro/function.
10475         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
10476         (glthread_lock_destroy): New macro/function.
10477         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
10478         (glthread_rwlock_init): New macro/function.
10479         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
10480         (glthread_rwlock_rdlock): New macro/function.
10481         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
10482         (glthread_rwlock_wrlock): New macro/function.
10483         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
10484         (glthread_rwlock_unlock): New macro/function.
10485         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
10486         (glthread_rwlock_destroy): New macro/function.
10487         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
10488         (glthread_recursive_lock_init): New macro/function.
10489         (gl_recursive_lock_init): Define as wrapper around
10490         glthread_recursive_lock_init.
10491         (glthread_recursive_lock_lock): New macro/function.
10492         (gl_recursive_lock_lock): Define as wrapper around
10493         glthread_recursive_lock_lock.
10494         (glthread_recursive_lock_unlock): New macro/function.
10495         (gl_recursive_lock_unlock): Define as wrapper around
10496         glthread_recursive_lock_unlock.
10497         (glthread_recursive_lock_destroy): New macro/function.
10498         (gl_recursive_lock_destroy): Define as wrapper around
10499         glthread_recursive_lock_destroy.
10500         (glthread_once): New macro/function.
10501         (gl_once): Define as wrapper around glthread_once.
10502         Update function declarations.
10503         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
10504         glthread_rwlock_init. Return error code.
10505         (glthread_rwlock_rdlock_multithreaded): Renamed from
10506         glthread_rwlock_rdlock. Return error code.
10507         (glthread_rwlock_wrlock_multithreaded): Renamed from
10508         glthread_rwlock_wrlock. Return error code.
10509         (glthread_rwlock_unlock_multithreaded): Renamed from
10510         glthread_rwlock_unlock. Return error code.
10511         (glthread_rwlock_destroy_multithreaded): Renamed from
10512         glthread_rwlock_destroy. Return error code.
10513         (glthread_recursive_lock_init_multithreaded): Renamed from
10514         glthread_recursive_lock_init. Return error code.
10515         (glthread_recursive_lock_lock_multithreaded): Renamed from
10516         glthread_recursive_lock_lock. Return error code.
10517         (glthread_recursive_lock_unlock_multithreaded): Renamed from
10518         glthread_recursive_lock_unlock. Return error code.
10519         (glthread_recursive_lock_destroy_multithreaded): Renamed from
10520         glthread_recursive_lock_destroy. Return error code.
10521         (glthread_once_call): Make static.
10522         (glthread_once_multithreaded): Renamed from glthread_once.
10523         * lib/tls.h: Include <errno.h>.
10524         (glthread_tls_key_init): New macro/function.
10525         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
10526         (glthread_tls_set): New macro/function.
10527         (gl_tls_set): Define as wrapper around glthread_tls_set.
10528         (glthread_tls_key_destroy): New macro/function.
10529         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
10530         Update function declarations.
10531         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
10532         glthread_tls_get.
10533         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
10534
10535 2008-08-04  Eric Blake  <ebb9@byu.net>
10536
10537         gnumakefile: use space, not TAB, outside of targets
10538         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
10539
10540 2008-08-02  Jim Meyering  <meyering@redhat.com>
10541
10542         getdate.y: avoid locale-dependent date parsing failure
10543         In Turkish locales, getdate would fail to recognize keywords
10544         containing a lowercase "i".  The solution is not to rely on
10545         locale-sensitive case-conversion.
10546         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
10547         (lookup_word): Use c_toupper in place of toupper.
10548         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
10549         Reported by Vefa Bicakci <bicave@superonline.com> in
10550         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
10551         * modules/getdate (Depends-on): Add c-ctype.
10552
10553 2008-08-02  Bruno Haible  <bruno@clisp.org>
10554
10555         * gnulib-tool (func_import): When updating or creating a .gitignore
10556         file, prepend each added line with a slash, and ignore leading slashes
10557         from the existing lines.
10558         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
10559
10560 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10561
10562         Portability fix for GNU make 3.79.1.
10563         * top/GNUmakefile: Avoid 'else COND', which older GNU make
10564         versions do not understand.
10565
10566 2008-08-01  Bruno Haible  <bruno@clisp.org>
10567
10568         Work around bug of HP-UX 10.20 cc with -0.0 literal.
10569         * tests/test-isnanf.h (zero): New variable.
10570         (main): Avoid literal -0.0f.
10571         * tests/test-isnand.h (zero): New variable.
10572         (main): Avoid literal -0.0.
10573         * tests/test-isnanl.h (zero): New variable.
10574         (main): Avoid literal -0.0L.
10575         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
10576         (test_float, test_double, test_long_double): Avoid literals -0.0f,
10577         -0.0, -0.0L.
10578         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
10579         (test_signbitd): Avoid literal -0.0.
10580         (test_signbitl): Avoid literal -0.0L.
10581         * tests/test-ceilf1.c (zero): New variable.
10582         (main): Avoid literal -0.0f.
10583         * tests/test-ceill.c (zero): New variable.
10584         (main): Avoid literal -0.0L.
10585         * tests/test-floorf1.c (zero): New variable.
10586         (main): Avoid literal -0.0f.
10587         * tests/test-floorl.c (zero): New variable.
10588         (main): Avoid literal -0.0L.
10589         * tests/test-roundf1.c (zero): New variable.
10590         (main): Avoid literal -0.0f.
10591         * tests/test-round1.c (zero): New variable.
10592         (main): Avoid literal -0.0.
10593         * tests/test-roundl.c (zero): New variable.
10594         (main): Avoid literal -0.0L.
10595         * tests/test-truncf1.c (zero): New variable.
10596         (main): Avoid literal -0.0f.
10597         * tests/test-trunc1.c (zero): New variable.
10598         (main): Avoid literal -0.0.
10599         * tests/test-truncl.c (zero): New variable.
10600         (main): Avoid literal -0.0L.
10601         * tests/test-frexp.c (zero): New variable.
10602         (main): Avoid literal -0.0.
10603         * tests/test-frexpl.c (zero): New variable.
10604         (main): Avoid literal -0.0L.
10605         * tests/test-ldexpl.c (zero): New variable.
10606         (main): Avoid literal -0.0L.
10607         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
10608         (zerod, zerol): New variables.
10609         (test_function): Avoid literals -0.0, -0.0L.
10610         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
10611         (zerod, zerol): New variables.
10612         (test_function): Avoid literals -0.0, -0.0L.
10613         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
10614         (zerod, zerol): New variables.
10615         (test_function): Avoid literals -0.0, -0.0L.
10616         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
10617         (zerod, zerol): New variables.
10618         (test_function): Avoid literals -0.0, -0.0L.
10619         * tests/test-strtod.c (zero): New variable.
10620         (main): Avoid literal -0.0.
10621         Reported by Jonathan C. Patschke <jp@centtech.com>.
10622
10623 2008-07-31  Jim Meyering  <meyering@redhat.com>
10624
10625         sha256.h: correct definition of SHA224_DIGEST_SIZE
10626         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
10627         Reported by Paulie Pena IV <paulie4@gmail.com>.
10628         Define as 224 / 8, rather than as a literal.
10629         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
10630         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
10631         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
10632
10633 2008-07-31  Bruno Haible  <bruno@clisp.org>
10634
10635         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
10636         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
10637         Reported by Jonathan Patschke <jp@centtech.com>.
10638
10639 2008-07-31  Bruno Haible  <bruno@clisp.org>
10640
10641         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
10642         Reported by Paolo Bonzini <bonzini@gnu.org>.
10643
10644 2008-07-30  Eric Blake  <ebb9@byu.net>
10645
10646         test-strtod: allow compilation without -lm
10647         * tests/test-strtod.c (main): Avoid link dependence on fabs.
10648         Reported by Dennis Clarke <blastwave@gmail.com>.
10649
10650 2008-07-28  Jim Meyering  <meyering@redhat.com>
10651
10652         bootstrap: work also when there are no .po files in po/
10653         * build-aux/bootstrap (update_po_files): Complete the change
10654         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
10655
10656 2008-07-27  Jim Meyering  <meyering@redhat.com>
10657
10658         * users.txt: Add zile.
10659
10660 2008-07-26  Ben Pfaff  <blp@gnu.org>
10661
10662         Add missing dependencies on new m4/exponent[fdl].m4 files.
10663         * modules/isnanf-nolibm: Add m4/exponentf.m4.
10664         * modules/isnand-nolibm: Add m4/exponentd.m4.
10665         * modules/isnanl-nolibm: Add m4/exponentl.m4.
10666         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
10667         m4/isnan[fdl].m4, because the macros actually used moved.
10668         Reported by Jim Meyering.
10669
10670 2008-07-14  Ben Pfaff  <blp@gnu.org>
10671
10672         Add isinf module.
10673         * lib/isinf.c: New file.
10674         * lib/math.in.h: Define isinf macro if we have decided to replace
10675         it.
10676         * m4/isinf.m4: New file.
10677         * m4/math_h.m4: Initialize and substitute variables for isinf
10678         module.
10679         * modules/isinf: New file.
10680         * modules/isinf-tests: New file.
10681         * modules/math: Add substitutions for new module.
10682         * tests/test-isinf.c: New file.
10683         * doc/posix-functions/isinf.texi: Mention new module.
10684         * MODULES.html.sh: Mention new module.
10685
10686 2008-07-14  Ben Pfaff  <blp@gnu.org>
10687
10688         Factor out some macros for use by additional modules.
10689         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
10690         exponentf.m4.
10691         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
10692         exponentd.m4.
10693         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
10694         file exponentl.m4.
10695         * m4/exponentf.m4: New file.
10696         * m4/exponentd.m4: New file.
10697         * m4/exponentl.m4: New file.
10698         * modules/isnanf: Use new file m4/exponentf.m4.
10699         * modules/isnand: Use new file m4/exponentd.m4.
10700         * modules/isnanl: Use new file m4/exponentl.m4.
10701
10702 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
10703
10704         mktime.c: normalize tp->tm_isdst value to -1/0/1.
10705         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
10706         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
10707         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
10708
10709         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
10710         readlink on platforms without PATH_MAX.
10711
10712 2008-07-21  Eric Blake  <ebb9@byu.net>
10713
10714         Warn, not fail, on stale version.
10715         * top/GNUmakefile (_curr-ver): Tone down previous patch.
10716
10717         Don't allow installation with stale devel version number.
10718         * top/GNUmakefile (_is-install-target): New macro.
10719         (_curr-ver): Forbid installation with stale version number.
10720
10721 2008-07-20  Bruno Haible  <bruno@clisp.org>
10722
10723         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
10724         TESTS_ENVIRONMENT.
10725         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
10726
10727 2008-07-20  Bruno Haible  <bruno@clisp.org>
10728
10729         * lib/c-stack.h (c_stack_action): Add documentation.
10730         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
10731
10732 2008-07-20  Bruno Haible  <bruno@clisp.org>
10733
10734         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
10735         * modules/readlink (License): Likewise.
10736
10737 2008-07-17  Eric Blake  <ebb9@byu.net>
10738
10739         * modules/c-stack (Link): Fix typo.
10740
10741         Make c-stack use libsigsegv, when available.
10742         * modules/c-stack (Depends-on): Add libsigsegv.
10743         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
10744         needed.
10745         * lib/c-stack.c (SIGSTKSZ): Define fallback.
10746         (segv_handler, overflow_handler, c_stack_action)
10747         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
10748         implementation when libsigsegv is available, but only when using
10749         the library is necessary.
10750         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
10751         comment, explaining why XSI check fails on Linux.
10752         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
10753         * tests/test-c-stack2.sh: Tweak skip message.
10754         * NEWS: Document new link-time requirements.
10755
10756 2008-07-16  Eric Blake  <ebb9@byu.net>
10757
10758         c-stack: Expose false positives when not using libsigsegv.
10759         * modules/c-stack-tests (Files): Expand test.
10760         * tests/test-c-stack.c (main): Add means to conditionally trigger
10761         non-overflow SIGSEGV.
10762         * tests/test-c-stack2.sh: New file.
10763
10764 2008-07-14  Bruno Haible  <bruno@clisp.org>
10765
10766         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
10767         Reported by Eric Blake.
10768
10769 2008-07-14  Sam Steingold  <sds@gnu.org>
10770             Bruno Haible  <bruno@clisp.org>
10771
10772         New module libsigsegv.
10773         * modules/libsigsegv: New file.
10774         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
10775         modifications.
10776         * MODULES.html.sh (Signal handling): New section.
10777
10778 2008-07-14  Bruno Haible  <bruno@clisp.org>
10779
10780         * modules/unictype/ctype-* (Description): Add the word "function".
10781         Improves the resulting doc in MODULES.html.
10782
10783 2008-07-12  Ben Pfaff  <blp@gnu.org>
10784
10785         Add longlong module.
10786         * modules/longlong: New file.
10787
10788 2008-07-12  Bruno Haible  <bruno@clisp.org>
10789
10790         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
10791         to empty.
10792
10793 2008-07-10  Ben Pfaff  <blp@gnu.org>
10794
10795         Add isnan module.
10796         * doc/posix-functions/isnan.texi: Mention new module.
10797         * lib/math.in.h: Define isnan macro if we have decided to replace
10798         it.
10799         * m4/isnan.m4: New file.
10800         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
10801         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
10802         also.
10803         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
10804         redundancy.
10805         * m4/math_h.m4: Initialize and substitute variables for isnan
10806         module.
10807         * modules/isnan: New file.
10808         * modules/isnan-tests: New file.
10809         * modules/math: Add substitutions for new module.
10810         * tests/test-isnan.c: New file.
10811         * MODULES.html.sh: Mention new module.
10812
10813 2008-07-10  Ben Pfaff  <blp@gnu.org>
10814
10815         Add isnanf module.
10816         * lib/isnanf.m4: New file.
10817         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
10818         (gl_HAVE_ISNANF_IN_LIBM): New macro.
10819         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
10820         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
10821         * modules/isnanf: New file.
10822         * modules/isnanf-tests: New file.
10823         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
10824         files.
10825         * tests/test-isnanf-nolibm.c: factored most of its contents into
10826         new file tests/test-isnanf.h.
10827         * tests/test-isnanf.h: New file.
10828         * tests/test-isnanf.c: New file.
10829         * MODULES.html.sh: Mention new module.
10830         * doc/glibc-functions/isnanf.texi: Mention new module.
10831
10832 2008-07-10  Ben Pfaff  <blp@gnu.org>
10833
10834         Add isnand module.
10835         * lib/isnand.h: New file.
10836         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
10837         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
10838         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
10839         functionality also.
10840         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
10841         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
10842         (gl_HAVE_ISNAND_IN_LIBM): New macro.
10843         * modules/isnand: New file.
10844         * modules/isnand-tests: New file.
10845         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
10846         files.
10847         * tests/test-isnand-nolibm.c: factored most of its contents into
10848         new file tests/test-isnand.h.
10849         * tests/test-isnand.h: New file.
10850         * tests/test-isnand.c: New file.
10851         * MODULES.html.sh: Mention new module.
10852
10853 2008-07-10  Ben Pfaff  <blp@gnu.org>
10854
10855         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
10856         * lib/isnand.h: Rename lib/isnand-nolibm.h.
10857         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
10858         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
10859         * modules/isnanf-nolibm: Update references to renamed files.
10860         * modules/isnand-nolibm: Likewise.
10861         * modules/isnanf-nolibm-tests: Likewise.
10862         * modules/isnand-nolibm-tests: Likewise.
10863         * lib/frexp.c: Likewise.
10864         * lib/isfinite.c: Likewise.
10865         * lib/signbitd.c: Likewise.
10866         * lib/signbitf.c: Likewise.
10867         * lib/vasnprintf.c: Likewise.
10868         * tests/test-ceilf1.c: Likewise.
10869         * tests/test-ceilf2.c: Likewise.
10870         * tests/test-floorf1.c: Likewise.
10871         * tests/test-floorf2.c: Likewise.
10872         * tests/test-frexp.c: Likewise.
10873         * tests/test-round1.c: Likewise.
10874         * tests/test-round2.c: Likewise.
10875         * tests/test-roundf1.c: Likewise.
10876         * tests/test-strtod.c: Likewise.
10877         * tests/test-trunc1.c: Likewise.
10878         * tests/test-trunc2.c: Likewise.
10879         * tests/test-truncf1.c: Likewise.
10880         * tests/test-truncf2.c: Likewise.
10881         * NEWS: Mention the renamed header files.
10882
10883 2008-07-11  Jim Meyering  <meyering@redhat.com>
10884
10885         vc-list-files: make the last-resort awk code more portable
10886         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
10887         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
10888         does not support it.
10889
10890 2008-07-10  Eric Blake  <ebb9@byu.net>
10891
10892         Work with tar's bootstrap.
10893         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
10894         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
10895         an m4 comment.
10896
10897 2008-07-09  Jim Meyering  <meyering@redhat.com>
10898
10899         posix-shell.m4: fix typo that made this test malfunction
10900         * m4/posix-shell.m4: Remove capitalization in variable name.
10901
10902 2008-07-08  Bruno Haible  <bruno@clisp.org>
10903
10904         * m4/onceonly.m4: Update comments.
10905         Reported by Ben Pfaff <blp@cs.stanford.edu>.
10906
10907 2008-07-04  Jim Meyering  <meyering@redhat.com>
10908
10909         * users.txt: Add vc-dwim.
10910         (bison, coreutils): Use the gitweb URL.
10911
10912 2008-07-03  Jim Meyering  <meyering@redhat.com>
10913
10914         * users.txt: Add libffcall.  From Sam Steingold.
10915
10916 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
10917
10918         getdate.y: do not ignore TZ with relative day, month or year offset
10919         * lib/getdate.y (get_date): Move the tz-handling block to follow the
10920         relative-date-handling, since otherwise, the latter would clobber the
10921         sole output (an updated Start value) of the tz-handling block.
10922         * tests/test-getdate.c: Tests for the fix
10923
10924 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10925
10926         Recognize 'foo_LIBRARIES += libgnu.a'.
10927         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
10928         makefile snippet has already specified an installation location,
10929         also using '+='.
10930
10931 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
10932
10933         getdate.y: factor out common actions
10934         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
10935         Use them in place of open-coded actions.
10936
10937 2008-07-01  Simon Josefsson  <simon@josefsson.org>
10938
10939         Add self-test for getdate module.
10940         * modules/getdate-tests: New file.
10941         * tests/test-getdate.c: New file.
10942
10943 2008-06-29  Bruno Haible  <bruno@clisp.org>
10944
10945         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
10946         .gitignore.
10947         Reported by Sylvain Beucler <beuc@beuc.net>.
10948
10949 2008-06-29  Bruno Haible  <bruno@clisp.org>
10950
10951         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
10952         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
10953
10954 2008-06-29  Bruno Haible  <bruno@clisp.org>
10955
10956         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
10957         EXTRA_DIST.
10958         Reported by Sylvain Beucler <beuc@beuc.net>.
10959
10960 2008-06-26  Jim Meyering  <meyering@redhat.com>
10961
10962         make several modules depend on the "open" module
10963         This provides slightly increased consistency when opening-for-write
10964         the name of a non-directory spelled with a trailing slash.
10965         * modules/chdir-safer: Likewise.
10966         * modules/chown: Likewise.
10967         * modules/clean-temp: Likewise.
10968         * modules/copy-file: Likewise.
10969         * modules/fchdir: Likewise.
10970         * modules/fcntl-safer: Likewise.
10971         * modules/pipe: Likewise.
10972         * modules/utime: Likewise.
10973         Prompted by Eric Blake and Bruno Haible.
10974
10975 2008-06-24  Andreas Schwab  <schwab@suse.de>
10976
10977         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
10978         literals can be used as initializers for global variables.
10979
10980 2008-06-23  Eric Blake  <ebb9@byu.net>
10981
10982         Make gnulib-cache.m4 easier to diff.
10983         * gnulib-tool (func_import): Allow newlines when reading cached
10984         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
10985
10986 2008-06-23  Bruno Haible  <bruno@clisp.org>
10987
10988         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
10989         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
10990         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
10991         m4/signalblocking.m4.
10992         (gl_PREREQ_SIGACTION): Don't invoke it.
10993         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
10994         gl_PREREQ_SIG_HANDLER_H.
10995         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
10996         Don't check for sigaction here.
10997
10998 2008-06-23  Bruno Haible  <bruno@clisp.org>
10999
11000         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
11001         (install_handlers): Don't set the SA_RESETHAND flag.
11002
11003 2008-06-23  Bruno Haible  <bruno@clisp.org>
11004
11005         * m4/sigaction.m4: Comment fixes.
11006         * lib/signal.in.h: Likewise.
11007
11008 2008-06-23  Eric Blake  <ebb9@byu.net>
11009
11010         Fix typo.
11011         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
11012
11013         Avoid SA_ namespace.
11014         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
11015         Reported by Ralf Wildenhues.
11016
11017         Avoid test failure due to SA_RESTORER.
11018         * tests/test-sigaction.c (SA_MASK): New macro.
11019         (main): Avoid failing due to extension flags being set.
11020         Reported by Jim Meyering.
11021
11022         Revert use of sig-handler.h in sigprocmask.c.
11023         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
11024         it requires the existence of struct sigaction.
11025         * lib/sigprocmask.c (handler_t): Restore typedef.
11026         (rpl_signal, old_handlers): Use local type.
11027
11028 2008-06-22  Bruno Haible  <bruno@clisp.org>
11029
11030         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
11031         conditionally.
11032         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11033
11034 2008-06-22  Bruno Haible  <bruno@clisp.org>
11035
11036         * doc/posix-functions/siginterrupt.texi: Move note.
11037
11038         * lib/signal.in.h (SA_RESTART): New macro.
11039         * lib/sigaction.c: Update comment.
11040
11041         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
11042
11043         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
11044         (gl_PREREQ_SIGPROCMASK): Invoke it.
11045         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
11046
11047         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
11048
11049         * lib/sigprocmask.c: Update a comment.
11050
11051 2008-06-21  Eric Blake  <ebb9@byu.net>
11052
11053         Use sigaction module rather than signal().
11054         * modules/c-stack (Depends-on): Add sigaction.
11055         * modules/fatal-signal (Depends-on): Likewise.
11056         * modules/nanosleep (Depends-on): Likewise.
11057         * modules/sigprocmask (Files): Add sig-handler.h.
11058         * modules/sigaction (Files): Likewise.
11059         * lib/sig-handler.h (get_handler): New file, suggested by Paul
11060         Eggert.
11061         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
11062         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
11063         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
11064         (init_fatal_signals): Likewise.
11065         * lib/nanosleep.c (rpl_nanosleep): Likewise.
11066         (siginterrupt): Delete fallback.
11067         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
11068         instead.
11069         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
11070         siginterrupt.
11071
11072         New module sigaction, for mingw.
11073         * modules/sigaction: New module...
11074         * modules/sigaction-tests: ...and its test.
11075         * m4/sigaction.m4: New file.
11076         * lib/sigaction.c: Likewise.
11077         * tests/test-sigaction.c: Likewise.
11078         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
11079         * modules/signal (Makefile.am): Likewise.
11080         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
11081         needed.
11082         * doc/posix-headers/signal.texi (signal.h): Mention provided
11083         types.
11084         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
11085         that sigaction is preferable.
11086         * doc/posix-functions/sigaction.texi (sigaction): Mention new
11087         module.
11088         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11089         sigaction.
11090
11091         Improve robustness of sigprocmask by overriding signal.
11092         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
11093         is in use.
11094         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
11095         (SIGKILL, SIGSTOP): Provide fallbacks.
11096         (rpl_signal): Implement.
11097         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
11098         signal can be called inside handlers.
11099
11100         Fix nanosleep module on mingw.
11101         * modules/nanosleep (Depends-on): Add sys_select.
11102         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
11103
11104         Fix licensing of sigprocmask.
11105         * modules/raise (License): Relicense as LGPL.
11106
11107 2008-06-21  Bruno Haible  <bruno@clisp.org>
11108
11109         * lib/propername.c (proper_name_utf8): Don't use the transliterated
11110         result if it contains question marks.
11111         Reported by Michael Geng <linux@michaelgeng.de>.
11112
11113 2008-06-19  Bruno Haible  <bruno@clisp.org>
11114
11115         Fix CVS-ism.
11116         * doc/gnulib.texi: Include updated-stamp.texi.
11117         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
11118         (updated-stamp.texi): New rule.
11119         (gnulib.info): Depend on it.
11120         * doc/.gitignore: Add updated-stamp.texi.
11121         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
11122
11123 2008-06-19  Bruno Haible  <bruno@clisp.org>
11124
11125         * doc/Makefile (gnulib.info): Update and simplify dependencies.
11126         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
11127
11128 2008-06-19  Eric Blake  <ebb9@byu.net>
11129
11130         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
11131         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
11132         Reported by Stepan Kasal.
11133
11134 2008-06-18  Bruno Haible  <bruno@clisp.org>
11135
11136         * lib/fatal-signal.c (init_fatal_signals): Add comment.
11137         Reported by Eric Blake.
11138
11139 2008-06-18  Eric Blake  <ebb9@byu.net>
11140
11141         Work around cygwin 1.5.25 strsignal bug.
11142         * tests/test-strsignal.c: Allow for const char *.
11143         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
11144
11145 2008-06-18  Simon Josefsson  <simon@josefsson.org>
11146
11147         * users.txt: Update URL to article and add author/date
11148         information.
11149
11150 2008-06-17  Bruno Haible  <bruno@clisp.org>
11151
11152         New macro gl_DISABLE_THREADS.
11153         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
11154         if the user did not pass --enable-threads or --disable-threads option.
11155         (gl_DISABLE_THREADS): New macro.
11156         Reported by Eric Blake <ebb9@byu.net>.
11157
11158 2008-06-17  Bruno Haible  <bruno@clisp.org>
11159
11160         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
11161         when the macro ignores it.
11162         Based on a patch by Eric Blake <ebb9@byu.net>.
11163
11164 2008-06-17  Bruno Haible  <bruno@clisp.org>
11165
11166         * modules/tls (License): Change to LGPLv2+.
11167         Reported by Eric Blake.
11168
11169 2008-06-17  Eric Blake  <ebb9@byu.net>
11170
11171         Simplify c-stack prerequisites.
11172         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
11173         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
11174         no longer requires <ucontext.h> to exist.  Optimize setrlimit
11175         check.
11176         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
11177         <sys/resource.h>.
11178
11179         Move c-stack test into testsuite.
11180         * modules/c-stack-tests: New file.
11181         * lib/c-stack.c [DEBUG]: Move test program...
11182         * tests/test-c-stack.c: ...into this new file.  Skip rather than
11183         fail test if sigaltstack is lacking.
11184         * tests/test-c-stack.sh: New driver file.
11185
11186 2008-06-16  Eric Blake  <ebb9@byu.net>
11187
11188         Use raise module consistently.
11189         * modules/fatal-signal (Depends-on): Add raise.
11190         * modules/sigprocmask (Depends-on): Likewise.
11191         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
11192         * lib/sigprocmask.c (sigprocmask): Likewise.
11193         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
11194         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
11195
11196         Fix compliance bug in sigpending.
11197         * lib/sigprocmask.c (sigpending): Return pending array via
11198         parameter, not return value.
11199
11200 2008-06-14  Eric Blake  <ebb9@byu.net>
11201
11202         Improve obstack-printf test code.
11203         * tests/test-obstack-printf.c (test_function): Fix comment, and
11204         simplify usage of obstack_* in macros.  Add a test for coverage.
11205         Reported by Bruno Haible.
11206
11207 2008-06-14  Bruno Haible  <bruno@clisp.org>
11208
11209         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
11210         array size as a constant, not as a const variable.
11211         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
11212         AC_USE_SYSTEM_EXTENSIONS.
11213         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
11214         Test whether the obstack_printf function actually exists.
11215         * modules/obstack-printf (Depends-on): Add extensions.
11216         (Include): Remove obstack.h.
11217         * modules/obstack-printf-posix (Depends-on): Add extensions.
11218         (Include): Remove obstack.h.
11219
11220 2008-06-13  Eric Blake  <ebb9@byu.net>
11221
11222         Add obstack-printf and obstack-printf-posix modules.
11223         * modules/obstack-printf: New file.
11224         * modules/obstack-printf-posix: Likewise.
11225         * MODULES.html.sh (Misc): Mention them.
11226         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
11227         Likewise.
11228         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
11229         Likewise.
11230         * modules/stdio (Makefile.am): Accomodate new modules.
11231         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11232         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
11233         Declare.
11234         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
11235         functions.
11236         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
11237         (gl_REPLACE_OBSTACK_PRINTF): New macros
11238         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
11239         * tests/test-obstack-printf.c: New file.
11240         * modules/obstack-printf-tests: Likewise.
11241         * modules/obstack-printf-posix-tests: Likewise.
11242
11243 2008-06-11  Bruno Haible  <bruno@clisp.org>
11244
11245         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
11246         * lib/open.c: Include errno.h.
11247         (open): Fail when attempting to write to a file that has a trailing
11248         slash.
11249         * tests/test-open.c (main): Test against trailing slash bug.
11250         * doc/posix-functions/open.texi: Mention the trailing slash bug.
11251
11252 2008-06-10  Bruno Haible  <bruno@clisp.org>
11253
11254         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
11255         for $? to work inside the trap command, with various /bin/sh-s.
11256         * tests/test-vc-list-files-cvs.sh: Likewise.
11257
11258 2008-06-10  Bruno Haible  <bruno@clisp.org>
11259
11260         * lib/acl-internal.h: Don't include gettext.h here.
11261         * lib/set-mode-acl.c: Include gettext.h here.
11262         * lib/copy-acl.c: Likewise.
11263
11264 2008-06-10  Bruno Haible  <bruno@clisp.org>
11265
11266         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
11267         * lib/wait-process.c (wait_subprocess): Likewise.
11268         * lib/execute.h (execute): Add termsigp argument.
11269         * lib/execute.c (execute): Likewise.
11270         * lib/csharpcomp.c (compile_csharp_using_pnet,
11271         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
11272         * lib/csharpexec.c (execute_csharp_using_pnet,
11273         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
11274         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
11275         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
11276         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
11277         is_jikes_present): Update.
11278         * lib/javaexec.c (execute_java_class): Update.
11279         * lib/javaversion.c (execute_and_read_line): Update.
11280         * NEWS: Document the changes.
11281         Reported by Eric Blake.
11282
11283 2008-06-10  Eric Blake  <ebb9@byu.net>
11284
11285         Add missing include.
11286         * tests/test-strstr.c (includes): Add <signal.h>.
11287         * tests/test-strcasestr.c (includes): Likewise.
11288         * tests/test-memmem.c (includes): Likewise.
11289
11290 2008-06-10  Bruno Haible  <bruno@clisp.org>
11291
11292         * lib/wait-process.c (wait_subprocess): Add an assertion.
11293
11294 2008-06-10  Bruno Haible  <bruno@clisp.org>
11295
11296         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
11297
11298 2008-06-10  Bruno Haible  <bruno@clisp.org>
11299
11300         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
11301         using alarm().
11302         * tests/test-strcasestr.c (main): Likewise.
11303         * tests/test-strstr.c (main): Likewise.
11304
11305 2008-06-09  Bruno Haible  <bruno@clisp.org>
11306
11307         Work around the Solaris 10 ACE ACLs ABI change.
11308         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
11309         declare if ACL_NO_TRIVIAL is present.
11310         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
11311         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
11312         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
11313         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
11314         define if ACL_NO_TRIVIAL is present.
11315         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
11316         and use the current ABI.
11317         (file_has_acl): Use same #if condition as elsewhere.
11318         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
11319         in use, and use the current ABI.
11320         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
11321         Reported by Jim Meyering.
11322
11323 2008-06-09  Eric Blake  <ebb9@byu.net>
11324
11325         Work around environments that (stupidly) ignore SIGALRM.
11326         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
11327         before using alarm().
11328         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11329         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
11330         Reported by Ian Beckwith <ianb@erislabs.net>.
11331
11332         Produce autobuild blurb earlier in log.
11333         * modules/autobuild (configure.ac-early): Move AB_INIT here.
11334
11335 2008-06-09  Jim Meyering  <meyering@redhat.com>
11336         and OndÅ™ej Vašík  <ovasik@redhat.com>
11337
11338         utimens.c: correct kernel bug work-around
11339         OndÅ™ej Vašík found that the invalid return value of 280 indicates
11340         failure, not success, and the kernel bug we're trying to work
11341         around affects not just the utimensat call, but also the fallback
11342         futimens call.
11343         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
11344         not success.
11345         [HAVE_FUTIMENS]: Use the same work-around, here.
11346
11347 2008-06-09  Jim Meyering  <meyering@redhat.com>
11348
11349         add more guards around definition of ACE_-related code
11350         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
11351         ALLOW and ACE_OWNER are also defined.
11352
11353 2008-06-08  Bruno Haible  <bruno@clisp.org>
11354
11355         * lib/acl-internal.h: Add me as co-author.
11356         * lib/file-has-acl.c: Likewise.
11357         * lib/set-mode-acl.c: Likewise.
11358         * lib/copy-acl.c: Likewise.
11359
11360 2008-06-08  Bruno Haible  <bruno@clisp.org>
11361
11362         Add support for AIX ACLs.
11363         * lib/acl-internal.h (acl_nontrivial): New declaration.
11364         * lib/file-has-acl.c (acl_nontrivial): New function.
11365         (file_has_acl): Add implementation using AIX 4 ACL API.
11366         * lib/set-mode-acl.c (qset_acl): Likewise.
11367         * lib/copy-acl.c (qcopy_acl): Likewise.
11368
11369 2008-06-08  Bruno Haible  <bruno@clisp.org>
11370
11371         Add support for HP-UX ACLs.
11372         * lib/acl-internal.h (acl_nontrivial): New declaration.
11373         * lib/file-has-acl.c (acl_nontrivial): New function.
11374         (file_has_acl): Add implementation using HP-UX 11 ACL API.
11375         * lib/set-mode-acl.c (qset_acl): Likewise.
11376         * lib/copy-acl.c (qcopy_acl): Likewise.
11377
11378 2008-06-08  Bruno Haible  <bruno@clisp.org>
11379
11380         Add support for Cygwin ACLs.
11381         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
11382         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
11383         the chmod_or_fchmod call.
11384         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
11385
11386 2008-06-08  Bruno Haible  <bruno@clisp.org>
11387
11388         Fix bug with setuid modes in Solaris 10+ code.
11389         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
11390         succeeded, when the mode contains some special bits.
11391
11392 2008-06-08  Bruno Haible  <bruno@clisp.org>
11393
11394         Add support for Solaris 7..10 ACLs.
11395         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
11396         declarations.
11397         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
11398         functions.
11399         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
11400         * lib/set-mode-acl.c (qset_acl): Likewise.
11401         * lib/copy-acl.c (qcopy_acl): Likewise.
11402
11403 2008-06-08  Bruno Haible  <bruno@clisp.org>
11404
11405         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
11406         declaration.
11407         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
11408         (acl_access_nontrivial): Remove MacOS X case.
11409         (file_has_acl): Use acl_extended_nontrivial.
11410         * lib/copy-acl.c (qcopy_acl): Likewise.
11411
11412 2008-06-08  Bruno Haible  <bruno@clisp.org>
11413
11414         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
11415
11416 2008-06-08  Jim Meyering  <meyering@redhat.com>
11417
11418         * modules/acl (Maintainer): Add Bruno Haible.
11419
11420 2008-06-07  Bruno Haible  <bruno@clisp.org>
11421
11422         Improve support for Tru64 ACLs.
11423         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
11424         ACL on OSF/1.
11425
11426 2008-06-07  Bruno Haible  <bruno@clisp.org>
11427
11428         Add support for MacOS X ACLs.
11429         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
11430         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
11431         * lib/set-mode-acl.c (qset_acl): Likewise.
11432         * lib/copy-acl.c (qcopy_acl): Likewise.
11433
11434 2008-06-07  Bruno Haible  <bruno@clisp.org>
11435
11436         Fix memory leak introduced on 2008-05-22.
11437         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
11438         use.
11439
11440 2008-06-07  Bruno Haible  <bruno@clisp.org>
11441
11442         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
11443         to construct an empty ACL.
11444
11445 2008-06-07  Bruno Haible  <bruno@clisp.org>
11446
11447         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
11448         precisely.
11449         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
11450
11451 2008-06-07  Bruno Haible  <bruno@clisp.org>
11452
11453         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
11454         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
11455
11456 2008-06-07  Bruno Haible  <bruno@clisp.org>
11457
11458         * doc/posix-functions/_setjmp.texi: Explain the use of this function
11459         regardless of POSIX.
11460         * doc/posix-functions/_longjmp.texi: Likewise.
11461         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
11462         SystemV platform in this case.
11463
11464 2008-06-06  Eric Blake  <ebb9@byu.net>
11465
11466         Document abort() bugs.
11467         * doc/posix-functions/abort.texi (abort): Mention anomalies.
11468
11469         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
11470         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
11471         sigsetjmp.
11472         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
11473         siglongjmp, but only as a macro.
11474         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
11475         is obsolete.
11476         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
11477
11478         Tweak documentation to cover cygwin argz bugs.
11479         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
11480         argz bug fix; no code change needed since no cygwin releases
11481         occurred between the last fix and the bug being tested.
11482         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
11483         module and recently fixed cygwin bugs.
11484         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
11485         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
11486         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
11487         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
11488         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
11489         Likewise.
11490         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
11491         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
11492         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
11493         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
11494         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
11495         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
11496         Likewise.
11497
11498         Avoid gcc warning on cygwin.
11499         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
11500         !ACL_NO_TRIVIAL]: Avoid unused variable.
11501
11502 2008-06-05  Eric Blake  <ebb9@byu.net>
11503
11504         Be tolerant of UNKNOWN version in gnulib-tool test dir.
11505         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
11506         git-version-gen fails to come up with a version.
11507         Reported by Simon Josefsson.
11508
11509 2008-06-05  Jim Meyering  <meyering@redhat.com>
11510             Paul Eggert  <eggert@cs.ucla.edu>
11511
11512         utimens.c: work around a probable Linux kernel bug
11513         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
11514         appears to be a kernel bug that causes utimensat to return 280
11515         instead of 0, indicating success.
11516
11517 2008-06-04  Bruno Haible  <bruno@clisp.org>
11518
11519         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
11520         2008-06-01 commit.
11521
11522 2008-06-04  Bruno Haible  <bruno@clisp.org>
11523
11524         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
11525         * lib/file-has-acl.c (acl_access_nontrivial): New function.
11526         (file_has_acl): Use it. Save errno afterwards.
11527         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
11528
11529 2008-06-03  Bruno Haible  <bruno@clisp.org>
11530
11531         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
11532         draft code. Simplify #ifs.
11533         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
11534         Put Solaris code after POSIX-draft code. Fix comments regarding
11535         Solaris 10, HP-UX. Mention Cygwin.
11536         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
11537
11538 2008-06-03  Eric Blake  <ebb9@byu.net>
11539
11540         Provide fallback for older kernels.
11541         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
11542         Provide runtime fallback if kernel lacks support.
11543         Reported by Mike Frysinger.
11544
11545 2008-06-02  Bruno Haible  <bruno@clisp.org>
11546
11547         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
11548         it exists.
11549
11550 2008-06-02  Bruno Haible  <bruno@clisp.org>
11551
11552         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
11553         * lib/copy-acl.c (qcopy_acl): Update comment.
11554
11555 2008-06-02  Bruno Haible  <bruno@clisp.org>
11556
11557         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
11558         like ACL APIs.
11559
11560 2008-06-02  Bruno Haible  <bruno@clisp.org>
11561
11562         * tests/test-file-has-acl.sh: Use different code for Cygwin.
11563         * tests/test-set-mode-acl.sh: Likewise.
11564         * tests/test-copy-acl.sh: Likewise.
11565         * tests/test-copy-file.sh: Likewise.
11566
11567 2008-06-02  Bruno Haible  <bruno@clisp.org>
11568
11569         * tests/test-file-has-acl.sh: Remove unused code.
11570
11571 2008-06-01  Bruno Haible  <bruno@clisp.org>
11572
11573         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
11574         (copy_acl): Just a wrapper around qcopy_acl that emits the error
11575         messages.
11576         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
11577
11578 2008-06-01  Bruno Haible  <bruno@clisp.org>
11579
11580         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
11581         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
11582         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
11583         APIs.
11584         * modules/acl-tests (configure.ac): Remove tests now contained in
11585         m4/acl.m4.
11586
11587 2008-06-02  Jim Meyering  <meyering@redhat.com>
11588
11589         announce-gen: use a better key-server host name
11590         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
11591         it may be more consistently reliable.  Suggested by Werner Koch
11592         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
11593
11594 2008-06-01  Bruno Haible  <bruno@clisp.org>
11595
11596         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
11597         Reported by Voroskoi Andras <voroskoi@gmail.com>.
11598
11599 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
11600
11601         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
11602
11603 2008-06-01  Bruno Haible  <bruno@clisp.org>
11604
11605         New ACL tests.
11606         * tests/test-file-has-acl.sh: New file.
11607         * tests/test-file-has-acl.c: New file.
11608         * tests/test-set-mode-acl.sh: New file.
11609         * tests/test-set-mode-acl.c: New file.
11610         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
11611         * tests/test-copy-acl.c: New file.
11612         * modules/acl-tests: New file, based on modules/copy-file-tests.
11613         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
11614         (Depends-on): Add acl-tests.
11615         (configure.ac): Remove checks.
11616         (Makefile.am): Don't create test-sameacls program here any more.
11617
11618 2008-06-01  Bruno Haible  <bruno@clisp.org>
11619
11620         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
11621         * tests/test-sameacls.c: Include progname.h.
11622         (main): Invoke set_program_name. Portability fixes for MacOS X,
11623         Solaris, HP-UX.
11624
11625 2008-06-01  Bruno Haible  <bruno@clisp.org>
11626
11627         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
11628         function.
11629         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
11630
11631 2008-06-01  Bruno Haible  <bruno@clisp.org>
11632
11633         * modules/rpmatch (Depends-on): Add strdup.
11634
11635 2008-06-01  Bruno Haible  <bruno@clisp.org>
11636
11637         * lib/pipe.c: Include unistd-safer.h.
11638         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
11639         * modules/pipe (Depends-on): Add unistd-safer.
11640
11641 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11642
11643         * modules/autobuild (configure.ac): Call AB_INIT.
11644
11645 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11646
11647         * tests/test-getaddrinfo.c: Don't print debug messages by default.
11648         Suggested by Bruno Haible <bruno@clisp.org>.
11649
11650 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11651
11652         * tests/test-base64.c: Cast size_t to unsigned long when invoking
11653         printf.  Use %lu instead of %d.  Reported by Bruno Haible
11654         <bruno@clisp.org>.
11655
11656 2008-05-29  Eric Blake  <ebb9@byu.net>
11657
11658         Prefer new POSIX 200x interfaces over futimesat.
11659         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
11660         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
11661         when available.
11662         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
11663
11664 2008-05-28  Bruno Haible  <bruno@clisp.org>
11665
11666         * modules/stpcpy (License): Change to LGPLv2+.
11667         Requested by David Lutterkort <dlutter@redhat.com>.
11668
11669 2008-05-27  Bruno Haible  <bruno@clisp.org>
11670
11671         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
11672         current mingw.
11673         Reported by Jose E. Marchesi <jemarch@gnu.org>.
11674
11675 2008-05-27  Bruno Haible  <bruno@clisp.org>
11676
11677         * modules/iconv_open (Link): New section, from module 'iconv'.
11678         * modules/striconv (Link): Likewise.
11679         * modules/striconveh (Link): Likewise.
11680         * modules/xstriconv (Link): Likewise.
11681         * modules/unicodeio (Link): Likewise.
11682         * modules/propername (Link): Likewise.
11683         Reported by Jim Meyering.
11684
11685 2008-05-26  Jim Meyering  <meyering@redhat.com>
11686
11687         sha256: do not artificially restrict buffer length to be < 2^32
11688         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
11689         uint32_t to size_t.
11690         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
11691         to match.
11692
11693         avoid unaligned access errors, e.g., on sparc
11694         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
11695         direct access through a possibly-unaligned uint64* pointer.
11696         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
11697         direct access through a possibly-unaligned uint32* pointer.
11698         Prompted by this patch from Tom "spot" Callaway:
11699         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
11700
11701         sha512.c: fix typo in comment
11702         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
11703
11704 2008-05-25  Bruno Haible  <bruno@clisp.org>
11705
11706         * lib/set-mode-acl.c: Renamed from lib/acl.c.
11707         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
11708         (Makefile.am): Update lib_SOURCES.
11709
11710 2008-05-25  Bruno Haible  <bruno@clisp.org>
11711
11712         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
11713
11714 2008-05-25  Jim Meyering  <meyering@redhat.com>
11715
11716         useless-if-before-free: freed expr may have white-space differences
11717         * build-aux/useless-if-before-free: Recognize cases in which the
11718         freed expression differs from the tested one in embedded white
11719         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
11720         $1 was used, so we can't make any regexp shy.  Improved tests now
11721         detect this.
11722
11723         useless-if-before-free: accept white space in the expression.
11724         * build-aux/useless-if-before-free: For now, any white space
11725         in the expression must be identical in the free argument.
11726
11727         useless-if-before-free: efficiency tweak
11728         * build-aux/useless-if-before-free: Make the expression-matching
11729         regexp "shy".
11730         Make the *outer* regexp shy, not the expr-matching one.
11731
11732         update code-in-comment to accept cast of free arg
11733         * build-aux/useless-if-before-free: Update regexp.
11734
11735 2008-05-25  Bruno Haible  <bruno@clisp.org>
11736
11737         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
11738         * modules/copy-file-tests (Files, Makefile.am): Update.
11739         * tests/test-copy-file.c (func_test_copy): Update.
11740
11741 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
11742
11743         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
11744
11745 2008-05-23  Bruno Haible  <bruno@clisp.org>
11746
11747         Improve support for ACLs on OSF/1.
11748         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
11749         Remove fallback for unknown flavors of ACLs.
11750
11751 2008-05-22  Bruno Haible  <bruno@clisp.org>
11752
11753         Add support for ACLs on OSF/1.
11754         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
11755         replacements.
11756         (acl_free_text): New macro fallback.
11757         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
11758         acl_free.
11759         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
11760         acl_free_text function. Require AC_C_INLINE.
11761
11762 2008-05-22  Bruno Haible  <bruno@clisp.org>
11763
11764         Make copy_acl work on MacOS X 10.5.
11765         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
11766         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
11767         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
11768         If MODE_INSIDE_ACL, don't assume that every system has the same text
11769         representation for ACLs as FreeBSD.
11770         * lib/copy-acl.c (copy_acl): Add support for platforms with
11771         !MODE_INSIDE_ACL.
11772         * lib/file-has-acl.c (file_has_acl): Likewise.
11773         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
11774         FreeBSD, MacOS X, or IRIX, respectively.
11775
11776 2008-05-22  Bruno Haible  <bruno@clisp.org>
11777
11778         * lib/acl.h: Don't include <sys/acl.h>.
11779         (GETACLCNT): Move fallback to lib/acl-internal.h.
11780         * lib/acl-internal.h: Include <sys/acl.h> here.
11781         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
11782
11783 2008-05-22  Bruno Haible  <bruno@clisp.org>
11784
11785         Split off copy_acl function to separate file.
11786         * lib/copy-acl.c: New file, extracted from lib/acl.c.
11787         * lib/acl.c (copy_acl): Moved function to separate file.
11788         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
11789         * modules/acl (Files): Add lib/copy-acl.c.
11790         (Makefiles.am): Augment lib_SOURCES.
11791
11792 2008-05-22  Bruno Haible  <bruno@clisp.org>
11793
11794         * modules/copy-file-tests: New file.
11795         * tests/test-copy-file.sh: New file.
11796         * tests/test-copy-file.c: New file.
11797         * tests/test-copy-file-sameacls.c: New file.
11798
11799 2008-05-22  Eric Blake  <ebb9@byu.net>
11800
11801         Avoid gcc warning.
11802         * tests/test-memcmp.c (main): Pass NULL indirectly.
11803
11804 2008-05-21  Bruno Haible  <bruno@clisp.org>
11805
11806         Add reference doc about ACLs.
11807         * doc/acl-resources.txt: New file.
11808         * doc/acl-cygwin.txt: New file.
11809
11810 2008-05-21  Bruno Haible  <bruno@clisp.org>
11811
11812         Avoid one more warning from gcc.
11813         * lib/vasnprintf.c (IF_LINT): Update comments.
11814         (VASNPRINTF): Use it also for the 'prefix' array initializer.
11815
11816 2008-05-21  Jim Meyering  <meyering@redhat.com>
11817
11818         avoid a warning from gcc
11819         * lib/vasnprintf.c (IF_LINT): Define.
11820         (scale10_round_decimal_long_double):
11821         Use it to avoid a "may be used uninitialized" warning.
11822         (scale10_round_decimal_double): Likewise.
11823
11824 2008-05-21  Simon Josefsson  <simon@josefsson.org>
11825
11826         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
11827         declared.
11828
11829 2008-05-20  Bruno Haible  <bruno@clisp.org>
11830
11831         * tests/test-memcmp.c (main): Test also the sign of the result. Test
11832         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
11833
11834 2008-05-20  Simon Josefsson  <simon@josefsson.org>
11835
11836         * modules/memcmp-tests: New file.
11837         * tests/test-memcmp.c: New file.
11838
11839 2008-05-19  Bruno Haible  <bruno@clisp.org>
11840
11841         * modules/propername (Notice, configure.ac): Put quoted "..." into
11842         --keyword option.
11843         * lib/propername.h: Update comments accordingly.
11844         Reported by Eric Blake.
11845
11846 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
11847
11848         * modules/getpass-gnu (Depends-on): Add fseeko.
11849
11850 2008-05-19  Simon Josefsson  <simon@josefsson.org>
11851
11852         * modules/base64-tests: New file.
11853
11854 2008-05-19  Bo Borgerson <gigabo@gmail.com>
11855
11856         * lib/base64.c (base64_decode_ctx): If a decode context structure
11857         was passed in use it to ignore newlines.  If a context structure
11858         was _not_ passed in, continue to treat newlines as garbage (this
11859         is the historical behavior).  Formerly base64_decode.
11860         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
11861         takes a decode context structure.
11862         * lib/base64.h (base64_decode): Macro for four-argument calls.
11863         (base64_decode_alloc): Likewise.
11864         * lib/base64.c (base64_decode_ctx): If a decode context structure
11865         was passed in use it to ignore newlines.  If a context structure
11866         was _not_ passed in, continue to treat newlines as garbage (this
11867         is the historical behavior).  Formerly base64_decode.
11868         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
11869         takes a decode context structure.
11870         * lib/base64.h (base64_decode): Macro for four-argument calls.
11871         (base64_decode_alloc): Likewise.
11872
11873 2008-05-19  Jim Meyering  <meyering@redhat.com>
11874
11875         avoid a warning from gcc
11876         * lib/trim.c (IF_LINT): Define.
11877         (trim2): Use it to avoid a "may be used uninitialized" warning.
11878
11879         Fix doc typo.
11880         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
11881
11882 2008-05-19  Bruno Haible  <bruno@clisp.org>
11883
11884         * doc/glibc-functions/getpass.texi: Document limits of other
11885         implementations.
11886
11887 2008-05-19  Simon Josefsson  <simon@josefsson.org>
11888             Bruno Haible <bruno@clisp.org>
11889
11890         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
11891
11892 2008-05-18  Bruno Haible  <bruno@clisp.org>
11893
11894         * modules/propername: New file, from GNU gettext.
11895         * lib/propername.h: New file, from GNU gettext.
11896         * lib/propername.c: New file, from GNU gettext.
11897         * MODULES.html.sh (Internationalization functions): Add propername.
11898
11899 2008-05-16  Jim Meyering  <meyering@redhat.com>
11900             Bruno Haible  <bruno@clisp.org>
11901
11902         Avoid some warnings from "gcc -Wshadow".
11903         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
11904
11905 2008-05-15  Eric Blake  <ebb9@byu.net>
11906
11907         Extend previous patch to cygwin 1.7.0.
11908         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
11909         fast implementation in cygwin >= 1.7.0.
11910         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11911         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11912
11913 2008-05-15  Bruno Haible  <bruno@clisp.org>
11914
11915         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
11916         implementation in glibc >= 2.9.
11917         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11918         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11919
11920 2008-05-15  Bruno Haible  <bruno@clisp.org>
11921
11922         * MODULES.html.sh (Internationalization functions): Remove linebreak.
11923         (Unicode string functions): Add unilbrk/*.
11924         Reported by Karl Berry.
11925
11926 2008-05-15  Eric Blake  <ebb9@byu.net>
11927
11928         Fix violation of <stdbool.h> replacement in regex.
11929         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
11930         * lib/regexec.c (re_search_internal): Likewise.
11931         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
11932
11933 2008-05-15  Jim Meyering  <meyering@redhat.com>
11934
11935         avoid distracting test output when git or cvs is not found
11936         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
11937         * tests/test-vc-list-files-git.sh: Likewise.
11938
11939 2008-05-15  Eric Blake  <ebb9@byu.net>
11940
11941         Glibc finally accepted the memmem speedup code, bugzilla #5514.
11942         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
11943         glibc version.
11944         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
11945         * doc/posix-functions/strstr.texi (strstr): Likewise.
11946         * lib/str-two-way.h (MAX): Sychronize with glibc.
11947
11948 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
11949
11950         * lib/regcomp.c (optimize_utf8): Add a note on why we test
11951         opr.ctx_type.
11952         (calc_first): Initialize constraint field.
11953         (duplicate_node_closure): Use it instead of special casing ANCHORS.
11954         Fix grammar.
11955         (duplicate_node): Merge constraint field for all node types.
11956         (calc_eclosure_iter): Look at constraint field for all node types.
11957         * lib/regex_internal.c (create_cd_newstate): Don't look at
11958         opr.ctx_type.
11959
11960 2008-05-14  Bruno Haible  <bruno@clisp.org>
11961
11962         Help GCC to do better code generation.
11963         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
11964         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
11965         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
11966         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
11967         Declare with attribute 'malloc' if supported.
11968
11969 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
11970
11971         use "echo STR|wc -c" rather than unportable "expr length STR"
11972         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
11973         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
11974
11975 2008-05-14  Jim Meyering  <meyering@redhat.com>
11976
11977         use dd ibs=$n count=1 ... rather than less-portable head -c$n
11978         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
11979         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
11980         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
11981         via Collin Lasse.
11982
11983 2008-05-14  Eric Blake  <ebb9@byu.net>
11984
11985         Avoid quadratic growth in gl_LIBSOURCES.
11986         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
11987         Suggested by Bruno Haible.
11988
11989         Test xmemdup0.
11990         * modules/xmemdup0-tests: New file.
11991         * tests/test-xmemdup0.c: Likewise.
11992
11993 2008-05-13  Eric Blake  <ebb9@byu.net>
11994
11995         Split xmemdup0 into its own module.
11996         * modules/xmemdup0: New file.
11997         * lib/xmemdup0.h: Likewise.
11998         * lib/xmemdup0.c: Likewise.
11999         * MODULES.html.sh (Memory management functions): Add xmemdup0.
12000         * lib/xalloc.h (xmemdup0): Remove.
12001         * lib/xmalloc.c (xmemdup0): Likewise.
12002
12003 2008-05-13  Eric Blake  <ebb9@byu.net>
12004             Bruno Haible  <bruno@clisp.org>
12005
12006         Reduce number of forks required during autoconf.
12007         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
12008         and gl_LIBSOURCES_DIR.
12009         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
12010         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
12011         m4_syscmd per file.
12012         <m4_foreach_w>: Move...
12013         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
12014
12015 2008-05-13  Eric Blake  <ebb9@byu.net>
12016
12017         * gnulib-tool: Fix various comment typos.
12018
12019 2008-05-12  Bruno Haible  <bruno@clisp.org>
12020
12021         Tailor the linebreaking algorithm.
12022         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
12023
12024 2008-05-12  Bruno Haible  <bruno@clisp.org>
12025
12026         Update to Unicode 5.0.0.
12027         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
12028         LBP_JV, LBP_JT. Redistribute values.
12029         (unilbrk_table): Change size.
12030         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
12031         Unicode TR#14 rev. 22.
12032         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
12033         LBP_JV, LBP_JT. Redistribute values.
12034         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
12035         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
12036         Update.
12037         * lib/unilbrk/lbrkprop1.h: Regenerated.
12038         * lib/unilbrk/lbrkprop2.h: Regenerated.
12039         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
12040         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
12041         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
12042         Likewise.
12043         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
12044         Likewise.
12045         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
12046         result.
12047         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
12048         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
12049         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
12050         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
12051         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
12052         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
12053
12054 2008-05-11  Bruno Haible  <bruno@clisp.org>
12055
12056         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
12057
12058 2008-05-11  Bruno Haible  <bruno@clisp.org>
12059
12060         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
12061         * modules/unilbrk/gen-lbrk: New file.
12062
12063 2008-05-11  Bruno Haible  <bruno@clisp.org>
12064
12065         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
12066         * m4/sha512.m4 (gl_SHA512): Likewise.
12067
12068 2008-05-11  Jim Meyering  <meyering@redhat.com>
12069
12070         New modules: crypto/sha256, crypto/sha512 (from coreutils)
12071         * modules/crypto/sha256: New file.
12072         * modules/crypto/sha512: Likewise.
12073         * lib/sha256.c: Likewise.
12074         * lib/sha256.h: Likewise.
12075         * lib/sha512.c: Likewise.
12076         * lib/sha512.h: Likewise.
12077         * lib/u64.h: Likewise.
12078         * m4/sha256.m4: Likewise.
12079         * m4/sha512.m4: Likewise.
12080         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
12081
12082 2008-05-10  Bruno Haible  <bruno@clisp.org>
12083
12084         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
12085         (Input/Output <stdio.h>): Add xprintf.
12086         (Signal handling <signal.h>): Add strsignal.
12087         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
12088         (Core language properties): Add func.
12089         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
12090         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
12091         strings.
12092         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
12093         (Input/output): New section.
12094         (File system functions): Add openat-die, stat-macros.
12095         (Networking functions): Add sockets.
12096         (Unicode string functions): Add unictype/*.
12097         (Support for building libraries and executables): Add gperf.
12098         (Support for building documentation): Add agpl-3.0.
12099         (Misc): Add nocrash.
12100
12101 2008-05-10  Bruno Haible  <bruno@clisp.org>
12102
12103         * modules/unictype/gen-ctype: New file.
12104
12105 2008-05-10  Jim Meyering  <meyering@redhat.com>
12106
12107         Make chdir-safer.c more efficient on a system with no symlinks.
12108         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
12109         also if ELOOP is zero.  Suggested by Bruno Haible.
12110
12111         Make chdir-safer.c slightly safer.
12112         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
12113         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
12114
12115         Avoid compile failure on systems without ELOOP (like mingw).
12116         * lib/chdir-safer.c (ELOOP): Define if not already defined.
12117         Reported by Bruno Haible.
12118
12119 2008-05-10  Bruno Haible  <bruno@clisp.org>
12120
12121         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
12122         (is_utf8_encoding): Use a case-insensitive comparison.
12123         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
12124         streq.
12125
12126 2008-05-10  Bruno Haible  <bruno@clisp.org>
12127
12128         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
12129         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
12130         * lib/unilbrk/ulc-common.h (iconv_string_length,
12131         iconv_string_keeping_offsets): Remove declarations.
12132         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
12133         Don't include <iconv.h>, streq.h, xsize.h.
12134         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
12135         conversion.
12136         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
12137         <iconv.h>, streq.h, xsize.h.
12138         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
12139         conversion.
12140         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
12141         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
12142         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
12143         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
12144
12145 2008-05-10  Bruno Haible  <bruno@clisp.org>
12146
12147         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
12148         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
12149
12150         * modules/unilbrk/u32-width-linebreaks-tests: New file.
12151         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
12152
12153         * modules/unilbrk/u16-width-linebreaks-tests: New file.
12154         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
12155
12156         * modules/unilbrk/u8-width-linebreaks-tests: New file.
12157         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
12158
12159         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
12160         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
12161
12162         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
12163         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
12164
12165         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
12166         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
12167
12168         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
12169         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
12170
12171 2008-05-10  Bruno Haible  <bruno@clisp.org>
12172
12173         Split up 'linebreak' module.
12174         * lib/unilbrk.h: New file, based on lib/linebreak.h.
12175         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
12176         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
12177         modifications.
12178         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
12179         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
12180         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
12181         lib/linebreak.c.
12182         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
12183         lib/linebreak.c.
12184         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
12185         lib/linebreak.c.
12186         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
12187         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
12188         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
12189         lib/linebreak.c.
12190         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
12191         lib/linebreak.c.
12192         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
12193         lib/linebreak.c.
12194         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
12195         lib/linebreak.c.
12196         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
12197         lib/linebreak.c.
12198         * modules/unilbrk/base: New file.
12199         * modules/unilbrk/tables: New file.
12200         * modules/unilbrk/u8-possible-linebreaks: New file.
12201         * modules/unilbrk/u16-possible-linebreaks: New file.
12202         * modules/unilbrk/u32-possible-linebreaks: New file.
12203         * modules/unilbrk/ulc-common: New file.
12204         * modules/unilbrk/ulc-possible-linebreaks: New file.
12205         * modules/unilbrk/u8-width-linebreaks: New file.
12206         * modules/unilbrk/u16-width-linebreaks: New file.
12207         * modules/unilbrk/u32-width-linebreaks: New file.
12208         * modules/unilbrk/ulc-width-linebreaks: New file.
12209         * lib/linebreak.h: Remove file.
12210         * lib/linebreak.c: Remove file.
12211         * m4/linebreak.m4: Remove file.
12212         * modules/linebreak: Remove file.
12213         * NEWS: Mention the changes.
12214
12215 2008-05-09  Eric Blake  <ebb9@byu.net>
12216
12217         Add xmemdup0.
12218         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
12219         implementation.
12220         * lib/xmalloc.c (xmemdup0): New C implementation.
12221
12222 2008-05-08  Bruno Haible  <bruno@clisp.org>
12223
12224         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
12225
12226 2008-05-07  Eric Blake  <ebb9@byu.net>
12227
12228         Support cross-compilation of <wctype.h>.
12229         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
12230         AC_CACHE_CHECK.
12231
12232 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
12233
12234         * build-aux/vc-list-files: Add support for bzr.
12235
12236 2008-05-03  Jim Meyering  <meyering@redhat.com>
12237
12238         avoid failed assertion with tight malloc
12239         * tests/test-getndelim2.c: Correct an off-by-one assertion.
12240
12241 2008-05-03  Simon Josefsson  <simon@josefsson.org>
12242
12243         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
12244         are needed from arpa/inet.h.
12245         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
12246         Reported by Bruno Haible.
12247
12248 2008-05-02  Jim Meyering  <meyering@redhat.com>
12249
12250         avoid compilation error on FreeBSD 6
12251         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
12252
12253 2008-05-01  Jim Meyering  <meyering@redhat.com>
12254
12255         useless-if-before-free: correct --help's exit status description
12256         * build-aux/useless-if-before-free (usage): Like grep, exit 0
12257         for one or more matches, etc.  Reported by Bruno Haible.
12258
12259         vc-list-files: make the stand-alone gnulib test work
12260         * modules/vc-list-files-tests (configure.ac):
12261         Define and AC_SUBST abs_aux_dir.
12262         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
12263         $(abs_top_srcdir) to each script and having each of them
12264         duplicate the work of setting PATH, set PATH here, using
12265         the new variable, abs_aux_dir instead.
12266         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
12267         * tests/test-vc-list-files-git.sh: Likewise.
12268         Reported by Bruno Haible.
12269
12270 2008-05-01  Bruno Haible  <bruno@clisp.org>
12271
12272         * lib/getndelim2.c (getndelim2): Fix newsize computation during
12273         reallocation. Rename 'done' to 'found_delimiter'.
12274
12275 2008-05-01  Jim Meyering  <meyering@redhat.com>
12276
12277         vc-list-files: accommodate /bin/sh like the one from Solaris 10
12278         * build-aux/vc-list-files: Use `...`, not $(...).
12279
12280 2008-04-30  Jim Meyering  <meyering@redhat.com>
12281
12282         add tests for vc-list-files
12283         * modules/vc-list-files-tests: New module.
12284         * tests/test-vc-list-files-cvs.sh: New file.
12285         * tests/test-vc-list-files-git.sh: New file.
12286
12287         avoid a warning from gcc
12288         * lib/getndelim2.c (IF_LINT): Define.
12289         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
12290
12291         vc-list-files: work properly with build-aux/cvsu, too
12292         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
12293         to all cvs-based clauses.
12294
12295         vc-list-files: work properly in the CVS+awk case, too
12296         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
12297
12298         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
12299         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
12300         take more than one file argument, so .  Add quotes, just in case $dir
12301         ever contains a shell meta-character.  Prompted by Soren Hansen in
12302         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
12303
12304 2008-04-29  Eric Blake  <ebb9@byu.net>
12305
12306         Optimize getndelim2 to use block operations when possible.
12307         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
12308         freadseek, and memchr2.
12309         * lib/getndelim2.c (getndelim2): Use them for block reads.
12310
12311 2008-04-29  Bruno Haible  <bruno@clisp.org>
12312
12313         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
12314         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
12315         * modules/inet_ntop (Depends-on): Add extensions.
12316         * modules/inet_pton (Depends-on): Likewise.
12317         Reported by Simon Josefsson.
12318
12319 2008-04-29  Jim Meyering  <meyering@redhat.com>
12320
12321         When the is more than one match in a block, match all of them.
12322         * build-aux/useless-if-before-free: Iterate through each block
12323         until there are no more matches.
12324
12325         Fix broken useless-if-before-free script.
12326         * build-aux/useless-if-before-free: Fix typo: missing "?" after
12327         the expression to match cast of argument to free-like function.
12328
12329 2008-04-29  Eric Blake  <ebb9@byu.net>
12330
12331         Use new header.
12332         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
12333
12334 2008-04-29  Jim Meyering  <meyering@redhat.com>
12335
12336         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
12337         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
12338         by gnulib to exist and to declare e.g., inet_ntop.
12339         Don't include "inet_ntop.h", now removed.
12340
12341         * m4/arpa_inet_h.m4: Remove trailing blanks.
12342
12343 2008-04-29  Eric Blake  <ebb9@byu.net>
12344
12345         Silence valgrind on safe reads beyond potential array bounds.
12346         * lib/rawmemchr.valgrind: New file.
12347         * lib/strchrnul.valgrind: Likewise.
12348         * modules/rawmemchr (Files): Distribute new file.
12349         * modules/strchrnul (Files): Likewise.
12350         Suggested by Bruno Haible.
12351
12352 2008-04-29  Bruno Haible  <bruno@clisp.org>
12353
12354         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
12355         (inet_ntop, inet_pton): Change portability warning's wording.
12356         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
12357         Invoke gl_CHECK_NEXT_HEADERS.
12358         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
12359         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
12360         set ARPA_INET_H.
12361         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
12362         * modules/arpa_inet (Description): No longer only for systems that
12363         lack it.
12364         (Depends-on): Add include_next.
12365         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
12366         HAVE_ARPA_INET_H.
12367
12368 2008-04-29  Jim Meyering  <meyering@redhat.com>
12369
12370         * modules/mkdir (License): Re-license as LGPLv2+.
12371
12372 2008-04-29  Bruno Haible  <bruno@clisp.org>
12373
12374         * modules/rawmemchr (Maintainer): Set to Eric.
12375         * modules/strchrnul (Maintainer): Likewise.
12376
12377 2008-04-29  Simon Josefsson  <simon@josefsson.org>
12378
12379         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
12380         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
12381
12382         * modules/arpa_inet (arpa/inet.h): Use them.
12383
12384 2008-04-28  Eric Blake  <ebb9@byu.net>
12385
12386         Test getndelim2.
12387         * modules/getndelim2-tests: New file.
12388         * tests/test-getndelim2.c: Likewise.
12389         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
12390         stream.
12391         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
12392
12393         * MODULES.html.sh: Document new module.
12394
12395 2008-04-20  Bruno Haible  <bruno@clisp.org>
12396
12397         * lib/c-stack.c (die): Use raise.
12398         * modules/c-stack (Depends-on): Add raise.
12399
12400 2008-04-28  Bruno Haible  <bruno@clisp.org>
12401
12402         Expect rpmatch to be declared.
12403         * lib/yesno.c (rpmatch): Remove declaration.
12404
12405         Declare rpmatch.
12406         * lib/stdlib.in.h (rpmatch): New declaration.
12407         * lib/rpmatch.c: Include <stdlib.h> first.
12408         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
12409         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
12410         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
12411         HAVE_RPMATCH.
12412         * modules/rpmatch (Depends-on): Add stdlib, extensions.
12413         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12414         (Include): Set to <stdlib.h>.
12415         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
12416         HAVE_RPMATCH.
12417         * NEWS: Document the change.
12418
12419 2008-04-28  Bruno Haible  <bruno@clisp.org>
12420
12421         Change rpmatch to use nl_langinfo when appropriate.
12422         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
12423         (N_): New macro.
12424         (localized_pattern): New function/macro.
12425         (try): Remove match, nomatch arguments. Copy the pattern into safe
12426         memory before caching it.
12427         (rpmatch): Use localized_pattern. Add translator comments.
12428         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
12429         Suggested by Eric Blake.
12430         * modules/rpmatch (Depends-on): Add stdbool.
12431
12432 2008-04-28  Eric Blake  <ebb9@byu.net>
12433
12434         Add rawmemchr module, matching glibc.
12435         * modules/string (Makefile.am): New indicator.
12436         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
12437         * lib/string.in.h (rawmemchr): Declare when appropriate.
12438         * modules/rawmemchr: New file.
12439         * m4/rawmemchr.m4: Likewise.
12440         * lib/rawmemchr.c: Likewise.
12441         * modules/rawmemchr-tests: Likewise.
12442         * tests/test-rawmemchr.c: Likewise.
12443         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
12444         module.
12445         * modules/strchrnul (Depends-on): Add rawmemchr.
12446         * lib/strchrnul.c (strchrnul): Optimize a corner case.
12447
12448         Whitespace cleanup.
12449         * tests/test-strchrnul.c: Reindent.
12450         * lib/strchrnul.c: Likewise.
12451
12452         Optimize and test strchrnul.
12453         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
12454         * modules/strchrnul-tests: New file.
12455         * tests/test-strchrnul.c: Likewise.
12456
12457         Remove intprops dependency.
12458         * modules/memchr (Depends-on): Remove intprops.
12459         * modules/memrchr (Depends-on): Likewise.
12460         * modules/memchr2 (Depends-on): Likewise.
12461         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
12462         * lib/memrchr.c (__memrchr): Likewise.
12463         * lib/memrchr2.c (memchr2): Likewise.
12464         Reported by Simon Josefsson.
12465
12466 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12467
12468         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
12469         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12470
12471 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12472
12473         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
12474
12475         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
12476
12477         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
12478
12479         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
12480         declarations.
12481         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
12482
12483         * m4/inet_pton.m4: Don't check for header files.
12484
12485         * m4/inet_ntop.m4: Don't check for header files.
12486
12487 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12488
12489         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
12490         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
12491         trigger for cygwin).
12492         Reported by Bruno Haible  <bruno@clisp.org>.
12493
12494 2008-04-28  Bruno Haible  <bruno@clisp.org>
12495
12496         * doc/posix-functions/strdup.texi: Mention mingw problem.
12497
12498 2008-04-27  Bruno Haible  <bruno@clisp.org>
12499
12500         * modules/stat-time-tests (Depends-on): Add sleep.
12501         * tests/test-stat-time.c (force_unlink): New function.
12502         (cleanup): Use it.
12503         (test_mtime): Remove the ctime related tests.
12504         (test_ctime): New function, containing the ctime related tests.
12505         (main): Call test_ctime, except on native Windows platforms.
12506
12507 2008-04-27  Bruno Haible  <bruno@clisp.org>
12508
12509         * lib/rpmatch.c (rpmatch): Add some comments.
12510         Reported by James Youngman <jay@gnu.org>.
12511
12512 2008-04-27  Bruno Haible  <bruno@clisp.org>
12513
12514         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
12515         quiet NaNs.
12516
12517 2008-04-27  Bruno Haible  <bruno@clisp.org>
12518
12519         Make test-yesno.sh work on mingw.
12520         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
12521         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
12522         (main): Set stdin to binary mode.
12523         * modules/yesno-tests (Depends-on): Add binary-io.
12524
12525 2008-04-27  Bruno Haible  <bruno@clisp.org>
12526
12527         Fix 'isfinite' on x86, x86_64, ia64 platforms.
12528         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
12529         argument that lie outside the IEEE 854 domain.
12530         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
12531         (gl_ISFINITE): Use it.
12532         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
12533
12534 2008-04-27  Bruno Haible  <bruno@clisp.org>
12535
12536         Allow local renaming in config.h.
12537         * lib/memrchr.c (memrchr): Don't undefine outside libc.
12538
12539 2008-04-27  Bruno Haible  <bruno@clisp.org>
12540
12541         * lib/memchr.c (__memchr): Change type of 'i'.
12542         * lib/memchr2.c (memchr2): Likewise.
12543
12544 2008-04-26  Eric Blake  <ebb9@byu.net>
12545         and Bruno Haible  <bruno@clisp.org>
12546
12547         Optimize and test memrchr.
12548         * modules/memrchr (Depends-on): Add intprops.
12549         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
12550         * modules/memrchr-tests: New file.
12551         * tests/test-memrchr.c: New file.
12552
12553 2008-04-26  Bruno Haible  <bruno@clisp.org>
12554
12555         Add tentative support for DragonFly BSD.
12556         * lib/stdio-impl.h: Add macros for DragonFly BSD.
12557         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
12558         fp.
12559         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
12560         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
12561         * lib/fpurge.c (fpurge): Likewise.
12562         * lib/freadable.c (freaadable): Likewise.
12563         * lib/freadahead.c (freadahead): Likewise.
12564         * lib/freading.c (freading): Likewise.
12565         * lib/freadptr.c (freadptr): Likewise.
12566         * lib/freadseek.c (freadptrinc): Likewise.
12567         * lib/fseeko.c (fseeko): Likewise.
12568         * lib/fseterr.c (fseterr): Likewise.
12569         * lib/fwritable.c (fwritable): Likewise.
12570         * lib/fwriting.c (fwriting): Likewise.
12571
12572 2008-04-26  Bruno Haible  <bruno@clisp.org>
12573
12574         * lib/stdio-impl.h: New file.
12575         * lib/fbufmode.c: Include stdio-impl.h.
12576         (fbufmode): Use fp_, remove redundant #defines.
12577         * lib/fflush.c: Include stdio-impl.h.
12578         (clear_ungetc_buffer): Remove redundant #defines.
12579         * lib/fpurge.c: Include stdio-impl.h.
12580         (fpurge): Remove redundant #defines.
12581         * lib/freadable.c: Include stdio-impl.h.
12582         (freadable): Remove redundant #defines.
12583         * lib/freadahead.c: Include stdio-impl.h.
12584         (freadahead): Remove redundant #defines.
12585         * lib/freading.c: Include stdio-impl.h.
12586         (freading): Remove redundant #defines.
12587         * lib/freadptr.c: Include stdio-impl.h.
12588         (freadptr): Remove redundant #defines.
12589         * lib/freadseek.c: Include stdio-impl.h.
12590         (freadptrinc): Remove redundant #defines.
12591         * lib/fseeko.c: Include stdio-impl.h.
12592         (rpl_fseeko): Remove redundant #defines.
12593         * lib/fseterr.c: Include stdio-impl.h.
12594         (fseterr): Remove redundant #defines.
12595         * lib/fwritable.c: Include stdio-impl.h.
12596         (fwritable: Remove redundant #defines.
12597         * lib/fwriting.c: Include stdio-impl.h.
12598         (fwriting): Remove redundant #defines.
12599         * modules/fbufmode (Files): Add lib/stdio-impl.h.
12600         * modules/fflush (Files): Likewise.
12601         * modules/fpurge (Files): Likewise.
12602         * modules/freadable (Files): Likewise.
12603         * modules/freadahead (Files): Likewise.
12604         * modules/freading (Files): Likewise.
12605         * modules/freadptr (Files): Likewise.
12606         * modules/freadseek (Files): Likewise.
12607         * modules/fseeko (Files): Likewise.
12608         * modules/fseterr (Files): Likewise.
12609         * modules/fwritable (Files): Likewise.
12610         * modules/fwriting (Files): Likewise.
12611
12612 2008-04-26  Bruno Haible  <bruno@clisp.org>
12613
12614         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
12615         restore_seek_optimization, update_fpos_cache): New functions, extracted
12616         from rpl_fflush.
12617         (rpl_fflush): Use them.
12618         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
12619         (gl_REPLACE_FFLUSH): Use it.
12620
12621 2008-04-26  Bruno Haible  <bruno@clisp.org>
12622
12623         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
12624         on Solaris.
12625         * tests/test-xstrtoimax.sh: Likewise.
12626         * tests/test-xstrtoumax.sh: Likewise.
12627         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12628
12629 2008-04-26  Bruno Haible  <bruno@clisp.org>
12630
12631         * modules/memchr-tests: New file.
12632         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
12633
12634 2008-04-26  Eric Blake  <ebb9@byu.net>
12635             Bruno Haible  <bruno@clisp.org>
12636
12637         * lib/memchr.c: Include intprops.h.
12638         (__memchr): Optimize parallel detection of matching bytes. Rename local
12639         variables. Add explanatory comments.
12640
12641 2008-04-26  Bruno Haible  <bruno@clisp.org>
12642
12643         Fix module 'memchr', broken since 2000-10-28.
12644         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
12645
12646 2008-04-26  Bruno Haible  <bruno@clisp.org>
12647
12648         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
12649         comments.
12650
12651 2008-04-25  Eric Blake  <ebb9@byu.net>
12652
12653         Use native fstatat on cygwin 1.7.0.
12654         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
12655         first.
12656
12657 2008-04-23  Eric Blake  <ebb9@byu.net>
12658
12659         Improve memchr2 performance.
12660         * lib/memchr2.c (memchr2): Further optimize parallel detection of
12661         NUL bytes.
12662         * modules/memchr2 (Depends-on): Use intprops.h.
12663
12664 2008-04-23  Simon Josefsson  <simon@josefsson.org>
12665
12666         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
12667         an inline function instead of a CPP macro.  Patch by Ben Pfaff
12668         <blp@cs.stanford.edu>.
12669
12670 2008-04-23  Simon Josefsson  <simon@josefsson.org>
12671
12672         * lib/arpa_inet.in.h: New file.
12673
12674         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
12675         (Makefile.am): Sed in substitute header file.
12676
12677         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
12678         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
12679
12680         * modules/inet_ntop (configure.ac): Use
12681         gl_ARPA_INET_MODULE_INDICATOR.
12682
12683         * modules/inet_pton (configure.ac): Use
12684         gl_ARPA_INET_MODULE_INDICATOR.
12685
12686 2008-04-22  Jim Meyering  <meyering@redhat.com>
12687
12688         * modules/verify (License): Re-license as LGPLv2+.
12689
12690 2008-04-22  Simon Josefsson  <simon@josefsson.org>
12691
12692         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
12693         parameter to void* as per POSIX standard (MinGW uses char*).
12694
12695 2008-04-21  Bruno Haible  <bruno@clisp.org>
12696
12697         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
12698         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
12699         Define to replacements if REPLACE_ISWCNTRL is 1.
12700         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
12701         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
12702         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
12703         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
12704         what it fixes.
12705         * doc/posix-functions/iswalpha.texi: Likewise.
12706         * doc/posix-functions/iswblank.texi: Likewise.
12707         * doc/posix-functions/iswcntrl.texi: Likewise.
12708         * doc/posix-functions/iswdigit.texi: Likewise.
12709         * doc/posix-functions/iswgraph.texi: Likewise.
12710         * doc/posix-functions/iswlower.texi: Likewise.
12711         * doc/posix-functions/iswprint.texi: Likewise.
12712         * doc/posix-functions/iswpunct.texi: Likewise.
12713         * doc/posix-functions/iswspace.texi: Likewise.
12714         * doc/posix-functions/iswupper.texi: Likewise.
12715         * doc/posix-functions/iswxdigit.texi: Likewise.
12716         Reported by Alain Guibert.
12717
12718 2008-04-21  Bruno Haible  <bruno@clisp.org>
12719
12720         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
12721         Patch by Alain Guibert.
12722
12723 2008-04-21  Bruno Haible  <bruno@clisp.org>
12724
12725         Fix test failures on mingw.
12726         * tests/test-xstrtol.c (print_no_progname): New function.
12727         (main): Install it in error_print_progname hook.
12728         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
12729         * tests/test-xstrtoimax.sh: Likewise.
12730         * tests/test-xstrtoumax.sh: Likewise.
12731
12732 2008-04-21  Bruno Haible  <bruno@clisp.org>
12733
12734         Fix test failure on mingw.
12735         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
12736
12737 2008-04-21  Bruno Haible  <bruno@clisp.org>
12738
12739         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
12740         Actually assign a value.
12741
12742 2008-04-20  Bruno Haible  <bruno@clisp.org>
12743
12744         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
12745         take 2.
12746         * lib/canonicalize.c (canonicalize_file_name): Elide if the
12747         'canonicalize-lgpl' module is also used.
12748         * lib/canonicalize-lgpl.c: Undo last change.
12749         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
12750
12751 2008-04-20  Bruno Haible  <bruno@clisp.org>
12752
12753         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
12754         config.h. Provide _mkdir based fallback for mingw.
12755         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
12756         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
12757         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
12758         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
12759         rather than defining mkdir in config.h.
12760         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
12761         (gl_SYS_STAT_H_DEFAULTS): New macro.
12762         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
12763         HAVE_IO_H any more.
12764         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
12765         HAVE_DECL_MKDIR and HAVE_IO_H.
12766
12767 2008-04-20  Bruno Haible  <bruno@clisp.org>
12768
12769         * lib/isapipe.c: Port to native Windows platforms.
12770
12771 2008-04-20  Bruno Haible  <bruno@clisp.org>
12772
12773         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
12774
12775 2008-04-21  Eric Blake  <ebb9@byu.net>
12776
12777         Work around preprocessors that don't handle UINTMAX_MAX.
12778         * lib/memchr2.c (memchr2): Avoid embedded #if.
12779         Reported by Alain Guibert, fix suggested by Bruno Haible.
12780
12781 2008-04-21  Simon Josefsson  <simon@josefsson.org>
12782
12783         * doc/posix-functions/strftime.texi (strftime): Explain better
12784         Windows incompatibility.  Suggested by Micah Cowan
12785         <micah@cowan.name>.
12786
12787 2008-04-20  Bruno Haible  <bruno@clisp.org>
12788
12789         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
12790         unistr/u8-mblen.
12791
12792 2008-04-20  Bruno Haible  <bruno@clisp.org>
12793
12794         Fix test failure on platforms with non-GNU iconv.
12795         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
12796         (U_TO_U8): Use it, rather than u16_to_u8.
12797         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
12798         units at the end of the input string.
12799         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
12800
12801 2008-04-20  Bruno Haible  <bruno@clisp.org>
12802
12803         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
12804         when the resulting length is 0.
12805         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
12806
12807 2008-04-20  Bruno Haible  <bruno@clisp.org>
12808
12809         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
12810         works.
12811         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
12812
12813 2008-04-20  Bruno Haible  <bruno@clisp.org>
12814
12815         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
12816         * modules/tsearch-tests (configure.ac): Test for initstate function.
12817
12818 2008-04-20  Bruno Haible  <bruno@clisp.org>
12819
12820         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
12821         for nlink_t if missing.
12822         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
12823
12824 2008-04-19  Bruno Haible  <bruno@clisp.org>
12825
12826         Work around snprintf bug on Linux libc5.
12827         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
12828         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
12829         gl_SNPRINTF_SIZE1.
12830         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12831         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
12832         that test failed.
12833         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
12834         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
12835         * modules/snprintf (Files): Add m4/printf.m4.
12836         * modules/vsnprintf (Files): Likewise.
12837         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
12838         * doc/posix-functions/vsnprintf.texi: Likewise.
12839
12840 2008-04-19  Bruno Haible  <bruno@clisp.org>
12841
12842         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
12843         from 0.0058 to less than 10^-7.
12844
12845 2008-04-19  Bruno Haible  <bruno@clisp.org>
12846
12847         Fix rounding when a precision is given.
12848         * lib/vasnprintf.c (is_borderline): New function.
12849         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
12850         9...9x.
12851         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
12852         %e, %g.
12853         * tests/test-vasprintf-posix.c (test_function): Likewise.
12854         * tests/test-snprintf-posix.h (test_function): Likewise.
12855         * tests/test-sprintf-posix.h (test_function): Likewise.
12856         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
12857         * tests/test-printf-posix.h (test_function): Likewise.
12858         * tests/test-printf-posix.output: Update.
12859         Reported by John Darrington <john@darrington.wattle.id.au> via
12860         Ben Pfaff <blp@cs.stanford.edu>.
12861
12862 2008-04-18  Simon Josefsson  <simon@josefsson.org>
12863
12864         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
12865         Suggested by Bruno Haible <bruno@clisp.org>.
12866
12867 2008-04-17  Bruno Haible  <bruno@clisp.org>
12868
12869         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
12870         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
12871         implementation.
12872         Patch by Bruce Merry <bmerry@gmail.com>.
12873
12874 2008-04-17  Simon Josefsson  <simon@josefsson.org>
12875
12876         * doc/posix-functions/strftime.texi (strftime): Mention that %e
12877         doesn't work under Windows.
12878
12879 2008-04-16  Bruno Haible  <bruno@clisp.org>
12880
12881         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
12882         New macros.
12883         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
12884         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
12885         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
12886         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
12887         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
12888         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
12889         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
12890         macros.
12891         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
12892         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
12893         Northern Sotho, Uighur.
12894
12895 2008-04-16  Bruno Haible  <bruno@clisp.org>
12896
12897         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
12898         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
12899         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
12900         Reported by Daniel Bergström <daniel@octocode.com>.
12901
12902 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
12903             Bruno Haible  <bruno@clisp.org>
12904
12905         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
12906         function.
12907         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
12908         New functions, mostly extracted from gl_locale_name_default.
12909         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
12910
12911 2008-04-16  Eric Blake  <ebb9@byu.net>
12912
12913         Adjust strtod detection to catch glibc 2.7 bug.
12914         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
12915         Reported by John Gatewood Ham.
12916
12917 2008-04-16  Bruno Haible  <bruno@clisp.org>
12918
12919         Add tentative support for Linux libc5.
12920         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
12921         * lib/fpurge.c (fpurge): Likewise.
12922         * lib/freadable.c (freadable): Likewise.
12923         * lib/freadahead.c (freadahead): Likewise.
12924         * lib/freading.c (freading): Likewise.
12925         * lib/freadptr.c (freadptr): Likewise.
12926         * lib/freadseek.c (freadptrinc): Likewise.
12927         * lib/fseeko.c (rpl_fseeko): Likewise.
12928         * lib/fseterr.c (fseterr): Likewise.
12929         * lib/fwritable.c (fwritable): Likewise.
12930         * lib/fwriting.c (fwriting): Likewise.
12931         Reported by Alain Guibert <alguibert+bts@free.fr>.
12932
12933 2008-04-15  Bruno Haible  <bruno@clisp.org>
12934
12935         * modules/mathl (configure.ac): Define module indicator.
12936
12937 2008-04-15  Bruno Haible  <bruno@clisp.org>
12938
12939         * lib/logl.c (logl): Remove unused variables.
12940
12941 2008-04-15  Bruno Haible  <bruno@clisp.org>
12942
12943         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
12944         fails.
12945
12946 2008-04-15  Bruno Haible  <bruno@clisp.org>
12947
12948         * lib/trim.c (trim2): Fix argument of isspace() macro.
12949
12950 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
12951
12952         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
12953         to 0.
12954         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
12955
12956 2008-04-14  Bruno Haible  <bruno@clisp.org>
12957
12958         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
12959         AC_LANG_PROGRAM argument.
12960         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
12961         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
12962         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
12963         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
12964         * m4/math_h.m4 (gl_MATH_H): Likewise.
12965         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
12966         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
12967         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
12968         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
12969         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
12970         * m4/regex.m4 (gl_REGEX): Likewise.
12971         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
12972         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
12973         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
12974         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
12975         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
12976         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
12977         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12978         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
12979
12980 2008-04-14  Jim Meyering  <meyering@redhat.com>
12981
12982         test-strtod: fix typos: s/abs/fabs/
12983         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
12984
12985 2008-04-13  Bruno Haible  <bruno@clisp.org>
12986
12987         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
12988         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
12989         module is also used and while not building the reloc-wrapper.
12990
12991 2008-04-13  Bruno Haible  <bruno@clisp.org>
12992
12993         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
12994
12995 2008-04-13  Bruno Haible  <bruno@clisp.org>
12996
12997         Fix AIX compilation failure introduced on 2008-04-02.
12998         * tests/test-frexp.c (exp): Undefine before redefining.
12999         * tests/test-frexpl.c (exp): Likewise.
13000
13001 2008-04-13  Bruno Haible  <bruno@clisp.org>
13002
13003         Work around a HP-UX stdio bug.
13004         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
13005         * tests/test-ftello.c (main): Likewise.
13006         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
13007         * doc/posix-functions/ftello.texi: Likewise.
13008
13009 2008-04-13  Bruno Haible  <bruno@clisp.org>
13010
13011         Make test-signbit pass on HP-UX/hppa.
13012         * tests/test-signbit.c (minus_zerol): New variable.
13013         (test_signbitl): Use it.
13014
13015 2008-04-13  Bruno Haible  <bruno@clisp.org>
13016
13017         Make truncl work on OSF/1 4.0.
13018         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
13019         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
13020         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
13021         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
13022         HAVE_DECL_TRUNCL.
13023         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
13024         HAVE_DECL_TRUNCL.
13025         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
13026
13027 2008-04-13  Bruno Haible  <bruno@clisp.org>
13028
13029         * lib/unictype.h: Remove trailing comma from enumeration definitions.
13030
13031 2008-04-13  Bruno Haible  <bruno@clisp.org>
13032
13033         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
13034         expression, so as to avoid HP-UX 11 cc compiler bug.
13035
13036 2008-04-13  Bruno Haible  <bruno@clisp.org>
13037
13038         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
13039
13040 2008-04-13  Bruno Haible  <bruno@clisp.org>
13041
13042         * lib/git-merge-changelog.c: Remove empty declaration outside of
13043         functions.
13044
13045 2008-04-13  Bruno Haible  <bruno@clisp.org>
13046
13047         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
13048
13049 2008-04-13  Bruno Haible  <bruno@clisp.org>
13050
13051         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
13052         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
13053         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
13054         also if it exists but lacks definitions of the SHUT_* macros.
13055         * modules/sys_socket (Description): Update.
13056         Reported by Elbert Pol <e.pol@chello.nl>.
13057
13058 2008-04-13  Bruno Haible  <bruno@clisp.org>
13059
13060         * lib/localcharset.c (OS2): Don't redefine if already defined.
13061         Reported by Elbert Pol <e.pol@chello.nl>.
13062
13063 2008-04-13  Bruno Haible  <bruno@clisp.org>
13064
13065         * lib/binary-io.h [__EMX__]: Include <io.h>.
13066         Reported by Elbert Pol <e.pol@chello.nl>.
13067
13068 2008-04-12  Bruno Haible  <bruno@clisp.org>
13069
13070         * lib/fpucw.h: Enable the definitions also for x86_64.
13071         Needed for NetBSD/x86_64.
13072         Reported by Thomas Klausner <tk@giga.or.at>.
13073
13074 2008-04-12  Bruno Haible  <bruno@clisp.org>
13075
13076         * tests/test-strtod.c: Include isnand.h.
13077         (main): Use isnand instead of isnan.
13078         Reported by Jim Meyering.
13079
13080 2008-04-12  Bruno Haible  <bruno@clisp.org>
13081
13082         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
13083         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
13084
13085 2008-04-12  Jim Meyering  <meyering@redhat.com>
13086
13087         * m4/math_h.m4 (gl_MATH_H): Fix typos.
13088
13089 2008-04-12  Bruno Haible  <bruno@clisp.org>
13090
13091         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
13092         Reported by Elbert Pol <e.pol@chello.nl>.
13093
13094 2008-04-12  Eric Blake  <ebb9@byu.net>
13095
13096         Work around Solaris 10 math.h bug.
13097         * m4/math_h.m4 (gl_MATH_H): Check for bug.
13098         (gl_MATH_H_DEFAULTS): Set up default.
13099         * modules/math (Makefile.am): Replace new indicators.
13100         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
13101         * tests/test-math.c (main): Test this.
13102         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
13103         * doc/posix-headers/math.texi (math.h): Mention bug.
13104         Reported by Nelson H. F. Beebe and Jim Meyering.
13105
13106 2008-04-11  Bruno Haible  <bruno@clisp.org>
13107
13108         Adapt to future versions of Apple GCC.
13109         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
13110         Reported by Peter O'Gorman <peter@pogma.com>.
13111
13112 2008-04-11  Bruno Haible  <bruno@clisp.org>
13113
13114         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
13115
13116 2008-04-11  Bruno Haible  <bruno@clisp.org>
13117
13118         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
13119
13120         * modules/getaddrinfo-tests (Makefile.am): Define
13121         test_getaddrinfo_LDADD.
13122
13123 2008-04-11  Bruno Haible  <bruno@clisp.org>
13124
13125         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
13126         (init): Fix syntax error.
13127         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
13128         is declared.
13129
13130 2008-04-11  Bruno Haible  <bruno@clisp.org>
13131
13132         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
13133         * modules/glob (Depends-on): Add stdbool.
13134
13135 2008-04-11  Bruno Haible  <bruno@clisp.org>
13136
13137         * lib/trim.c: Include <string.h>.
13138
13139 2008-04-11  Eric Blake  <ebb9@byu.net>
13140
13141         Avoid compile failure on OS/2.
13142         * lib/regex_internal.h (internal_function): Disable optimization
13143         on OS/2 (__EMX__), where it caused compiler error.
13144         Reported by Elbert Pol.
13145
13146 2008-04-11  Bruno Haible  <bruno@clisp.org>
13147
13148         Flush the standard error stream before aborting. Needed on mingw.
13149         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
13150         * tests/test-array_list.c (ASSERT): Likewise.
13151         * tests/test-array_oset.c (ASSERT): Likewise.
13152         * tests/test-avltree_list.c (ASSERT): Likewise.
13153         * tests/test-avltree_oset.c (ASSERT): Likewise.
13154         * tests/test-avltreehash_list.c (ASSERT): Likewise.
13155         * tests/test-binary-io.c (ASSERT): Likewise.
13156         * tests/test-byteswap.c (ASSERT): Likewise.
13157         * tests/test-c-ctype.c (ASSERT): Likewise.
13158         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
13159         * tests/test-c-strcasestr.c (ASSERT): Likewise.
13160         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
13161         * tests/test-c-strstr.c (ASSERT): Likewise.
13162         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
13163         * tests/test-canonicalize.c (ASSERT): Likewise.
13164         * tests/test-carray_list.c (ASSERT): Likewise.
13165         * tests/test-ceilf1.c (ASSERT): Likewise.
13166         * tests/test-ceilf2.c (ASSERT): Likewise.
13167         * tests/test-ceill.c (ASSERT): Likewise.
13168         * tests/test-count-one-bits.c (ASSERT): Likewise.
13169         * tests/test-fbufmode.c (ASSERT): Likewise.
13170         * tests/test-fflush2.c (ASSERT): Likewise.
13171         * tests/test-floorf1.c (ASSERT): Likewise.
13172         * tests/test-floorf2.c (ASSERT): Likewise.
13173         * tests/test-floorl.c (ASSERT): Likewise.
13174         * tests/test-fopen.c (ASSERT): Likewise.
13175         * tests/test-fpending.c (ASSERT): Likewise.
13176         * tests/test-fprintf-posix.c (ASSERT): Likewise.
13177         * tests/test-fpurge.c (ASSERT): Likewise.
13178         * tests/test-freadable.c (ASSERT): Likewise.
13179         * tests/test-freadahead.c (ASSERT): Likewise.
13180         * tests/test-freading.c (ASSERT): Likewise.
13181         * tests/test-freadptr.c (ASSERT): Likewise.
13182         * tests/test-freadptr2.c (ASSERT): Likewise.
13183         * tests/test-freadseek.c (ASSERT): Likewise.
13184         * tests/test-freopen.c (ASSERT): Likewise.
13185         * tests/test-frexp.c (ASSERT): Likewise.
13186         * tests/test-frexpl.c (ASSERT): Likewise.
13187         * tests/test-fseek.c (ASSERT): Likewise.
13188         * tests/test-fseeko.c (ASSERT): Likewise.
13189         * tests/test-fstrcmp.c (ASSERT): Likewise.
13190         * tests/test-ftell.c (ASSERT): Likewise.
13191         * tests/test-ftello.c (ASSERT): Likewise.
13192         * tests/test-func.c (ASSERT): Likewise.
13193         * tests/test-fwritable.c (ASSERT): Likewise.
13194         * tests/test-fwriting.c (ASSERT): Likewise.
13195         * tests/test-getdelim.c (ASSERT): Likewise.
13196         * tests/test-getline.c (ASSERT): Likewise.
13197         * tests/test-i-ring.c (ASSERT): Likewise.
13198         * tests/test-iconv-utf.c (ASSERT): Likewise.
13199         * tests/test-iconv.c (ASSERT): Likewise.
13200         * tests/test-isfinite.c (ASSERT): Likewise.
13201         * tests/test-isnand.c (ASSERT): Likewise.
13202         * tests/test-isnanf.c (ASSERT): Likewise.
13203         * tests/test-isnanl.h (ASSERT): Likewise.
13204         * tests/test-ldexpl.c (ASSERT): Likewise.
13205         * tests/test-linked_list.c (ASSERT): Likewise.
13206         * tests/test-linkedhash_list.c (ASSERT): Likewise.
13207         * tests/test-localename.c (ASSERT): Likewise.
13208         * tests/test-lseek.c (ASSERT): Likewise.
13209         * tests/test-mbscasecmp.c (ASSERT): Likewise.
13210         * tests/test-mbscasestr1.c (ASSERT): Likewise.
13211         * tests/test-mbscasestr2.c (ASSERT): Likewise.
13212         * tests/test-mbscasestr3.c (ASSERT): Likewise.
13213         * tests/test-mbscasestr4.c (ASSERT): Likewise.
13214         * tests/test-mbschr.c (ASSERT): Likewise.
13215         * tests/test-mbscspn.c (ASSERT): Likewise.
13216         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
13217         * tests/test-mbspbrk.c (ASSERT): Likewise.
13218         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
13219         * tests/test-mbsrchr.c (ASSERT): Likewise.
13220         * tests/test-mbsspn.c (ASSERT): Likewise.
13221         * tests/test-mbsstr1.c (ASSERT): Likewise.
13222         * tests/test-mbsstr2.c (ASSERT): Likewise.
13223         * tests/test-mbsstr3.c (ASSERT): Likewise.
13224         * tests/test-memchr2.c (ASSERT): Likewise.
13225         * tests/test-memmem.c (ASSERT): Likewise.
13226         * tests/test-open.c (ASSERT): Likewise.
13227         * tests/test-printf-frexp.c (ASSERT): Likewise.
13228         * tests/test-printf-frexpl.c (ASSERT): Likewise.
13229         * tests/test-printf-posix.c (ASSERT): Likewise.
13230         * tests/test-quotearg.c (ASSERT): Likewise.
13231         * tests/test-rbtree_list.c (ASSERT): Likewise.
13232         * tests/test-rbtree_oset.c (ASSERT): Likewise.
13233         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
13234         * tests/test-round1.c (ASSERT): Likewise.
13235         * tests/test-roundf1.c (ASSERT): Likewise.
13236         * tests/test-roundl.c (ASSERT): Likewise.
13237         * tests/test-signbit.c (ASSERT): Likewise.
13238         * tests/test-sleep.c (ASSERT): Likewise.
13239         * tests/test-snprintf-posix.c (ASSERT): Likewise.
13240         * tests/test-snprintf.c (ASSERT): Likewise.
13241         * tests/test-sprintf-posix.c (ASSERT): Likewise.
13242         * tests/test-stat-time.c (ASSERT): Likewise.
13243         * tests/test-strcasestr.c (ASSERT): Likewise.
13244         * tests/test-strerror.c (ASSERT): Likewise.
13245         * tests/test-striconv.c (ASSERT): Likewise.
13246         * tests/test-striconveh.c (ASSERT): Likewise.
13247         * tests/test-striconveha.c (ASSERT): Likewise.
13248         * tests/test-strsignal.c (ASSERT): Likewise.
13249         * tests/test-strstr.c (ASSERT): Likewise.
13250         * tests/test-strtod.c (ASSERT): Likewise.
13251         * tests/test-trunc1.c (ASSERT): Likewise.
13252         * tests/test-trunc2.c (ASSERT): Likewise.
13253         * tests/test-truncf1.c (ASSERT): Likewise.
13254         * tests/test-truncf2.c (ASSERT): Likewise.
13255         * tests/test-truncl.c (ASSERT): Likewise.
13256         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
13257         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
13258         * tests/test-vasnprintf.c (ASSERT): Likewise.
13259         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
13260         * tests/test-vasprintf.c (ASSERT): Likewise.
13261         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
13262         * tests/test-vprintf-posix.c (ASSERT): Likewise.
13263         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
13264         * tests/test-vsnprintf.c (ASSERT): Likewise.
13265         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
13266         * tests/test-wcwidth.c (ASSERT): Likewise.
13267         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
13268         * tests/test-xprintf-posix.c (ASSERT): Likewise.
13269         * tests/test-xvasprintf.c (ASSERT): Likewise.
13270         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
13271         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
13272         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
13273         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
13274         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
13275         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
13276         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
13277         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
13278         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
13279         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
13280         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
13281         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
13282         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
13283         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
13284         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
13285         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
13286         * tests/unictype/test-block_list.c (ASSERT): Likewise.
13287         * tests/unictype/test-block_of.c (ASSERT): Likewise.
13288         * tests/unictype/test-block_test.c (ASSERT): Likewise.
13289         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
13290         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
13291         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
13292         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
13293         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
13294         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
13295         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
13296         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
13297         * tests/unictype/test-combining.c (ASSERT): Likewise.
13298         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
13299         * tests/unictype/test-digit.c (ASSERT): Likewise.
13300         * tests/unictype/test-mirror.c (ASSERT): Likewise.
13301         * tests/unictype/test-numeric.c (ASSERT): Likewise.
13302         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
13303         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
13304         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
13305         * tests/unictype/test-scripts.c (ASSERT): Likewise.
13306         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
13307         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
13308         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
13309         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
13310         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
13311         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
13312         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
13313         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
13314         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
13315         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
13316         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
13317         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
13318         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
13319         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
13320         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
13321         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
13322         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
13323         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
13324         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
13325         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
13326         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
13327         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
13328         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
13329         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
13330         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
13331         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
13332         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
13333         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
13334         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
13335         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
13336         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
13337         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
13338         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
13339         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
13340         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
13341         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
13342         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
13343         Reported by Eric Blake.
13344
13345 2008-04-11  Bruno Haible  <bruno@clisp.org>
13346
13347         * lib/wchar.in.h: Tweak comment.
13348
13349 2008-04-11  Bruno Haible  <bruno@clisp.org>
13350
13351         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
13352         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
13353         gl_COMMON.
13354         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
13355
13356 2008-04-11  Bruno Haible  <bruno@clisp.org>
13357
13358         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
13359
13360 2008-04-11  Simon Josefsson  <simon@josefsson.org>
13361
13362         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
13363         of attempting to use non-existing /dev/*random.  Based on patch
13364         from Adam Strzelecki <ono@java.pl> in
13365         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
13366
13367 2008-04-08  Bruno Haible  <bruno@clisp.org>
13368
13369         Add tentative support for emx+gcc.
13370         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
13371         * lib/fpurge.c (fpurge): Likewise.
13372         * lib/freadable.c (freadable): Likewise.
13373         * lib/freadahead.c (freadahead): Likewise.
13374         * lib/freading.c (freading): Likewise.
13375         * lib/freadptr.c (freadptr): Likewise.
13376         * lib/freadseek.c (freadptrinc): Likewise.
13377         * lib/fseeko.c (rpl_fseeko): Likewise.
13378         * lib/fseterr.c (fseterr): Likewise.
13379         * lib/fwritable.c (fwritable): Likewise.
13380         * lib/fwriting.c (fwriting): Likewise.
13381         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
13382
13383 2008-04-09  Eric Blake  <ebb9@byu.net>
13384
13385         Avoid some autoconf warnings.
13386         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
13387         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
13388         * m4/afs.m4 (gl_AFS): Likewise.
13389         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
13390         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
13391         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13392         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
13393         (gl_INTEGER_TYPE_SUFFIX): Likewise.
13394         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
13395         (AC_CHECK_DECLS_ONCE): Likewise.
13396         Rename file...
13397         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
13398         gnulib-tool requires autoconf 2.59 or better.
13399         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
13400
13401 2008-04-08  Eric Blake  <ebb9@byu.net>
13402
13403         Use 'git describe --match' if present (added in git 1.5.5).
13404         * build-aux/git-version-gen: Limit result to tags that match 'v*'
13405         if possible.
13406
13407 2008-04-08  Bruno Haible  <bruno@clisp.org>
13408
13409         Add tentative support for OpenServer.
13410         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
13411         _ptr, _cnt.
13412         * lib/fpurge.c (fpurge): Likewise.
13413         * lib/freadable.c (freadable): Likewise.
13414         * lib/freadahead.c (freadahead): Likewise.
13415         * lib/freading.c (freading): Likewise.
13416         * lib/freadptr.c (freadptr): Likewise.
13417         * lib/freadseek.c (freadptrinc): Likewise.
13418         * lib/fseeko.c (rpl_fseeko): Likewise.
13419         * lib/fseterr.c (fseterr): Likewise.
13420         * lib/fwritable.c (fwritable): Likewise.
13421         * lib/fwriting.c (fwriting): Likewise.
13422         Reported by Roger Cornelius <rac@tenzing.org> and
13423         Brian K. White <brian@aljex.com>.
13424
13425 2008-04-06  Jim Meyering  <meyering@redhat.com>
13426
13427         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
13428
13429 2008-04-06  Bruno Haible  <bruno@clisp.org>
13430
13431         Avoid possible error with non-ASCII bytes in UTF-8 locales.
13432         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
13433         * tests/test-printf-posix.sh: Likewise.
13434         * tests/test-vfprintf-posix.sh: Likewise.
13435         * tests/test-vprintf-posix.sh: Likewise.
13436         * tests/test-xprintf-posix.sh: Likewise.
13437
13438 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13439
13440         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
13441         hide error from 'ls', needed on OS/2.
13442         Report by Elbert Pol <elbert.pol@gmail.com>.
13443
13444 2008-04-04  Eric Blake  <ebb9@byu.net>
13445
13446         Make test-fseeko.c failures meaningful.
13447         * tests/test-fseeko.c: Print line number on failure.
13448         * tests/test-fseek.c: Likewise.
13449         Reported by Nelson H. F. Beebe.
13450
13451         Improve strtod bug detection check.
13452         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
13453         required for Solaris 10.
13454         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
13455
13456 2008-04-04  Bruno Haible  <bruno@clisp.org>
13457
13458         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
13459         by m4/setenv.m4.
13460
13461 2008-04-03  Eric Blake  <ebb9@byu.net>
13462
13463         Ensure sane .version contents.
13464         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
13465         version string.
13466         * build-aux/git-version-gen: Improve documentation.
13467
13468         Make GNU make output nicer.
13469         * top/GNUmakefile [!_have-Makefile]: Add dependency on
13470         MAKECMDGOALS to enforce message for all command line targets.  Set
13471         srcdir for use in maint.mk.
13472
13473         Another maintainer tweak.
13474         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
13475         a target that regenerates version.
13476
13477 2008-04-03  Jim Meyering  <meyering@redhat.com>
13478
13479         vc-list-files: don't cause coreutils "make po-check" failure
13480         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
13481
13482 2008-04-03  Eric Blake  <ebb9@byu.net>
13483
13484         Allow VPATH usage of vc-list-files.
13485         * build-aux/vc-list-files (scriptversion): Add timestamp.
13486         (options): Add --help, --version, -C.
13487         (CVS): Support installed cvsu.
13488
13489 2008-04-02  Bruno Haible  <bruno@clisp.org>
13490
13491         Avoid some "statement with no effect" warnings from gcc.
13492         * tests/test-wctype.c (main): Explicitly ignore unused values.
13493         Reported by Jim Meyering.
13494
13495 2008-04-02  Jim Meyering  <meyering@redhat.com>
13496
13497         Avoid some warnings from "gcc -Wshadow".
13498         * tests/test-frexp.c (exp): Define to a different identifier.
13499         * tests/test-frexpl.c (exp): Likewise.
13500
13501 2008-04-03  Jim Meyering  <meyering@redhat.com>
13502
13503         bootstrap: remove dangling *.[ch] symlinks from lib
13504         * build-aux/bootstrap [dangling symlink removal]: Move find's
13505         -depth option to precede all others, to avoid a warning.
13506         Remove *.[ch] files too, and from "$source_base" (usually lib/).
13507
13508 2008-04-02  Bruno Haible  <bruno@clisp.org>
13509
13510         Avoid some warnings from "gcc -Wshadow".
13511         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
13512         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
13513         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
13514         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
13515         Reported by Jim Meyering.
13516
13517 2008-04-01  Bruno Haible  <bruno@clisp.org>
13518
13519         Fix test to work on IRIX 6.5 with cc.
13520         * tests/test-math.c (numeric_equal): New function.
13521         (main): Use it.
13522
13523 2008-04-01  Bruno Haible  <bruno@clisp.org>
13524
13525         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
13526
13527 2008-04-01  Bruno Haible  <bruno@clisp.org>
13528
13529         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
13530         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13531         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
13532         (Depends-on): Remove math.
13533
13534         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
13535         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13536         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
13537         (Depends-on): Remove math.
13538
13539         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
13540         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13541         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
13542         (Depends-on): Remove math.
13543         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
13544         (Depends-on): Remove math.
13545
13546         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
13547         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13548         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
13549         (Depends-on): Remove math.
13550         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
13551         (Depends-on): Remove math.
13552
13553         * tests/test-round1.c: Include nan.h.
13554         (main): Use NaNd instead of NAN.
13555         * modules/round-tests (Files): Add tests/nan.h.
13556
13557         * tests/test-trunc1.c: Include nan.h.
13558         (main): Use NaNd instead of NAN.
13559         * modules/trunc-tests (Files): Add tests/nan.h.
13560
13561         * tests/test-roundf1.c: Include nan.h.
13562         (main): Use NaNf instead of NAN.
13563         * modules/roundf-tests (Files): Add tests/nan.h.
13564
13565         * tests/test-truncf1.c: Include nan.h.
13566         (main): Use NaNf instead of NAN.
13567         * modules/truncf-tests (Files): Add tests/nan.h.
13568
13569         * tests/test-ceilf1.c: Include nan.h.
13570         (main): Use NaNf instead of NAN.
13571         * modules/ceilf-tests (Files): Add tests/nan.h.
13572
13573         * tests/test-floorf1.c: Include nan.h.
13574         (main): Use NaNf instead of NAN.
13575         * modules/floorf-tests (Files): Add tests/nan.h.
13576
13577         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
13578         (main): Use NaNf instead of NAN.
13579         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
13580
13581         * tests/test-isnand.c: Include nan.h instead of <math.h>.
13582         (main): Use NaNd instead of NAN.
13583         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
13584
13585         * tests/test-frexp.c: Include nan.h.
13586         (main): Use NaNd instead of NAN.
13587         * modules/frexp-tests (Files): Add tests/nan.h.
13588
13589         * lib/isnan.c: Don't include <math.h>.
13590         (FUNC): Don't use NAN macro.
13591         * modules/isnand-nolibm (Depends-on): Remove math.
13592         * modules/isnanf-nolibm (Depends-on): Remove math.
13593         * modules/isnanl (Depends-on): Remove math.
13594         * modules/isnanl-nolibm (Depends-on): Remove math.
13595
13596         * tests/nan.h: New file.
13597
13598 2008-04-01  Eric Blake  <ebb9@byu.net>
13599
13600         Fix typos.
13601         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
13602         values to be the right type.
13603
13604         For now, cater to gnulib strtod inaccuracies.
13605         * tests/test-strtod.c (main): Allow 1-ulp error on expected
13606         fractional results.  While not as nice from a QoI perspective, it
13607         is a quicker patch than correctly implementing decimal to binary
13608         rounding.
13609
13610 2008-03-31  Eric Blake  <ebb9@byu.net>
13611
13612         Guarantee a definition of NAN.
13613         * lib/math.in.h (NAN): Define if missing.
13614         * tests/test-math.c (main): Test it.
13615         * doc/posix-headers/math.texi (math.h): Document this.
13616         * lib/isnan.c (rpl_isnand): Use it.
13617         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
13618         * tests/test-floorf1.c (NaN): Likewise.
13619         * tests/test-frexp.c (NaN): Likewise.
13620         * tests/test-isnand.c (NaN): Likewise.
13621         * tests/test-isnanf.c (NaN): Likewise.
13622         * tests/test-round1.c (NaN): Likewise.
13623         * tests/test-roundf1.c (NaN): Likewise.
13624         * tests/test-snprintf-posix.h (NaN): Likewise.
13625         * tests/test-sprintf-posix.h (NaN): Likewise.
13626         * tests/test-trunc1.c (NaN): Likewise.
13627         * tests/test-truncf1.c (NaN): Likewise.
13628         * tests/test-vasnprintf-posix.c (NaN): Likewise.
13629         * tests/test-vasprintf-posix.c (NaN): Likewise.
13630         * modules/isnand-nolibm (Depends-on): Add math.
13631         * modules/isnanf-nolibm (Depends-on): Likewise.
13632         * modules/isnanl (Depends-on): Likewise.
13633         * modules/isnanl-nolibm (Depends-on): Likewise.
13634         * modules/snprintf-posix-tests (Depends-on): Likewise.
13635         * modules/sprintf-posix-tests (Depends-on): Likewise.
13636         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
13637         * modules/vsprintf-posix-tests (Depends-on): Likewise.
13638         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
13639         * modules/vasprintf-posix-tests (Depends-on): Likewise.
13640
13641 2008-03-31  Bruno Haible  <bruno@clisp.org>
13642
13643         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
13644         * doc/posix-functions/strtod.texi: Likewise.
13645
13646 2008-03-31  Bruno Haible  <bruno@clisp.org>
13647
13648         * tests/test-strtod.c (main): Don't use C99 syntax.
13649
13650 2008-03-31  Bruno Haible  <bruno@clisp.org>
13651
13652         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
13653         Reported by Eric Blake.
13654
13655 2008-03-31  Jim Meyering  <meyering@redhat.com>
13656
13657         Don't compare actual signbit return values.
13658         * tests/test-strtod.c (main): Rather, compare only their
13659         zero/non-zero nature.
13660
13661 2008-03-31  Eric Blake  <ebb9@byu.net>
13662
13663         More strtod documentation.
13664         * doc/posix-functions/strtod.texi (strtod): Interpret more test
13665         failures as distinct bugs.
13666
13667 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
13668
13669         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
13670         Problem reported by Erik Benada in
13671         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
13672
13673 2008-03-30  Bruno Haible  <bruno@clisp.org>
13674
13675         * tests/test-strtod.c: Add comments about which assertion fails on which
13676         platform.
13677         * doc/posix-functions/strtod.texi: Add info about many more platforms.
13678
13679 2008-03-30  Eric Blake  <ebb9@byu.net>
13680
13681         Test signbit behavior on zeros.
13682         * tests/test-signbit.c (test_signbitf): Add tests for zero.
13683         (test_signbitd, test_signbitl): Likewise.
13684
13685         More strtod touchups.
13686         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
13687         sign of negative underflow, for now.  Use .5, not .1.
13688         * doc/posix-functions/strtod.texi (strtod): Mention these
13689         limitations.
13690         Reported by Jim Meyering.
13691
13692 2008-03-30  Bruno Haible  <bruno@clisp.org>
13693
13694         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
13695         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
13696
13697 2008-03-30  Bruno Haible  <bruno@clisp.org>
13698
13699         Avoid failure when attempting to return empty iconv results on some
13700         platforms.
13701         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
13702         allocation, don't report ENOMEM when the resulting string is empty.
13703
13704 2008-03-30  Bruno Haible  <bruno@clisp.org>
13705
13706         Fix buffer overrun.
13707         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
13708         Don't consider the width for tmp_length. Check count against tmp_length
13709         before doing the padding. Ensure enough allocation during padding.
13710
13711 2008-03-30  Eric Blake  <ebb9@byu.net>
13712
13713         strtod touchups.
13714         * lib/strtod.c (strtod): Avoid compiler warnings.
13715         Reported by Jim Meyering.
13716
13717 2008-03-30  Bruno Haible  <bruno@clisp.org>
13718
13719         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
13720         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
13721         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
13722         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
13723         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
13724         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
13725         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
13726         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
13727
13728         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
13729         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
13730         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
13731         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
13732         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
13733         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
13734         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
13735         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
13736
13737         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
13738         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
13739         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
13740         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
13741         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
13742         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
13743         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
13744         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
13745
13746         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
13747         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
13748
13749         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
13750         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
13751
13752         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
13753         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
13754
13755         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
13756         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
13757         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
13758
13759         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
13760         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
13761         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
13762
13763         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
13764         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
13765         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
13766
13767         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
13768         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
13769         * modules/vasprintf (Depends-on): Add EOVERFLOW.
13770
13771         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
13772         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
13773         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
13774         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
13775         (Depends-on): Add EOVERFLOW.
13776         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
13777         (Depends-on): Add EOVERFLOW.
13778         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
13779         (Depends-on): Add EOVERFLOW.
13780         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
13781         (Depends-on): Add EOVERFLOW.
13782         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
13783         (Depends-on): Add EOVERFLOW.
13784         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
13785         (Depends-on): Add EOVERFLOW.
13786         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
13787         (Depends-on): Add EOVERFLOW.
13788         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
13789         (Depends-on): Add EOVERFLOW.
13790
13791         * lib/sprintf.c (EOVERFLOW): Remove fallback.
13792         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
13793         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
13794
13795         * lib/snprintf.c (EOVERFLOW): Remove fallback.
13796         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
13797         * modules/snprintf (Depends-on): Add EOVERFLOW.
13798
13799         * lib/poll.c (EOVERFLOW): Remove fallback.
13800         * modules/poll (Depends-on): Add EOVERFLOW.
13801
13802         * lib/getugroups.c (EOVERFLOW): Remove fallback.
13803         * modules/getugroups (Depends-on): Add EOVERFLOW.
13804
13805         * lib/getdelim.c (EOVERFLOW): Remove fallback.
13806         * modules/getdelim (Depends-on): Add EOVERFLOW.
13807
13808         * lib/ftell.c (EOVERFLOW): Remove fallback.
13809         * modules/ftell (Depends-on): Add EOVERFLOW.
13810
13811         * lib/fprintf.c (EOVERFLOW): Remove fallback.
13812         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
13813         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
13814
13815         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
13816
13817         * modules/EOVERFLOW-tests: New file.
13818         * tests/test-EOVERFLOW.c: New file.
13819
13820         * modules/EOVERFLOW: New file.
13821         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
13822
13823 2008-03-30  Bruno Haible  <bruno@clisp.org>
13824
13825         Fix bug introduced on 2007-06-10.
13826         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
13827         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
13828
13829 2008-03-30  Bruno Haible  <bruno@clisp.org>
13830
13831         Improve freadseek's efficiency after ungetc.
13832         * lib/freadseek.c: Include freadahead.h.
13833         (freadptrinc): New function, extracted from freadseek.
13834         (freadseek): Use it in a loop. Use freadahead to determine the number
13835         of loop iterations.
13836         * modules/freadseek (Depends-on): Add freadahead.
13837         (configure.ac): Require AC_C_INLINE.
13838
13839 2008-03-30  Bruno Haible  <bruno@clisp.org>
13840
13841         * lib/freadseek.c (freadseek): Don't ignore the return value of
13842         freadptr.
13843
13844 2008-03-29  Eric Blake  <ebb9@byu.net>
13845
13846         Add hex float support.
13847         * modules/strtod (Depends-on): Add c-ctype.
13848         (Link): Mention POW_LIB.
13849         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
13850         whitespace between 'e' and exponent.
13851         * tests/test-strtod.c (main): Enable hex float tests.
13852         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
13853         now provides.
13854
13855         Document various strtod bugs, with some fixes.
13856         * doc/posix-functions/strtod.texi (strtod): Document bugs with
13857         "-0x", "inf", "nan", and hex constants.
13858         * doc/posix-functions/atof.texi (atof): Likewise.
13859         * modules/stdlib (Makefile.am): Support strtod.
13860         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
13861         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
13862         detect additional strtod bugs.
13863         * lib/stdlib.in.h (rpl_strtod): Add declarations.
13864         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
13865         bool where appropriate.  Parse 'inf' and 'nan'.
13866         * tests/test-strtod.c: New file.
13867         * modules/strtod (Depends-on): Add stdbool, stdlib.
13868         (configure.ac): Turn on module indicator.
13869         * modules/strtod-tests: New module.
13870
13871 2008-03-29  Eric Blake  <ebb9@byu.net>
13872
13873         Fix ftell on mingw.
13874         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
13875         * modules/ftell-tests (Depends-on): Add binary-io.
13876         * modules/ftello-tests (Depends-on): Likewise.
13877         * tests/test-ftell.c (main): Enhance test to cover behavior after
13878         ungetc.  Enforce binary mode.
13879         * tests/test-ftello.c (main): Likewise.
13880
13881         Pass test-freadseek on cygwin.
13882         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
13883         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
13884         ungetc buffer.
13885
13886         * tests/test-fflush2.c (main): Fix typo.
13887
13888 2008-03-29  Bruno Haible  <bruno@clisp.org>
13889
13890         * tests/test-fflush2.c (main): Temporarily disable the contents of
13891         this test.
13892         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
13893         Reported by Eric Blake.
13894
13895 2008-03-28  Simon Josefsson  <simon@josefsson.org>
13896
13897         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
13898         (GC_SHA224_DIGEST_SIZE): Add.
13899
13900         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
13901         (gc_hash_digest_length): Likewise.
13902         (gc_hash_buffer): Likewise.
13903
13904 2008-03-25  Bruno Haible  <bruno@clisp.org>
13905
13906         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
13907         detail which gettext release to use.
13908         Reported by Simon Josefsson.
13909
13910 2008-03-26  Jim Meyering  <meyering@redhat.com>
13911
13912         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
13913         * modules/gnumakefile (clean-GNUmakefile): Also, use
13914         test ... && ... || : syntax rather than if-then ... fi.
13915
13916         gnumakefile: Don't double-quote-expand $(VPATH) value.
13917         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
13918
13919 2008-03-24  Eric Blake  <ebb9@byu.net>
13920
13921         Alter GNUmakefile to install into top directory.
13922         * modules/maintainer-makefile: Split, and add dependency...
13923         * modules/gnumakefile: to this new module.
13924         * build-aux/GNUmakefile: Move...
13925         * top/GNUmakefile: ...here.
13926         * build-aux/maint.mk: Move...
13927         * top/maint.mk: ...here.
13928         * MODULES.html.sh (Support for maintaining...): Document new
13929         module.
13930
13931 2008-03-23  Bruno Haible  <bruno@clisp.org>
13932
13933         * gnulib-tool: New options --vc-files, --no-vc-files.
13934         (func_usage): Document them.
13935         (vc_files): New variable.
13936         (func_import): Consider vc_files.
13937         (func_create_testdir): Set vc_files to empty.
13938         Suggested by Jim Meyering and Karl Berry.
13939
13940 2008-03-23  Bruno Haible  <bruno@clisp.org>
13941
13942         Fix regex compilation error on HP-UX 11.
13943         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
13944         * modules/regex (Files): Add m4/mbstate_t.m4.
13945         Reported by Ton Voon <ton.voon@altinity.com>.
13946
13947 2008-03-23  Bruno Haible  <bruno@clisp.org>
13948
13949         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
13950
13951 2008-03-23  Eric Blake  <ebb9@byu.net>
13952             Bruno Haible  <bruno@clisp.org>
13953
13954         Install files from top/ in the destination directory.
13955         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
13956         augmentation also for the files from top/.
13957         (func_import, func_create_testdir): Rewrite file names:
13958         top/filename -> filename.
13959
13960 2008-03-23  Bruno Haible  <bruno@clisp.org>
13961
13962         Tweak "gnulib --version" output.
13963         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
13964
13965 2008-03-23  Bruno Haible  <bruno@clisp.org>
13966
13967         Tweak "gnulib --version" output.
13968         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
13969         rather than contents of ChangeLog, when possible.
13970
13971 2008-03-21  Eric Blake  <ebb9@byu.net>
13972
13973         More --version tweaks.
13974         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
13975         date of last ChangeLog entry.
13976
13977 2008-03-21  Jim Meyering  <meyering@redhat.com>
13978
13979         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
13980
13981 2008-03-20  Eric Blake  <ebb9@byu.net>
13982
13983         VPATH fix.
13984         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
13985
13986 2008-03-20  Simon Josefsson  <simon@josefsson.org>
13987
13988         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
13989         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
13990
13991 2008-03-20  Eric Blake  <ebb9@byu.net>
13992
13993         Sync GNUmakefile with coreutils.
13994         * build-aux/GNUmakefile (have-Makefile): Rename...
13995         (_have-Makefile): ...to this, for namespace consideration.
13996         (GNUmakefile.cfg): Include, if present.
13997         (_autoreconf): Define a default.
13998         (_is-dist-target): New rule for rebuilds to pick up intra-release
13999         version.
14000         (maint-cfg.mk): Rename...
14001         (cfg.mk): ...to this.
14002
14003 2008-03-18  Jim Meyering  <meyering@redhat.com>
14004
14005         New script and module: mktempd
14006         * MODULES.html.sh (maint+release support): Add mktempd.
14007         * build-aux/mktempd: New file.
14008         * modules/mktempd: New file.
14009
14010 2008-03-15  Jim Meyering  <meyering@redhat.com>
14011
14012         Undo last change.
14013         * lib/sha1.c, lib/md5.c: 63 != ~63.
14014         Reported by Andreas Schwab.
14015
14016         sha1.c, md5.c: Hoist a redundant expression.
14017         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
14018         "ctx->buflen" only once, before calling *_process_block.
14019         * lib/md5.c (md5_process_bytes): Likewise.
14020
14021 2008-03-14  Eric Blake  <ebb9@byu.net>
14022
14023         Bump copyright year in files generated by gnulib-tool.
14024         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
14025         gnulib-tool, rather than hard-coding it.
14026
14027         Fix 'gnulib-tool --version' output to work with git.
14028         * gnulib-tool (func_gnulib_dir): New function, extracted from...
14029         (startup): ...here.
14030         (func_version): Use it to invoke git-version-gen, rather than
14031         relying on CVS keyword expansion.  Modernize wording.
14032         (cvsdatestamp, last_checkin_date, version): Kill unused
14033         variables.
14034
14035 2008-03-12  Jim Meyering  <meyering@redhat.com>
14036
14037         Recognize optional cast of the argument to free.
14038         * build-aux/useless-if-before-free: Update regexps.
14039
14040         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
14041
14042 2008-03-11  Bruno Haible  <bruno@clisp.org>
14043
14044         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
14045         by a single package.
14046         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
14047         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
14048         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
14049         Reported by Sam Steingold <sds@gnu.org>.
14050
14051 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
14052
14053         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
14054         repositories.
14055
14056 2008-03-11  Bruno Haible  <bruno@clisp.org>
14057
14058         Avoid conflicts between local macro definitions.
14059         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
14060         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
14061
14062 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
14063             Bruno Haible  <bruno@clisp.org>
14064
14065         Make va_copy work with some version of xlc on AIX 5.1.
14066         * lib/stdarg.in.h: New file.
14067         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
14068         On AIX, use a <stdarg.h> file substitute.
14069         * modules/stdarg (Files): Add lib/stdarg.in.h.
14070         (Depends-on): Add include_next.
14071         (Makefile.am): Build a stdarg.h substitute if requested.
14072         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
14073
14074 2008-03-10  Bruno Haible  <bruno@clisp.org>
14075
14076         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
14077         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
14078         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
14079
14080 2008-03-10  Bruno Haible  <bruno@clisp.org>
14081
14082         * modules/stdlib (Depends-on): Add include_next, remove
14083         absolute-header.
14084
14085 2008-03-09  Bruno Haible  <bruno@clisp.org>
14086
14087         * lib/freadahead.h (freadahead): Document more precisely.
14088         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
14089         the sum of both buffer sizes.
14090         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
14091         * NEWS: Document the change.
14092
14093 2008-03-09  Bruno Haible  <bruno@clisp.org>
14094
14095         Extend freadptr to return also the buffer size.
14096         * lib/freadptr.h (freadptr): Add sizep argument.
14097         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
14098         (freadptr): Add sizep argument. Determine buffer size like freadahead
14099         does.
14100         * tests/test-freadptr.c: Don't include freadahead.h.
14101         (main): Adapt for new calling convention of freadptr.
14102         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
14103         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
14104         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
14105         tests/test-freadptr2.sh.
14106         (Depends): Remove freadahead.
14107         (TESTS): Add test-freadptr2.sh.
14108         (check_PROGRAMS): Add test-freadptr2.
14109
14110 2008-03-09  Bruno Haible  <bruno@clisp.org>
14111
14112         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
14113         Report and solution by Simon Josefsson.
14114
14115 2008-03-06  Bruno Haible  <bruno@clisp.org>
14116
14117         Make fflush after ungetc work on BSD platforms.
14118         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
14119         * tests/test-fflush2.c: New file.
14120         * tests/test-fflush2.sh: New file.
14121         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
14122         tests/test-fflush2.c.
14123         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
14124         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
14125
14126 2008-03-06  Eric Blake  <ebb9@byu.net>
14127
14128         Likewise for ftello.
14129         * modules/ftello (Dependencies): Add extensions.
14130         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
14131
14132 2008-03-06  Bruno Haible  <bruno@clisp.org>
14133
14134         * modules/fseeko (Dependencies): Add extensions.
14135         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
14136         Needed on glibc systems.
14137
14138 2008-03-06  Bruno Haible  <bruno@clisp.org>
14139
14140         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
14141         email address.
14142         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
14143
14144 2008-03-06  Bruno Haible  <bruno@clisp.org>
14145
14146         * users.txt: Add libgnupdf.
14147
14148 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
14149
14150         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
14151         (Header File Substitutes, Function Substitutes,
14152         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
14153         (Build robot for gnulib): Fix typo.
14154
14155 2008-03-06  Bruno Haible  <bruno@clisp.org>
14156
14157         * doc/gnulib-tool.texi (VCS Issues): Small updates.
14158         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
14159
14160 2008-03-06  Bruno Haible  <bruno@clisp.org>
14161
14162         * doc/func.texi: New file, extracted from doc/gnulib.texi.
14163         * doc/gnulib.texi: Include it.
14164
14165 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14166
14167         * modules/func (License): Change license to unlimited; there was
14168         no LGPL parts in the module anyway.
14169
14170 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14171
14172         * modules/__func__: Renamed to modules/func.
14173         * modules/__func__-tests: Renamed to modules/func-tests.
14174         * tests/test-__func__.c: Renamed to tests/test-func.c.
14175         * m4/__func__.m4: Renamed to m4/func.m4.
14176         * doc/gnulib.texi (__func__): Section renamed to func.
14177         Suggested by Eric Blake <ebb9@byu.net>.
14178
14179 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14180
14181         * doc/gnulib.texi (__func__): Use C99 terminology when talking
14182         about __func__.  Make example self-contained.  Suggested by Eric
14183         Blake <ebb9@byu.net>.
14184
14185         * tests/test-__func__.c (main): Avoid extraneous () around __func.
14186         Suggested by Eric Blake <ebb9@byu.net>.
14187
14188 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14189
14190         * modules/__func__: New file.
14191         * modules/__func__-tests: New file.
14192         * tests/test-__func__.c: New file.
14193         * m4/__func__.m4: New file.
14194         * doc/gnulib.texi (__func__): Document __func__ module.
14195
14196 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14197
14198         * modules/byteswap (License): Re-license as LGPLv2+.
14199
14200 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14201
14202         * doc/Makefile: Add pdf target.
14203
14204 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14205
14206         * modules/inline (License): Use 'unlimited', since there are only
14207         *.m4 files in this module.
14208
14209 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
14210             Bruno Haible  <bruno@clisp.org>
14211
14212         Add support for HP C 7.1 on OpenVMS 8.3.
14213         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
14214
14215 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
14216
14217         Update VMS specifics.
14218         * lib/getopt.c [VMS]: Remove include of unixlib.h.
14219
14220 2008-03-02  Jim Meyering  <meyering@redhat.com>
14221
14222         Remove the last dependency on the "free" module.
14223         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
14224         Reported by Bob Proulx.
14225
14226         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
14227
14228         Remove useless "if" tests before free.  Deprecate "free" module.
14229         * doc/posix-functions/free.texi: Mention that this
14230         module is no longer useful.
14231         * modules/free (Notice): Say this module is obsolete.
14232         * modules/readutmp (Depends-on): Remove free.
14233         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
14234         * lib/putenv.c (putenv): Likewise.
14235         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
14236         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
14237         * tests/test-c-strcasestr.c (main): Likewise.
14238         * tests/test-c-strstr.c (main): Likewise.
14239         * tests/test-mbscasestr1.c (main): Likewise.
14240         * tests/test-mbscasestr2.c (main): Likewise.
14241         * tests/test-mbsstr1.c (main): Likewise.
14242         * tests/test-mbsstr2.c (main): Likewise.
14243         * tests/test-memmem.c (main): Likewise.
14244         * tests/test-strcasestr.c (main): Likewise.
14245         * tests/test-striconv.c (main): Likewise.
14246         * tests/test-striconveh.c (main): Likewise.
14247         * tests/test-striconveha.c (main): Likewise.
14248         * tests/test-strstr.c (main): Likewise.
14249
14250         * build-aux/git-version-gen: Adjust a comment and the Usage string.
14251
14252         bootstrap: sync from coreutils again
14253         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
14254
14255 2008-03-01  Jim Meyering  <meyering@redhat.com>
14256
14257         bootstrap: sync from coreutils
14258         * build-aux/bootstrap (update_po_files): Copy a .po file into place
14259         also when the target doesn't exist.
14260
14261 2008-03-01  Eric Blake  <ebb9@byu.net>
14262
14263         Fix bugs in last patch.
14264         * lib/memchr2.c (memchr2): Fix typo.
14265         * tests/test-memchr2.c: Test previous bug, and don't use GNU
14266         extension.
14267         Reported by Bruce Korb.
14268
14269         New module 'memchr2'.
14270         * modules/memchr2: New file.
14271         * modules/memchr2-tests: Likewise.
14272         * lib/memchr2.h: Likewise.
14273         * lib/memchr2.c: Likewise, based on memchr.c.
14274         * tests/test-memchr2.c: New test.
14275         * MODULES.html.sh (String handling): Add memchr2.
14276
14277 2008-02-29  Bruno Haible  <bruno@clisp.org>
14278
14279         * modules/freadseek-tests: New file.
14280         * tests/test-freadseek.sh: New file.
14281         * tests/test-freadseek.c: New file.
14282
14283         New module 'freadseek'.
14284         * modules/freadseek: New file.
14285         * lib/freadseek.h: New file.
14286         * lib/freadseek.c: New file.
14287         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
14288
14289 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
14290
14291         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
14292         wydawca.
14293
14294         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
14295         program_invocation_name and program_invocation_short_name are
14296         present.
14297
14298 2008-02-28  Bruno Haible  <bruno@clisp.org>
14299
14300         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
14301         * tests/test-freadptr.sh: Also test non-seekable stdin.
14302
14303 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
14304
14305         * build-aux/bootstrap (source_base, m4_base)
14306         (doc_base, tests_base): New variables.
14307         (gnulib_tool_options): Do not hardcode base directories, use
14308         the above variables instead.
14309
14310 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
14311
14312         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
14313
14314 2008-02-28  Bruno Haible  <bruno@clisp.org>
14315
14316         * modules/freadptr-tests: New file.
14317         * tests/test-freadptr.sh: New file.
14318         * tests/test-freadptr.c: New file.
14319
14320         New module 'freadptr'.
14321         * modules/freadptr: New file.
14322         * lib/freadptr.h: New file.
14323         * lib/freadptr.c: New file.
14324         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
14325
14326 2008-02-26  Karl Berry  <karl@freefriends.org>
14327
14328         Sync from Libtool:
14329         * libltdl/argz.c (argz_add, argz_count): New functions.
14330         * libltdl/argz.in.h: Declare them.
14331         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
14332
14333 2008-02-22  Bruno Haible  <bruno@clisp.org>
14334
14335         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
14336         is a pointer type.  Needed for HP-UX 10.
14337         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
14338         * doc/posix-functions/gmtime_r.texi: Likewise.
14339         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
14340
14341 2008-02-24  Bruno Haible  <bruno@clisp.org>
14342
14343         * modules/environ-tests: New file.
14344         * tests/test-environ.c: New file.
14345
14346         New module 'environ'.
14347         * modules/environ: New file.
14348         * lib/unistd.in.h (environ): New declaration.
14349         * m4/environ.m4: New file.
14350         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
14351         after use.
14352         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
14353         HAVE_DECL_ENVIRON.
14354         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
14355         HAVE_DECL_ENVIRON.
14356         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
14357         wrong claim that 'environ' is missing on some systems.
14358         * modules/execute (Depends-on): Add environ.
14359         * lib/execute.c (environ): Remove fallback declaration.
14360         * modules/pipe (Depends-on): Add environ.
14361         * lib/pipe.c (environ): Remove fallback declaration.
14362         * modules/setenv (Depends-on): Add environ.
14363         * lib/setenv.c (environ): Remove fallback declaration.
14364         * modules/unsetenv (Depends-on): Add environ.
14365         * lib/unsetenv.c (environ): Remove fallback declaration.
14366         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
14367         m4/environ.m4.
14368         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
14369         (gl_PREREQ_UNSETENV): Likewise.
14370
14371 2008-02-24  Bruno Haible  <bruno@clisp.org>
14372
14373         * doc/posix-functions/environ.texi: Document the MacOS X problem.
14374
14375 2008-02-20  Bob Proulx  <bob@proulx.com>
14376
14377         Enable use of older two part flavor 'git describe'.
14378         * build-aux/git-version-gen: If using the older two part flavor of
14379         git version then recreate the third part now present in the
14380         newer three part flavor of git describe.
14381
14382 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
14383
14384         * lib/fts.c (fts_build): Typo correction to comment.
14385
14386 2008-02-17  Bruno Haible  <bruno@clisp.org>
14387
14388         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
14389         generating no-op conflicts.
14390
14391 2008-02-17  Bruno Haible  <bruno@clisp.org>
14392
14393         Speed up by 10%.
14394         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
14395         result_entries, rather than an index-based loop.
14396
14397 2008-02-17  Bruno Haible  <bruno@clisp.org>
14398
14399         Speed up by 25%.
14400         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
14401         'hashcode_cached'.
14402         (entry_create): New function.
14403         (entry_hashcode): Use the cached hashcode if possible.
14404         (read_changelog_file, try_split_merged_entry): Use entry_create.
14405
14406 2008-02-17  Bruno Haible  <bruno@clisp.org>
14407
14408         Speed up from O(n^2) to O(n) for long ChangeLog files.
14409         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
14410         (read_changelog_file): Change implementation of entries_reversed list
14411         to rbtreehash.
14412         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
14413
14414 2008-02-17  Bruno Haible  <bruno@clisp.org>
14415
14416         New option --split-merged-entry.
14417         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
14418         (find_paragraph_end, try_split_merged_entry): New functions.
14419         (long_options): Add option --split-merged-entry.
14420         (usage): Document option --split-merged-entry.
14421         (main): Implement option --split-merged-entry.
14422         Reported by Eric Blake.
14423
14424 2008-02-17  Bruno Haible  <bruno@clisp.org>
14425
14426         * lib/git-merge-changelog.c: Include c-strstr.h.
14427         (main): Support the "git pull --rebase" situation.
14428         * modules/git-merge-changelog (Depends-on): Add c-strstr.
14429         Reported by Eric Blake.
14430
14431 2008-02-16  Eric Blake  <ebb9@byu.net>
14432
14433         Avoid doubling \ in common case of "c-maybe" quoting style.
14434         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
14435         eliding outer quotes.
14436         * lib/quotearg.h: Document this.
14437         * tests/test-quotearg.c (result_strings, inputs, results_g)
14438         (flag_results, locale_results): Test it by adding a new string to
14439         each test group.
14440         (compare_strings): Test new string.
14441
14442 2008-02-13  Eric Blake  <ebb9@byu.net>
14443
14444         Avoid trigraph quoting in default output.
14445         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
14446         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
14447         unless explicitly requested.
14448         * tests/test-quotearg.c (flag_results, main): Add additional tests.
14449
14450 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
14451
14452         Don't rely on signed integer overflowing to negative value.
14453         * lib/getugroups.c (getugroups): Include <limits.h>.
14454         Instead, compare against INT_MAX, and increment only if the test passes.
14455
14456 2008-02-13  Jim Meyering  <meyering@redhat.com>
14457         and Eric Blake  <ebb9@byu.net>
14458
14459         Avoid shadowing warning and compile errors on Linux.
14460         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
14461         forwarding macros on Linux.
14462         (dcgettext): Define a stub, for Linux.
14463         (results_g, main): Avoid warnings.
14464
14465 2008-02-12  Eric Blake  <ebb9@byu.net>
14466
14467         Silence warning in last patch.
14468         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
14469
14470         Quotearg part 4: add tests, fix c-maybe colon quoting.
14471         * lib/quotearg.h: Improve documentation.
14472         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
14473         escapes when adding outer quotes.  When quoting trigraphs, use
14474         valid C notation.  When quoting NUL, omit extra characters if next
14475         character is not digit.  Alter prototype.
14476         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
14477         callers.
14478         * modules/quotearg-tests: New module.
14479         * tests/test-quotearg.c: New test.
14480
14481 2008-02-07  Eric Blake  <ebb9@byu.net>
14482
14483         Quotearg part 3: add flag to control outer quote elision.
14484         * lib/quotearg.h (c_maybe_quoting_style): New style.
14485         (enum quoting_flags): Better documentation of flags.
14486         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
14487         c-maybe style.
14488         (quotearg_buffer_restyled): Handle new flag to elide outer
14489         quotes.
14490
14491         Quotearg part 2: add flag that can control NUL elision.
14492         * lib/quotearg.h (set_quoting_flags): New prototype.
14493         * lib/quotearg.c (struct quoting_options): Add flag field.
14494         (set_quoting_flags): New function.
14495         (quotearg_buffer_restyled): Add flags parameter.
14496         (quotearg_alloc_mem): Set the flag if length cannot be returned.
14497         (quotearg_n_options): Set the flag, since length cannot be
14498         returned.
14499         (quoting_options_from_style): Default flags correctly.
14500
14501         Quotearg part 1: more wrappers, restore quotearg_char state.
14502         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
14503         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
14504         (quotearg_colon_mem): New wrappers.
14505         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
14506         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
14507         functions.
14508         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
14509         (quotearg_colon_mem): New functions.
14510
14511 2008-02-11  Bruno Haible  <bruno@clisp.org>
14512
14513         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
14514         library in the current directory: it does not work with parallel make.
14515         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14516
14517 2008-02-11  Bruno Haible  <bruno@clisp.org>
14518
14519         * .gitattributes: New file.
14520
14521 2008-02-11  Jim Meyering  <meyering@redhat.com>
14522
14523         useless-if-before-free: Fix reversed exit values.
14524         * build-aux/useless-if-before-free: Use correct values
14525         for EXIT_MATCH and EXIT_NO_MATCH.
14526
14527         * build-aux/useless-if-before-free: Close stdout carefully.
14528
14529 2008-02-10  Bruno Haible  <bruno@clisp.org>
14530
14531         New module 'git-merge-changelog'.
14532         * modules/git-merge-changelog: New file.
14533         * lib/git-merge-changelog.c: New file.
14534
14535 2008-02-10  Jim Meyering  <meyering@redhat.com>
14536
14537         useless-if-before-free: New option: --list (-l).
14538
14539         useless-if-before-free: Don't exit immediately upon open failure.
14540         * build-aux/useless-if-before-free: Exit 2 for errors.
14541         Upon failure to open a file, don't exit immediately.
14542         Rather, just warn and continue with any remaining files.
14543
14544 2008-02-10  Bruno Haible  <bruno@clisp.org>
14545
14546         New abstract list operation 'node_set_value'.
14547         * lib/gl_list.h (gl_list_node_set_value): New function.
14548         (struct gl_list_implementation): New field node_set_value.
14549         * lib/gl_list.c (gl_list_node_set_value): New function.
14550         * lib/gl_array_list.c (gl_array_node_set_value): New function.
14551         (gl_array_list_implementation): Update.
14552         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
14553         (gl_carray_list_implementation): Update.
14554         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
14555         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
14556         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
14557         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
14558         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
14559         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
14560         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
14561         Update.
14562         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
14563         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
14564         (gl_sublist_list_implementation): Update.
14565
14566 2008-02-10  Bruno Haible  <bruno@clisp.org>
14567
14568         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
14569         Needed when ELEMENT is #defined to 'some_type *'.
14570
14571 2008-02-10  Jim Meyering  <meyering@redhat.com>
14572
14573         New script and module: useless-if-before-free
14574         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
14575         * build-aux/useless-if-before-free: New file.
14576         * modules/useless-if-before-free: New file.
14577
14578         * build-aux/gitlog-to-changelog: Use committer date, not author date.
14579
14580         xstrtol_error: Fix typo.
14581         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
14582         s/exit_failure/exit_status/.
14583
14584 2008-02-09  Jim Meyering  <meyering@redhat.com>
14585
14586         New script and module: gitlog-to-changelog
14587         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
14588         * modules/gitlog-to-changelog: New file.
14589         * build-aux/gitlog-to-changelog: New file.
14590
14591 2008-02-08  Jim Meyering  <meyering@redhat.com>
14592
14593         Avoid two "parameter unused" warnings.
14594         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
14595         Mark "st" as used.
14596
14597         Use "git COMMAND", not "git-COMMAND".
14598         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
14599         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
14600         * build-aux/git-version-gen: Use "git status", not "git-status".
14601
14602 2008-02-07  Bruno Haible  <bruno@clisp.org>
14603
14604         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
14605         Avoids a crash on Windows Vista.
14606         Reported by Adam Strzelecki <ono@java.pl> via
14607         Simon Josefsson <simon@josefsson.org>.
14608
14609 2008-02-06  Bruno Haible  <bruno@clisp.org>
14610
14611         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
14612         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
14613         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
14614         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
14615         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
14616         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
14617         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
14618         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
14619         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
14620         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
14621         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
14622         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
14623         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
14624         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
14625         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
14626         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
14627         left-adjust flag.
14628         * tests/test-snprintf-posix.h (test_function): Likewise.
14629         * tests/test-sprintf-posix.h (test_function): Likewise.
14630         * tests/test-vasprintf-posix.c (test_function): Likewise.
14631         * doc/posix-functions/fprintf.texi: Update.
14632         * doc/posix-functions/printf.texi: Update.
14633         * doc/posix-functions/snprintf.texi: Update.
14634         * doc/posix-functions/sprintf.texi: Update.
14635         * doc/posix-functions/vfprintf.texi: Update.
14636         * doc/posix-functions/vprintf.texi: Update.
14637         * doc/posix-functions/vsnprintf.texi: Update.
14638         * doc/posix-functions/vsprintf.texi: Update.
14639         Reported by Peter Fales <psfales@alcatel-lucent.com>.
14640
14641 2008-02-06  Bruno Haible  <bruno@clisp.org>
14642
14643         Fix bug introduced on 2008-01-26.
14644         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
14645
14646 2008-02-06  Bruno Haible  <bruno@clisp.org>
14647
14648         Fix bug introduced on 2007-06-10.
14649         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
14650         !NEED_PRINTF_FLAG_ZERO.
14651
14652 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
14653
14654         getloadavg: use libperfstat on AIX5
14655         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
14656
14657 2008-02-03  Bruno Haible  <bruno@clisp.org>
14658
14659         * lib/diffseq.h: Add comments about required #includes.
14660         Reported by Michael Biggs <gnulib@doubleplum.net>.
14661
14662 2008-02-01  Bruno Haible  <bruno@clisp.org>
14663
14664         * users.txt: Add gnuit.
14665
14666 2008-01-31  Bruno Haible  <bruno@clisp.org>
14667
14668         * lib/md4.c (set_uint32): Mark as inline.
14669         * lib/md5.c (set_uint32): Likewise.
14670         * lib/sha1.c (set_uint32): Likewise.
14671         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
14672         * m4/md5.m4 (gl_MD5): Likewise.
14673         * m4/sha1.m4 (gl_SHA1): Likewise.
14674
14675 2008-01-31  Jim Meyering  <meyering@redhat.com>
14676
14677         Use "sizeof VAR", rather than a literal "4".
14678         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
14679         * lib/md4.c (md4_read_ctx): Likewise.
14680         * lib/sha1.c (sha1_read_ctx): Likewise.
14681
14682 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14683
14684         * tests/test-sha1.c: New file, based on test-md5.c.
14685
14686         * modules/crypto/sha1-tests: New file.
14687
14688 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14689
14690         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
14691
14692 2008-01-31  Jim Meyering  <meyering@redhat.com>
14693
14694         Prefer "sizeof v" over the equivalent "4".
14695         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
14696         * lib/md5.c (set_uint32): Likewise.
14697         * lib/sha1.c (set_uint32): Likewise.
14698
14699 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14700
14701         * lib/sha1.c (set_uint32): Mark function as static.
14702
14703 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14704
14705         md2: clarify comments to say that alignment is not required.
14706         * lib/md2.h: Remove warning about alignment in comment.
14707         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
14708         never been required.
14709
14710 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14711
14712         md4: adapt alignment constraint fix from sha1.
14713         * lib/md4.c (set_uint32): New function, from sha1.c
14714         (md4_read_ctx): Use it.
14715         (md4_finish_ctx): Doc fix.
14716         * lib/md4.h: Doc fix.
14717
14718 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14719
14720         md5: adapt alignment constraint fix from sha1.
14721         * lib/md5.c (set_uint32): New function, from sha1.c
14722         (md5_read_ctx): Use it.
14723         (md5_finish_ctx): Doc fix.
14724         * lib/md5.h: Doc fix.
14725
14726 2008-01-30  Peter Palfrader  <weasel@debian.org>
14727
14728         sha1: remove the result buffer alignment constraint
14729         * lib/sha1.c (set_uint32): New function.
14730         (sha1_read_ctx): Rewrite to remove the result buffer alignment
14731         constraint.
14732         (sha1_finish_ctx): Remove comment warning about alignment constraint.
14733         * lib/sha1.h: Likewise.
14734
14735 2008-01-30  Andreas Schwab  <schwab@suse.de>
14736             Bruno Haible  <bruno@clisp.org>
14737
14738         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
14739         correct definition of LDBL_MIN_EXP.
14740
14741 2008-01-30  Karl Berry  <karl@gnu.org>
14742
14743         * config/srclist-update: try to preserve x bit on updates.
14744         * config/srclistvars.sh: update for karl.
14745
14746 2008-01-29  Jim Meyering  <meyering@redhat.com>
14747
14748         vasnprintf.c: Avoid warning about unused label
14749         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
14750         "overflow" label definition and associated code with the
14751         same cpp condition that guards the sole use of that label.
14752
14753 2008-01-26  Bruno Haible  <bruno@clisp.org>
14754
14755         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
14756         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
14757         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
14758         * lib/isnanl-nolibm.h (isnanl): Likewise.
14759         Reported by Paul Eggert <eggert@cs.ucla.edu>.
14760
14761 2008-01-26  Bruno Haible  <bruno@clisp.org>
14762
14763         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
14764         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
14765
14766 2008-01-26  Bruno Haible  <bruno@clisp.org>
14767
14768         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
14769         GCC >= 4.0 built-in.
14770         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
14771
14772 2008-01-26  Bruno Haible  <bruno@clisp.org>
14773
14774         Rename isnan, applicable to 'double' only, to isnand.
14775         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
14776         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
14777         (configure.ac): Update.
14778         (Include): Replace "isnan.h" with "isnand.h".
14779         * m4/isnand.m4: Renamed from m4/isnan.m4.
14780         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
14781         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
14782         instead of isnan.c.
14783         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
14784         instead of HAVE_ISNAN_IN_LIBC.
14785         (isnand): Renamed from isnan.
14786         * lib/isnand.c: New file.
14787         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
14788         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
14789         (Makefile.am): Update.
14790         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
14791         Include isnand.h instead of isnan.h.
14792         (main): Test isnand instead of isnan.
14793         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
14794         isnan-nolibm.
14795         * modules/frexp (Depends-on): Likewise.
14796         * modules/frexp-tests (Depends-on): Likewise.
14797         * modules/frexp-nolibm (Depends-on): Likewise.
14798         * modules/frexp-nolibm-tests (Depends-on): Likewise.
14799         * modules/isfinite (Depends-on): Likewise.
14800         * modules/round-tests (Depends-on): Likewise.
14801         * modules/signbit (Depends-on): Likewise.
14802         * modules/signbit-tests (Depends-on): Likewise.
14803         * modules/snprintf-posix (Depends-on): Likewise.
14804         * modules/sprintf-posix (Depends-on): Likewise.
14805         * modules/trunc-tests (Depends-on): Likewise.
14806         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
14807         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
14808         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
14809         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
14810         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
14811         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
14812         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
14813         * modules/vasnprintf-posix (Depends-on): Likewise.
14814         * modules/vasprintf-posix (Depends-on): Likewise.
14815         * modules/vfprintf-posix (Depends-on): Likewise.
14816         * modules/vsnprintf-posix (Depends-on): Likewise.
14817         * modules/vsprintf-posix (Depends-on): Likewise.
14818         * lib/frexp.c: Include isnand.h instead of isnan.h.
14819         (ISNAN): Set to isnand instead of isnan.
14820         * lib/isfinite.c: Include isnand.h instead of isnan.h.
14821         (gl_isfinited): Use isnand instead of isnan.
14822         * lib/signbitd.c: Include isnand.h instead of isnan.h.
14823         (gl_signbitd): Use isnand instead of isnan.
14824         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
14825         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
14826         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
14827         (main): Use isnand instead of isnan.
14828         * tests/test-round1.c: Include isnand.h.
14829         (main): Use isnand instead of isnan.
14830         * tests/test-round2.c: Include isnand.h instead of isnan.h.
14831         (ISNAN): Set to isnand instead of isnan.
14832         * tests/test-trunc1.c: Include isnand.h.
14833         (main): Use isnand instead of isnan.
14834         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
14835         (equal): Use isnand instead of isnan.
14836         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
14837         isnand-nolibm.
14838         * NEWS: Mention the change.
14839
14840 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
14841             Bruno Haible  <bruno@clisp.org>
14842
14843         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
14844         the GCC builtins for signbits are present and set
14845         REPLACE_SIGNBIT_USING_GCC if so.
14846         * lib/math.in.h (signbit): Define using GCC builtins if
14847         REPLACE_SIGNBIT_USING_GCC is set.
14848         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
14849         REPLACE_SIGNBIT_USING_GCC.
14850         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
14851
14852 2008-01-25  Jim Meyering  <meyering@redhat.com>
14853
14854         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
14855         * lib/poll.c: Include <config.h>, not "config.h".
14856         * tests/test-getaddrinfo.c: Likewise.
14857
14858 2008-01-25  Simon Josefsson  <simon@josefsson.org>
14859
14860         * modules/sockets-tests: New file.
14861
14862 2008-01-24  Simon Josefsson  <simon@josefsson.org>
14863
14864         * modules/sockets: New module, can be used to call WSA_Startup and
14865         WSA_Cleanup when needed.
14866
14867         * lib/sockets.h, lib/sockets.c: New files.
14868
14869         * m4/sockets.m4: New file.
14870
14871         * tests/test-sockets.c: New file.
14872
14873 2008-01-19  Bruno Haible  <bruno@clisp.org>
14874
14875         * doc/posix-headers: Renamed from doc/headers.
14876         * doc/posix-functions: Renamed from doc/functions.
14877         * doc/gnulib.texi: Update.
14878
14879 2008-01-19  Bruno Haible  <bruno@clisp.org>
14880
14881         * doc/glibc-functions/strcasestr.texi: Include contents of
14882         doc/functions/strcasestr.texi, fixing the list of platforms.
14883         * doc/functions/strcasestr.texi: Remove file.
14884
14885 2008-01-19  Bruno Haible  <bruno@clisp.org>
14886
14887         * doc/glibc-functions/memmem.texi: Include contents of
14888         doc/functions/memmem.texi.
14889         * doc/functions/memmem.texi: Remove file.
14890
14891 2008-01-18  Bruno Haible  <bruno@clisp.org>
14892
14893         * doc/glibc-functions/*.texi: New files.
14894         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
14895         to use the new files.
14896
14897 2008-01-17  Bruno Haible  <bruno@clisp.org>
14898
14899         * tests/test-gethostname.c (main): Fix printf statement.
14900
14901 2008-01-17  Simon Josefsson  <simon@josefsson.org>
14902
14903         * modules/gethostname-tests: New file.
14904
14905         * tests/test-gethostname.c: New file.
14906
14907 2008-01-17  Simon Josefsson  <simon@josefsson.org>
14908
14909         * lib/gethostname.c: Include string.h unconditionally, strncpy is
14910         used by the UNAME case.  Reported by Bruno Haible
14911         <bruno@clisp.org>.
14912
14913 2008-01-17  Eric Blake  <ebb9@byu.net>
14914
14915         Convert c-strcasestr to be more efficient.
14916         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
14917         (Depends-on): Add c-strcase, remove malloca, strnlen.
14918         * tests/test-c-strcasestr.c (main): Enhance test.
14919         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
14920
14921 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
14922
14923         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
14924         Use it in creating po/Makevars.
14925
14926 2008-01-15  Simon Josefsson  <simon@josefsson.org>
14927
14928         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
14929         Applications that requires it should initialize libgcrypt
14930         manually.
14931
14932 2008-01-16  Simon Josefsson  <simon@josefsson.org>
14933
14934         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
14935
14936 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
14937
14938         Fix problem with getdate on mingw32 reported by Simon Josefsson
14939         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
14940         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
14941         tzname", when deciding whether to declare tzname.
14942         * lib/strftime.c (tzname): Likewise.
14943
14944 2008-01-15  Bruno Haible  <bruno@clisp.org>
14945
14946         Work around a MacOS X 10.5 bug in frexpl().
14947         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
14948         * doc/functions/frexpl.texi: Document the bug.
14949         Reported by Elias Pipping <pipping@gentoo.org>.
14950
14951 2008-01-14  Eric Blake  <ebb9@byu.net>
14952
14953         Touch up previous patch.
14954         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
14955         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
14956
14957         Convert strcasestr module to use Two-Way algorithm.
14958         * modules/strcasestr-simple: New module, based on the old
14959         strcasestr, but with Two-Way rather than KMP.
14960         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
14961         * lib/string.in.h (rpl_strcasestr): Declare.
14962         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
14963         performance.
14964         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
14965         * modules/string (Makefile.am): Support strcasestr.
14966         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
14967         * modules/strcasestr-tests (Depends-on): Check for alarm.
14968         * tests/test-strcasestr.c: Augment test.
14969         * lib/str-two-way.h: Clean up stray macro.
14970         * NEWS: Document new module.
14971         * MODULES.html.sh (string handling): Likewise.
14972         * doc/functions/strcasestr.texi: New file.
14973         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
14974         here, since it is not a POSIX function.
14975
14976 2008-01-14  Colin Watson  <cjwatson@debian.org>
14977             Bruno Haible  <bruno@clisp.org>
14978
14979         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
14980         works fine; if not, set REPLACE_STRSIGNAL.
14981         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
14982         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14983         REPLACE_STRSIGNAL.
14984         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
14985         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
14986         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
14987
14988 2008-01-14  Bruno Haible  <bruno@clisp.org>
14989
14990         * modules/strsignal (Include): Change to <string.h>.
14991
14992 2008-01-14  Colin Watson  <cjwatson@debian.org>
14993
14994         * modules/argp (Notice): Add a notice recommending to change
14995         XGETTEXT_OPTIONS.
14996         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
14997
14998 2008-01-13  Colin Watson  <cjwatson@debian.org>
14999
15000         * modules/strsignal-tests: New file.
15001         * tests/test-strsignal.c: New file.
15002
15003         * lib/strsignal.c: New file, from glibc with modifications.
15004         * lib/siglist.h: New file, from glibc with modifications.
15005         * lib/string.in.h (strsignal): New declaration.
15006         * m4/strsignal.m4: New file.
15007         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15008         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
15009         * modules/strsignal: New file.
15010         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
15011         HAVE_DECL_STRSIGNAL.
15012
15013 2008-01-13  Bruno Haible  <bruno@clisp.org>
15014
15015         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
15016         locale encoding is not ASCII. Needed for OpenBSD 4.0.
15017         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
15018         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
15019
15020 2008-01-13  Bruno Haible  <bruno@clisp.org>
15021
15022         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
15023         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
15024         * lib/argp.h (__attribute__): Likewise.
15025         * lib/c-stack.c (__attribute__): Likewise.
15026         * lib/error.h (__attribute__): Likewise.
15027         * lib/fts.c (__attribute__): Likewise.
15028         * lib/openat.h (__attribute__): Likewise.
15029         * lib/stdio.in.h (__attribute__): Likewise.
15030         * lib/string.in.h (__attribute__): Likewise.
15031         * lib/utimens.c (__attribute__): Likewise.
15032         * lib/vasnprintf.h (__attribute__): Likewise.
15033         * lib/xalloc.h (__attribute__): Likewise.
15034         * lib/xprintf.h (__attribute__): Likewise.
15035         * lib/xstrtol.h (__attribute__): Likewise.
15036         * lib/xvasprintf.h (__attribute__): Likewise.
15037
15038 2008-01-12  Bruno Haible  <bruno@clisp.org>
15039
15040         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
15041         * doc/glibc-headers/a.out.texi: New file.
15042         * doc/glibc-headers/aliases.texi: New file.
15043         * doc/glibc-headers/alloca.texi: New file.
15044         * doc/glibc-headers/ar.texi: New file.
15045         * doc/glibc-headers/argp.texi: New file.
15046         * doc/glibc-headers/argz.texi: New file.
15047         * doc/glibc-headers/byteswap.texi: New file.
15048         * doc/glibc-headers/crypt.texi: New file.
15049         * doc/glibc-headers/endian.texi: New file.
15050         * doc/glibc-headers/envz.texi: New file.
15051         * doc/glibc-headers/err.texi: New file.
15052         * doc/glibc-headers/error.texi: New file.
15053         * doc/glibc-headers/execinfo.texi: New file.
15054         * doc/glibc-headers/fpu_control.texi: New file.
15055         * doc/glibc-headers/fstab.texi: New file.
15056         * doc/glibc-headers/fts.texi: New file.
15057         * doc/glibc-headers/getopt.texi: New file.
15058         * doc/glibc-headers/ieee754.texi: New file.
15059         * doc/glibc-headers/ifaddrs.texi: New file.
15060         * doc/glibc-headers/libintl.texi: New file.
15061         * doc/glibc-headers/mcheck.texi: New file.
15062         * doc/glibc-headers/mntent.texi: New file.
15063         * doc/glibc-headers/obstack.texi: New file.
15064         * doc/glibc-headers/paths.texi: New file.
15065         * doc/glibc-headers/printf.texi: New file.
15066         * doc/glibc-headers/pty.texi: New file.
15067         * doc/glibc-headers/resolv.texi: New file.
15068         * doc/glibc-headers/shadow.texi: New file.
15069         * doc/glibc-headers/sysexits.texi: New file.
15070         * doc/glibc-headers/ttyent.texi: New file.
15071
15072 2008-01-12  Jim Meyering  <meyering@redhat.com>
15073
15074         announce-gen: emit Gnulib's git-based version string.
15075         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
15076         New option --gnulib-version=V, where V is expected to be
15077         the output of running git describe in the gnulib directory.
15078         (get_tool_versions): Request feedback on xdelta.  I suspect it's
15079         not useful, and plan to stop publishing an xdelta file with each
15080         coreutils release.
15081
15082         * build-aux/announce-gen: Also check for lzma-compressed files.
15083
15084 2008-01-11  Bruno Haible  <bruno@clisp.org>
15085
15086         * tests/test-memmem.c (main): Increase maximum allowed time.
15087         * tests/test-strstr.c (main): Likewise.
15088
15089 2008-01-11  Bruno Haible  <bruno@clisp.org>
15090
15091         * doc/functions/memmem.texi: Add more precisions about platforms.
15092         * doc/functions/strstr.texi: Likewise.
15093
15094 2008-01-10  Eric Blake  <ebb9@byu.net>
15095
15096         * m4/strstr.m4: Delete cruft from copy-n-paste.
15097         Reported by Bruno Haible.
15098
15099 2008-01-10  Bruno Haible  <bruno@clisp.org>
15100
15101         Make c-strstr rely on strstr.
15102         * lib/c-strstr.c: Don't include str-kmp.h.
15103         (c_strstr): Define in terms of strstr.
15104         * modules/c-strstr (Files): Remove lib/str-kmp.h.
15105         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
15106
15107 2008-01-10  Bruno Haible  <bruno@clisp.org>
15108
15109         * doc/gnulib.texi (String Functions in C Locale): New section.
15110         * doc/c-ctype.texi: New file.
15111         * doc/c-strcase.texi: New file.
15112         * doc/c-strcaseeq.texi: New file.
15113         * doc/c-strcasestr.texi: New file.
15114         * doc/c-strstr.texi: New file.
15115         * doc/c-strtod.texi: New file.
15116         * doc/c-strtold.texi: New file.
15117
15118 2008-01-10  Eric Blake  <ebb9@byu.net>
15119
15120         * lib/relocatable.h: Fix a comment.
15121
15122 2008-01-10  Eric Blake  <ebb9@byu.net>
15123
15124         Share two-way algorithm.
15125         * lib/str-two-way.h: New file, merged from...
15126         * lib/memmem.c: ...here...
15127         * lib/strstr.c: ...and here.
15128         * modules/memmem (Files): Use it.
15129         * modules/strstr (Files): Likewise.
15130
15131         Avoid quadratic strstr implementations.
15132         * lib/strstr.c: New file.
15133         * m4/strstr.m4: Likewise.
15134         * modules/strstr: Likewise.
15135         * modules/strstr-tests: Likewise.
15136         * tests/test-strstr.c: Likewise.
15137         * lib/string.in.h (rpl_strstr): Declare.
15138         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
15139         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
15140         * modules/string (Makefile.am): Likewise.
15141         * MODULES.html.sh (string handling): Mention new module.
15142         * doc/functions/strstr.texi (strstr): Document the bug.
15143
15144 2008-01-10  Bruno Haible  <bruno@clisp.org>
15145
15146         * lib/relocatable.h (relocate): State whether result is freshly
15147         allocated or not.
15148         * lib/relocatable.c (relocate): Return a freshly allocated string
15149         instead of a pointer to a privately held string.
15150         Reported by Sylvain Beucler <beuc@gnu.org>.
15151
15152 2008-01-10  Colin Watson  <cjwatson@debian.org>
15153
15154         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
15155         s/S_ISNLK/S_ISLNK/.
15156
15157 2008-01-09  Bruno Haible  <bruno@clisp.org>
15158
15159         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
15160         and other files.
15161         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
15162         if it's only a guess.
15163         * modules/memmem: Simplify by depending on memmem-simple.
15164
15165 2008-01-09  Bruno Haible  <bruno@clisp.org>
15166
15167         Work around OpenBSD 4.0 tdelete() bug.
15168         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
15169         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
15170         macros and don't redefine the enum values.
15171         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
15172         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
15173         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
15174
15175 2008-01-09  Bruno Haible  <bruno@clisp.org>
15176
15177         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
15178         (main): Don't perform the tests if setlocale did not install a UTF-8
15179         locale. Needed on OpenBSD 4.0.
15180         * modules/wcwidth-tests (Depends-on): Add localcharset.
15181
15182 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15183
15184         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
15185         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
15186         * NEWS: announce this.
15187         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
15188
15189 2008-01-09  Simon Josefsson  <simon@josefsson.org>
15190         and Eric Blake  <ebb9@byu.net>
15191
15192         Add memmem-simple module.
15193         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
15194         (gl_FUNC_MEMMEM): Separate performance from presence checks.
15195         * modules/memmem-simple: New file.
15196         * modules/memmem (Description): Tweak.
15197         * MODULES.html.sh (string handling): Mention new module.
15198         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
15199         addressed by memmem-simple.
15200         * NEWS: Document the difference.
15201
15202 2008-01-09  Eric Blake  <ebb9@byu.net>
15203
15204         Give gcc some memmem optimization hints.
15205         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
15206         (strcasestr): Declare as pure.
15207         * modules/memmem (Maintainer): Claim my implementation.
15208
15209 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15210
15211         Support AIX 6.1 and higher.
15212         * build-aux/config.libpath: Likewise.
15213         * build-aux/config.rpath: Likewise.
15214
15215 2008-01-08  Jim Meyering  <meyering@redhat.com>
15216             Bruno Haible  <bruno@clisp.org>
15217
15218         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
15219         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
15220         Reported by Peter Fales in
15221         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
15222
15223 2008-01-08  Bruno Haible  <bruno@clisp.org>
15224
15225         * modules/unictype/category-of (Depends-on): Add
15226         unictype/category-none.
15227         * modules/unictype/category-and-tests (Depends-on): Add
15228         unictype/category-{L,N,Lu,Nd}.
15229         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
15230         * modules/unictype/category-or-tests (Depends-on): Add
15231         unictype/category-{L,N}.
15232         * modules/unictype/category-name-tests (Depends-on): Add
15233         unictype/category-{Z,Nl}.
15234         Reported by Simon Josefsson.
15235
15236 2008-01-08  Bruno Haible  <bruno@clisp.org>
15237
15238         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
15239         convention better.
15240         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
15241         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
15242         Reported by Peter Miller <millerp@canb.auug.org.au>.
15243
15244 2008-01-08  Eric Blake  <ebb9@byu.net>
15245
15246         Rewrite memmem to guarantee linear complexity without malloc.
15247         * lib/memmem.c (memmem): Use Two-Way rather than
15248         Knuth-Morris-Pratt, to allow O(1) space usage.
15249         (critical_factorization, two_way_short_needle)
15250         (two_way_long_needle): New functions.
15251         (knuth_morris_pratt): Delete.
15252         * modules/memmem (Depends-on): No longer need malloca or stdbool.
15253         Add stdint.
15254         * tests/test-memmem.c (main): Add tests for periodic needle and
15255         sublinear performance.
15256         * doc/functions/memmem.texi (memmem): Document other deficiencies
15257         in cygwin and older glibc.
15258
15259 2008-01-08  Bruno Haible  <bruno@clisp.org>
15260
15261         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
15262         augmentation.
15263
15264 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
15265
15266         Add a configure time option: --disable-acl.
15267         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
15268         AC_ARG_ENABLE(acl).
15269
15270 2008-01-06  Simon Josefsson  <simon@josefsson.org>
15271
15272         * tests/test-localename.c: Don't include obsolete "setenv.h".
15273
15274         * modules/localename-tests (Depends-on): Need unsetenv.
15275
15276 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15277
15278         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
15279
15280 2008-01-06  Colin Watson  <cjwatson@debian.org>
15281
15282         * users.txt: Add man-db.
15283
15284 2008-01-07  Bruno Haible  <bruno@clisp.org>
15285
15286         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
15287         previous section name.
15288
15289 2008-01-07  Bruno Haible  <bruno@clisp.org>
15290
15291         * lib/progname.c (set_program_name): Don't strip off a leading
15292         "lt-" prefix outside a .libs directory.
15293         Suggested by Paul Eggert.
15294
15295 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
15296             Bruno Haible  <bruno@clisp.org>
15297
15298         Improve memory cleanup in 'relocatable' module.
15299         * lib/relocatable.h (compute_curr_prefix): Change return type to
15300         'char *'.
15301         * lib/relocatable.c (compute_curr_prefix): Change return type to
15302         'char *'. Free curr_installdir after use.
15303         (relocate): Free curr_prefix_better after use.
15304         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
15305
15306 2008-01-01  Bruno Haible  <bruno@clisp.org>
15307
15308         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
15309         failure on older glibc systems.
15310         Reported by Peter Fales <psfales@alcatel-lucent.com>.
15311
15312 2008-01-05  Eric Blake  <ebb9@byu.net>
15313
15314         Avoid quadratic system memmem.
15315         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
15316         Reported by Ralf Wildenhues.
15317
15318         Fix memmem test for mingw.
15319         * modules/memmem-tests (configure.ac): Check for alarm.
15320         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
15321         it.
15322         * doc/functions/memmem.texi: New file.
15323         * doc/gnulib.texi (Function Substitutes): Add memmem.
15324         Reported by Bruno Haible.
15325
15326 2008-01-04  Bruno Haible  <bruno@clisp.org>
15327
15328         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
15329         Require gl_HEADER_STRINGS_H_DEFAULTS, not
15330         gl_HEADER_STRING_H_DEFAULTS.
15331
15332 2008-01-04  Eric Blake  <ebb9@byu.net>
15333
15334         Shorten duration of memmem test.
15335         * tests/test-memmem.c (main): Use alarm to declare failure if test
15336         is taking too long.
15337         Reported by Ralf Wildenhues.
15338
15339 2007-12-21  Simon Josefsson  <simon@josefsson.org>
15340
15341         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
15342         string, needed by strerror.
15343
15344 2008-01-03  Colin Watson  <cjwatson@debian.org>
15345             Bruno Haible  <bruno@clisp.org>
15346
15347         * doc/gnulib-tool.texi (Localization): New section.
15348
15349 2008-01-02  Bruno Haible  <bruno@clisp.org>
15350
15351         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
15352         variables to 'unsigned char *' type.
15353         Reported by Paul Eggert.
15354
15355 2008-01-02  Jim Meyering  <jim@meyering.net>
15356
15357         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
15358
15359 2007-12-31  Jim Meyering  <jim@meyering.net>
15360
15361         Avoid use of private FTS type name.
15362         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
15363
15364 2007-12-30  Karl Berry  <karl@gnu.org>
15365
15366         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
15367         work around defect in Texinfo and/or the standalone Info browser.
15368
15369 2007-12-30  Bruno Haible  <bruno@clisp.org>
15370
15371         Unify 5 copies of the KMP code.
15372         * lib/str-kmp.h: New file.
15373         * lib/c-strcasestr.c: Include str-kmp.h.
15374         (knuth_morris_pratt): Remove function.
15375         (c_strcasestr): Update.
15376         * lib/c-strstr.c: Include str-kmp.h.
15377         (knuth_morris_pratt): Remove function.
15378         (c_strcasestr): Update.
15379         * lib/mbscasestr.c: Include str-kmp.h.
15380         (knuth_morris_pratt_unibyte): Remove function.
15381         * lib/mbsstr.c: Include str-kmp.h.
15382         (knuth_morris_pratt_unibyte): Remove function.
15383         * lib/strcasestr.c: Include str-kmp.h.
15384         (knuth_morris_pratt): Remove function.
15385         (strcasestr): Update.
15386         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
15387         * modules/c-strstr (Files): Likewise.
15388         * modules/mbscasestr (Files): Likewise.
15389         * modules/mbsstr (Files): Likewise.
15390         * modules/strcasestr (Files): Likewise.
15391         Suggested by Paul Eggert.
15392
15393 2007-12-30  Bruno Haible  <bruno@clisp.org>
15394
15395         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
15396         defined.
15397
15398 2007-12-30  Bruno Haible  <bruno@clisp.org>
15399
15400         * lib/xmalloca.h: Include xalloc.h.
15401         (xnmalloca): New macro.
15402
15403 2007-12-30  Bruno Haible  <bruno@clisp.org>
15404
15405         * lib/malloca.h (nmalloca): New macro.
15406         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
15407         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
15408         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
15409         knuth_morris_pratt_multibyte): Likewise.
15410         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
15411         knuth_morris_pratt_multibyte): Likewise.
15412         * lib/memmem.c (knuth_morris_pratt): Likewise.
15413         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
15414
15415 2007-12-25  Bruno Haible  <bruno@clisp.org>
15416
15417         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
15418         * lib/glob.c: Don't include openat.h.
15419         (link_exists2_p): Add back the code that deals with the
15420         !GLOB_ALTDIRFUNC case.
15421         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
15422         let it do the filename concatenation.
15423         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
15424         * modules/glob (Depends-on): Remove openat.
15425
15426 2007-12-31  Bruno Haible  <bruno@clisp.org>
15427
15428         * modules/dirfd (License): Change to LGPLv2+.
15429         Approved by Jim Meyering.
15430
15431 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
15432
15433         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
15434         when multiplying M by sizeof (size_t).
15435
15436 2007-12-10  Martin Lambers  <marlam@marlam.de>
15437
15438         Override getpagesize on mingw.
15439         * lib/getpagesize.c: New file.
15440         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
15441         * modules/getpagesize (Files): Add lib/getpagesize.c.
15442         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
15443         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15444         REPLACE_GETPAGESIZE.
15445         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
15446
15447 2007-12-25  Bruno Haible  <bruno@clisp.org>
15448
15449         * modules/localcharset (Notice): New field.
15450         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
15451         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
15452
15453 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
15454             Bruno Haible  <bruno@clisp.org>
15455
15456         Avoid using the syntax symbol() in formatted documentation.
15457         * MODULES.html.sh (func_module): When replacing symbol() with a
15458         hyperlink, remove the parentheses. Show an error if some remain.
15459         Recognize and render the '...' syntax.
15460         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
15461         Rework. Add paragraph about GCC's inlining.
15462         * doc/alloca.texi: Likewise.
15463         * doc/error.texi: Remove parentheses from symbol reference.
15464         * doc/gnulib-intro.texi: Likewise.
15465         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
15466         * modules/fnmatch (Description): Reword to say "the ... function".
15467         * modules/full-read (Description): Likewise.
15468         * modules/full-write (Description): Likewise.
15469         * modules/safe-read (Description): Likewise.
15470         * modules/safe-write (Description): Likewise.
15471         * modules/strchrnul (Description): Likewise.
15472         * modules/trim (Description): Likewise.
15473         * modules/error (Description): Remove parentheses from symbol
15474         references.
15475         * modules/verror (Description): Likewise.
15476         Reported by Karl Berry.
15477
15478 2007-12-25  Bruno Haible  <bruno@clisp.org>
15479
15480         Fixup after 2007-10-16 commit.
15481         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
15482
15483 2007-12-24  Bruno Haible  <bruno@clisp.org>
15484
15485         Make --enable-relocatable work with DESTDIR.
15486         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
15487         to compute installdir from destprog.
15488         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
15489         also set the RELOC_DESTDIR variable.
15490         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15491
15492 2007-12-24  Bruno Haible  <bruno@clisp.org>
15493
15494         Fix link error due to xalloc_die().
15495         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
15496         of xreadlink.
15497         * lib/relocwrapper.c: Update comments.
15498         * build-aux/install-reloc: Remove xreadlink.c from file list.
15499         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
15500         xreadlink.c.
15501         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15502
15503 2007-12-24  Bruno Haible  <bruno@clisp.org>
15504
15505         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
15506         * lib/setenv.h: Remove file.
15507         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
15508         lib/setenv.h.
15509         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
15510         (Depends-on): Add stdlib.
15511         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
15512         gl_FUNC_UNSETENV.
15513         (Include): Replace setenv.h with <stdlib.h>.
15514         * modules/unsetenv: New file.
15515         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
15516         * lib/unsetenv.c: Include <stdlib.h> first.
15517         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
15518         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
15519         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
15520         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
15521         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
15522         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
15523         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
15524         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
15525         * doc/functions/unsetenv.texi: Update.
15526         * modules/xsetenv (Depends-on): Add unsetenv.
15527         * modules/getdate (Depends-on): Likewise.
15528         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
15529         * lib/xsetenv.c: Don't include setenv.h.
15530         * lib/getdate.y: Likewise.
15531         * lib/relocwrapper.c: Likewise.
15532         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
15533         (Depends-on): Add stdlib.
15534         * NEWS: Mention the changes.
15535         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15536
15537 2007-12-23  Bruno Haible  <bruno@clisp.org>
15538
15539         * lib/memmem.c (memmem): Use lowercase variable names. Tab
15540         indentation.
15541
15542 2007-12-23  Bruno Haible  <bruno@clisp.org>
15543
15544         * lib/c-strcasestr.c: Add more comments.
15545         * lib/c-strstr.c: Likewise.
15546         * lib/mbscasestr.c: Likewise.
15547         * lib/mbsstr.c: Likewise.
15548         * lib/strcasestr.c: Likewise.
15549         * lib/memmem.c: Likewise.
15550
15551 2007-12-23  Bruno Haible  <bruno@clisp.org>
15552
15553         * tests/test-memmem.c: Include <string.h> first.
15554
15555 2007-12-22  Bruno Haible  <bruno@clisp.org>
15556
15557         * gnulib-tool (func_create_testdir): Change $auxdir while generating
15558         the contents of $testsbase.
15559         Reported by Ralf Wildenhues.
15560
15561 2007-12-22  Bruno Haible  <bruno@clisp.org>
15562
15563         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
15564         two variables local_ldadd_before, local_ldadd_last.
15565
15566 2007-12-20  Eric Blake  <ebb9@byu.net>
15567
15568         Work around circular library issue when cross-compiling.
15569         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
15570         that progname.o does not need to pull in rpl_memcmp.
15571
15572 2007-12-19  Eric Blake  <ebb9@byu.net>
15573
15574         Fix memmem to avoid O(n^2) worst-case complexity.
15575         * lib/memmem.c (knuth_morris_pratt): New function.
15576         (memmem): Use it if first few naive iterations fail.
15577         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
15578         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
15579         * modules/memchr (License): Likewise.
15580         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
15581         malloca.
15582         * tests/test-memmem.c: Rewrite, borrowing ideas from
15583         test-mbsstr1.c; the old version wouldn't even compile!
15584         * modules/memmem-tests: New file.
15585         * lib/string.in.h (rpl_memmem): Add declaration.
15586         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
15587         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
15588         REPLACE_MEMMEM.
15589
15590 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15591
15592         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
15593         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
15594         before any system include files, and undef after them all.  This
15595         should fix a problem on VMS reported by John E. Malmberg in
15596         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
15597
15598 2007-12-17  Eric Blake  <ebb9@byu.net>
15599
15600         Revert addition of verify, for BSD/OS.
15601         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
15602         can't handle large files, for the sake of obsolete platforms.
15603         * modules/fseeko (Depends-on): Remove verify.
15604         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
15605         * doc/functions/ftello.texi (ftello): Likewise.
15606         * doc/functions/fgetpos.texi (fgetpos): Likewise.
15607         Reported by Larry Jones.
15608
15609 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
15610
15611         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
15612         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
15613
15614 2007-12-17  Jim Meyering  <meyering@redhat.com>
15615
15616         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
15617         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
15618         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
15619         * modules/getcwd (Depends-on): Add openat.
15620         Reported by Petr Salinger.
15621
15622 2007-12-17  Bruno Haible  <bruno@clisp.org>
15623
15624         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
15625         avoid a segmentation fault of the configure test on x86_64 systems.
15626
15627 2007-12-15  Jim Meyering  <meyering@redhat.com>
15628
15629         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
15630
15631 2007-12-13  Eric Blake  <ebb9@byu.net>
15632
15633         Another fseek test.
15634         * tests/test-fseek.c (main): Also test ungetc handling.
15635         * tests/test-fseeko.c (main): Likewise.
15636         * modules/fseeko (Depends-on): Add verify.
15637         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
15638         large.
15639         Reported by Larry Jones.
15640
15641         Fix fseeko on mingw.
15642         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
15643         seek.
15644
15645         Beef up fseek tests.
15646         * tests/test-fseek.c (main): Also test eof handling.
15647         * tests/test-fseeko.c (main): Likewise.
15648         Reported by Larry Jones.
15649
15650 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
15651
15652         Fix fseeko on BSD-based platforms.
15653         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
15654         successful seek.
15655
15656 2007-12-12  Eric Blake  <ebb9@byu.net>
15657
15658         Allow circular dependency of separate libtests.a
15659         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
15660         when use_libtests.
15661
15662 2007-12-11  Eric Blake  <ebb9@byu.net>
15663
15664         Fix bug with -0.0L in previous patch.
15665         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
15666         * tests/test-isnan.c (main): Also test on zeroes.
15667         * tests/test-isnanf.c (main): Likewise.
15668         * tests/test-isnanl.h (main): Likewise.
15669
15670         Detect pseudo-denormals on x86 even when cross-compiling.
15671         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
15672         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
15673         invalid bit patterns that happen to satisfy ==.
15674
15675         Avoid link failures with separate libtests.a.
15676         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
15677         last, to satisfy circular dependencies.
15678
15679 2007-12-11  Eric Blake  <ebb9@byu.net>
15680         and Bruno Haible  <bruno@clisp.org>
15681
15682         Fix OpenBSD 4.0 <float.h> handling of long double.
15683         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
15684         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
15685         * doc/headers/float.texi (float.h): Document OpenBSD bug.
15686
15687 2007-12-11  Jim Meyering  <meyering@redhat.com>
15688
15689         * users.txt: Add libvirt.
15690
15691         Support versions of autoconf prior to 2.59c.
15692         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
15693         if it is not already defined.
15694
15695 2007-12-09  Bruno Haible  <bruno@clisp.org>
15696
15697         Let 'gnulib-tool --import' collect sources needed for the tests in
15698         tests/ rather than in lib/.
15699         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
15700         argument. If true, add rules to generate libtests.a, and put libtests.a
15701         into $(LDADD). Consider source files in subdirectories and set
15702         uses_subdirs.
15703         (func_emit_initmacro_start, func_emit_initmacro_end,
15704         func_emit_initmacro_done): Pass all arguments explicitly.
15705         (func_import): Determine two module lists main_modules,
15706         testsrelated_modules. Determine use_libtests. Determine two variables
15707         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
15708         instead of just sed_transform_lib_file. Determine two variables
15709         main_files and testsrelated_files. Compute 'files' as the union of
15710         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
15711         func_add_or_update. In the generated gnulib-comp.m4, collect the
15712         object files for tests/ in different variables than those for lib/.
15713         Substitute LIBTESTS_LIBDEPS.
15714         (func_create_testdir): Combine the uses_subdirs results from
15715         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
15716
15717 2007-12-09  Bruno Haible  <bruno@clisp.org>
15718
15719         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
15720         the build-aux directory.
15721
15722 2007-12-09  Bruno Haible  <bruno@clisp.org>
15723
15724         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
15725         introduced on 2006-09-09.
15726
15727 2007-12-07  Jim Meyering  <meyering@redhat.com>
15728
15729         Let these macros work also with autoconf-2.59.
15730         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
15731         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
15732         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
15733
15734 2007-12-06  Jim Meyering  <meyering@redhat.com>
15735
15736         Avoid a configure-time syntax error in gl_FUNC_ACL.
15737         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
15738         function in each branch, before testing the cache variable.
15739
15740 2007-12-04  Eric Blake  <ebb9@byu.net>
15741
15742         Make scripts executable.
15743         * build-aux/config.guess: Add execute permissions.
15744         * build-aux/config.sub: Likewise.
15745         * build-aux/gendocs.sh: Likewise.
15746
15747         Fix frexp on mingw.
15748         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
15749         cross-compiling.
15750         * doc/functions/frexp.texi (frexp): Document the bug.
15751
15752         Make cygwin fseeko check more reliable.
15753         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
15754         version numbers, rather than unrelated feature check.
15755         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
15756         * doc/functions/ftello.texi (ftello): Likewise.
15757         Reported by Bruno Haible.
15758
15759         * m4/strerror.m4: Bump version number.
15760
15761 2007-12-03  Bruno Haible  <bruno@clisp.org>
15762
15763         * doc/functions/mprotect.texi: Mention the mingw problem.
15764
15765 2007-12-03  Eric Blake  <ebb9@byu.net>
15766
15767         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
15768         REPLACE_STRERROR is initialized before this macro.
15769
15770 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
15771
15772         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
15773         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
15774         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
15775         put -lsec in even for programs other than 'ls'.  This fixes a problem
15776         for gettext reported by Bruno Haible in
15777         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
15778         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
15779         Add support for Solaris 10.  This isn't efficient, but should get the
15780         job done for now.
15781
15782 2007-12-03  James Youngman  <jay@gnu.org>
15783
15784         * doc/regexprops-generic.texi: change "an close-group" to "a
15785         close-group" and "illegal" to "not allowed".
15786
15787 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15788
15789         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
15790         pr_byname.h. Needed for the rare case when the maintainer has done
15791         "make maintainer-clean" in the source directory and then attempts a
15792         build outside the source directory.
15793         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
15794         scripts_byname.h.
15795
15796 2007-12-02  Martin Lambers <marlam@marlam.de>
15797             Bruno Haible  <bruno@clisp.org>
15798
15799         * lib/getpagesize.h: Remove file.
15800         * lib/unistd.in.h: Include declaration of getpagesize here.
15801         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
15802         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
15803         HAVE_SYS_PARAM_H.
15804         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
15805         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
15806         * modules/getpagesize (Files): Remove lib/getpagesize.h.
15807         (Depends-on): Add unistd.
15808         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
15809         (Include): Use <unistd.h> instead of getpagesize.h.
15810         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
15811         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
15812         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
15813         gl_GETPAGESIZE invocation, already handled by module dependency.
15814         * lib/pagealign_alloc.c: Don't include getpagesize.h.
15815
15816 2007-12-02  Bruno Haible  <bruno@clisp.org>
15817
15818         * modules/strings-tests: New file.
15819         * tests/test-strings.c: New file.
15820
15821         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
15822         * lib/strings.in.h: New file.
15823         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
15824         * m4/strings_h.m4: New file.
15825         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
15826         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
15827         * modules/strings: New file.
15828         * modules/string (Makefile.am): Update.
15829         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
15830         Reported by Karl Berry.
15831
15832 2007-12-01  Eric Blake  <ebb9@byu.net>
15833
15834         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
15835         accomodate fix in cygwin 1.5.25.
15836
15837 2007-12-01  Jim Meyering  <meyering@redhat.com>
15838
15839         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
15840         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
15841         that would inhibit utf8-optimization of a regexp containing line-
15842         or buffer-anchors, e.g., `^', `$'.
15843
15844 2007-11-30  Bruno Haible  <bruno@clisp.org>
15845
15846         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
15847         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
15848         glthread_recursive_lock_init.
15849         * lib/lock.c (glthread_recursive_lock_init)
15850         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
15851         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15852
15853 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
15854
15855         New function qset_acl, like set_acl but with syscall semantics.
15856         * lib/acl.h (qset_acl): New decl.
15857         * lib/acl.c (qset_acl): New function.
15858         (set_acl): Use new function.  Use more-consistent diagnostics.
15859
15860 2007-11-28  Jim Meyering  <meyering@redhat.com>
15861
15862         * modules/physmem (License): Change from GPL to LGPLv2+.
15863
15864 2007-11-26  Bruno Haible  <bruno@clisp.org>
15865
15866         * lib/vasnprintf.c (decode_long_double): Don't abort if the
15867         'long double' type has excess precision.
15868         Reported by Jim Meyering in
15869         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
15870
15871 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15872
15873         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
15874         Sync from <http://gnu.org/licenses>.
15875         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
15876         with license text from same location.
15877         * doc/maintain.texi, doc/standards.texi:  Sync from
15878         <http://savannah.gnu.org/projects/gnustandards>.
15879
15880 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
15881         and Jim Meyering  <meyering@redhat.com>
15882
15883         Adjust getdate' grammar to accept a slightly more regular language.
15884         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
15885         Before, the former was rejected.
15886         * lib/getdate.y (digits_to_date_time): New function, factored
15887         out of ...
15888         (number): ...here.  Just call digits_to_date_time.
15889         (hybrid): New non-terminal to handle an <unsigned number,
15890         signed relative offset> sequence consistently.
15891
15892 2007-11-18  Jim Meyering  <meyering@redhat.com>
15893
15894         Pull my changes from coreutils:
15895         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
15896         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
15897         use of $gnulib_tool_option_extras, so that it's separated from the
15898         preceding argument.
15899
15900         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
15901         * build-aux/bootstrap (cp_mark_as_generated): Create any required
15902         parent destination directories before copying a file into place.
15903
15904 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
15905
15906         bootstrap: work also with 4-argument variant of AC_INIT
15907         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
15908
15909 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15910
15911         Port test-getaddrinfo to Solaris.
15912         Problem reported by Bruno Haible in
15913         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
15914         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
15915         explanation of setting 'hints'.
15916         Don't reject an implementation merely because it returns EAI_SERVICE.
15917         (EAI_SERVICE): Define to 0 if not defined.
15918
15919 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
15920
15921         The license of gnu-make and posix-shell is now "GPLed build tool".
15922         * modules/gnu-make (License): Likewise.
15923         * modules/posix-shell (License): Likewise.
15924
15925         New module posix-shell, for determining a POSIX shell
15926         or perhaps something that is close enough to a POSIX shell.
15927         * m4/posix-shell.m4: New file.
15928         * modules/posix-shell: New file.
15929
15930         * MODULES.html.sh: Mention new module.
15931
15932         New module gnu-make, for determining whether we're using GNU Make.
15933         * m4/gnu-make.m4: New file.
15934         * modules/gnu-make: New file.
15935         * MODULES.html.sh: Mention new module.
15936
15937 2007-11-14  Jim Meyering  <meyering@redhat.com>
15938
15939         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
15940         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
15941         use this macro to create a function _definition_.
15942         Remove useless "#undef ARGMATCH_DIE".
15943
15944 2007-11-14  Bruno Haible  <bruno@clisp.org>
15945
15946         * lib/config.charset: Update for OpenBSD 4.1.
15947         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
15948
15949 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
15950
15951         Document 64-bit #if problems in stdint.texi.
15952         * doc/headers/stdint.texi (stdint.h): Mention problems with
15953         64-bit-#if, and how to work around them.
15954
15955         Don't insist on 'long long int' support in the preprocessor.  It
15956         breaks too many things.  For example, PRIdMAX still uses a 'long
15957         long int' format with the latest Sun compiler, even though
15958         HAVE_LONG_LONG_INT isn't defined due to that compiler's
15959         preprocessor problem.  This causes the latest coreutils to dump
15960         core on Solaris 10 sparc with the Sun C compiler.
15961         Instead, fix the 2007-10-16 problem in a different way, by evaluating
15962         the troublesome expressions at configure-time, not at #if-time.
15963         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
15964         preprocessor.
15965         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
15966         compile-time C checks, done at 'configure'-time.
15967         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
15968         * modules/inttypes (Makefile): Substitute the new symbols that
15969         gl_INTTYPES_H now generates.
15970         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
15971
15972 2007-11-12  Bruno Haible  <bruno@clisp.org>
15973
15974         Tests for Unicode character classification functions.
15975
15976         * modules/unictype/bidicategory-byname-tests: New file.
15977         * modules/unictype/bidicategory-name-tests: New file.
15978         * modules/unictype/bidicategory-of-tests: New file.
15979         * modules/unictype/bidicategory-test-tests: New file.
15980         * modules/unictype/block-list-tests: New file.
15981         * modules/unictype/block-of-tests: New file.
15982         * modules/unictype/block-test-tests: New file.
15983         * modules/unictype/category-C-tests: New file.
15984         * modules/unictype/category-Cc-tests: New file.
15985         * modules/unictype/category-Cf-tests: New file.
15986         * modules/unictype/category-Cn-tests: New file.
15987         * modules/unictype/category-Co-tests: New file.
15988         * modules/unictype/category-Cs-tests: New file.
15989         * modules/unictype/category-L-tests: New file.
15990         * modules/unictype/category-Ll-tests: New file.
15991         * modules/unictype/category-Lm-tests: New file.
15992         * modules/unictype/category-Lo-tests: New file.
15993         * modules/unictype/category-Lt-tests: New file.
15994         * modules/unictype/category-Lu-tests: New file.
15995         * modules/unictype/category-M-tests: New file.
15996         * modules/unictype/category-Mc-tests: New file.
15997         * modules/unictype/category-Me-tests: New file.
15998         * modules/unictype/category-Mn-tests: New file.
15999         * modules/unictype/category-N-tests: New file.
16000         * modules/unictype/category-Nd-tests: New file.
16001         * modules/unictype/category-Nl-tests: New file.
16002         * modules/unictype/category-No-tests: New file.
16003         * modules/unictype/category-P-tests: New file.
16004         * modules/unictype/category-Pc-tests: New file.
16005         * modules/unictype/category-Pd-tests: New file.
16006         * modules/unictype/category-Pe-tests: New file.
16007         * modules/unictype/category-Pf-tests: New file.
16008         * modules/unictype/category-Pi-tests: New file.
16009         * modules/unictype/category-Po-tests: New file.
16010         * modules/unictype/category-Ps-tests: New file.
16011         * modules/unictype/category-S-tests: New file.
16012         * modules/unictype/category-Sc-tests: New file.
16013         * modules/unictype/category-Sk-tests: New file.
16014         * modules/unictype/category-Sm-tests: New file.
16015         * modules/unictype/category-So-tests: New file.
16016         * modules/unictype/category-Z-tests: New file.
16017         * modules/unictype/category-Zl-tests: New file.
16018         * modules/unictype/category-Zp-tests: New file.
16019         * modules/unictype/category-Zs-tests: New file.
16020         * modules/unictype/category-and-not-tests: New file.
16021         * modules/unictype/category-and-tests: New file.
16022         * modules/unictype/category-byname-tests: New file.
16023         * modules/unictype/category-name-tests: New file.
16024         * modules/unictype/category-none-tests: New file.
16025         * modules/unictype/category-of-tests: New file.
16026         * modules/unictype/category-or-tests: New file.
16027         * modules/unictype/category-test-withtable-tests: New file.
16028         * modules/unictype/combining-class-tests: New file.
16029         * modules/unictype/ctype-alnum-tests: New file.
16030         * modules/unictype/ctype-alpha-tests: New file.
16031         * modules/unictype/ctype-blank-tests: New file.
16032         * modules/unictype/ctype-cntrl-tests: New file.
16033         * modules/unictype/ctype-digit-tests: New file.
16034         * modules/unictype/ctype-graph-tests: New file.
16035         * modules/unictype/ctype-lower-tests: New file.
16036         * modules/unictype/ctype-print-tests: New file.
16037         * modules/unictype/ctype-punct-tests: New file.
16038         * modules/unictype/ctype-space-tests: New file.
16039         * modules/unictype/ctype-upper-tests: New file.
16040         * modules/unictype/ctype-xdigit-tests: New file.
16041         * modules/unictype/decimal-digit-tests: New file.
16042         * modules/unictype/digit-tests: New file.
16043         * modules/unictype/mirror-tests: New file.
16044         * modules/unictype/numeric-tests: New file.
16045         * modules/unictype/property-alphabetic-tests: New file.
16046         * modules/unictype/property-ascii-hex-digit-tests: New file.
16047         * modules/unictype/property-bidi-arabic-digit-tests: New file.
16048         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
16049         * modules/unictype/property-bidi-block-separator-tests: New file.
16050         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
16051         * modules/unictype/property-bidi-common-separator-tests: New file.
16052         * modules/unictype/property-bidi-control-tests: New file.
16053         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
16054         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
16055         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
16056         * modules/unictype/property-bidi-european-digit-tests: New file.
16057         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
16058         * modules/unictype/property-bidi-left-to-right-tests: New file.
16059         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
16060         * modules/unictype/property-bidi-other-neutral-tests: New file.
16061         * modules/unictype/property-bidi-pdf-tests: New file.
16062         * modules/unictype/property-bidi-segment-separator-tests: New file.
16063         * modules/unictype/property-bidi-whitespace-tests: New file.
16064         * modules/unictype/property-byname-tests: New file.
16065         * modules/unictype/property-combining-tests: New file.
16066         * modules/unictype/property-composite-tests: New file.
16067         * modules/unictype/property-currency-symbol-tests: New file.
16068         * modules/unictype/property-dash-tests: New file.
16069         * modules/unictype/property-decimal-digit-tests: New file.
16070         * modules/unictype/property-default-ignorable-code-point-tests: New file.
16071         * modules/unictype/property-deprecated-tests: New file.
16072         * modules/unictype/property-diacritic-tests: New file.
16073         * modules/unictype/property-extender-tests: New file.
16074         * modules/unictype/property-format-control-tests: New file.
16075         * modules/unictype/property-grapheme-base-tests: New file.
16076         * modules/unictype/property-grapheme-extend-tests: New file.
16077         * modules/unictype/property-grapheme-link-tests: New file.
16078         * modules/unictype/property-hex-digit-tests: New file.
16079         * modules/unictype/property-hyphen-tests: New file.
16080         * modules/unictype/property-id-continue-tests: New file.
16081         * modules/unictype/property-id-start-tests: New file.
16082         * modules/unictype/property-ideographic-tests: New file.
16083         * modules/unictype/property-ids-binary-operator-tests: New file.
16084         * modules/unictype/property-ids-trinary-operator-tests: New file.
16085         * modules/unictype/property-ignorable-control-tests: New file.
16086         * modules/unictype/property-iso-control-tests: New file.
16087         * modules/unictype/property-join-control-tests: New file.
16088         * modules/unictype/property-left-of-pair-tests: New file.
16089         * modules/unictype/property-line-separator-tests: New file.
16090         * modules/unictype/property-logical-order-exception-tests: New file.
16091         * modules/unictype/property-lowercase-tests: New file.
16092         * modules/unictype/property-math-tests: New file.
16093         * modules/unictype/property-non-break-tests: New file.
16094         * modules/unictype/property-not-a-character-tests: New file.
16095         * modules/unictype/property-numeric-tests: New file.
16096         * modules/unictype/property-other-alphabetic-tests: New file.
16097         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
16098         * modules/unictype/property-other-grapheme-extend-tests: New file.
16099         * modules/unictype/property-other-id-continue-tests: New file.
16100         * modules/unictype/property-other-id-start-tests: New file.
16101         * modules/unictype/property-other-lowercase-tests: New file.
16102         * modules/unictype/property-other-math-tests: New file.
16103         * modules/unictype/property-other-uppercase-tests: New file.
16104         * modules/unictype/property-paired-punctuation-tests: New file.
16105         * modules/unictype/property-paragraph-separator-tests: New file.
16106         * modules/unictype/property-pattern-syntax-tests: New file.
16107         * modules/unictype/property-pattern-white-space-tests: New file.
16108         * modules/unictype/property-private-use-tests: New file.
16109         * modules/unictype/property-punctuation-tests: New file.
16110         * modules/unictype/property-quotation-mark-tests: New file.
16111         * modules/unictype/property-radical-tests: New file.
16112         * modules/unictype/property-sentence-terminal-tests: New file.
16113         * modules/unictype/property-soft-dotted-tests: New file.
16114         * modules/unictype/property-space-tests: New file.
16115         * modules/unictype/property-terminal-punctuation-tests: New file.
16116         * modules/unictype/property-test-tests: New file.
16117         * modules/unictype/property-titlecase-tests: New file.
16118         * modules/unictype/property-unassigned-code-value-tests: New file.
16119         * modules/unictype/property-unified-ideograph-tests: New file.
16120         * modules/unictype/property-uppercase-tests: New file.
16121         * modules/unictype/property-variation-selector-tests: New file.
16122         * modules/unictype/property-white-space-tests: New file.
16123         * modules/unictype/property-xid-continue-tests: New file.
16124         * modules/unictype/property-xid-start-tests: New file.
16125         * modules/unictype/property-zero-width-tests: New file.
16126         * modules/unictype/scripts-tests: New file.
16127         * modules/unictype/syntax-c-ident-tests: New file.
16128         * modules/unictype/syntax-c-whitespace-tests: New file.
16129         * modules/unictype/syntax-java-ident-tests: New file.
16130         * modules/unictype/syntax-java-whitespace-tests: New file.
16131         * tests/unictype/test-bidi_byname.c: New file.
16132         * tests/unictype/test-bidi_name.c: New file.
16133         * tests/unictype/test-bidi_of.c: New file.
16134         * tests/unictype/test-bidi_test.c: New file.
16135         * tests/unictype/test-block_list.c: New file.
16136         * tests/unictype/test-block_of.c: New file.
16137         * tests/unictype/test-block_test.c: New file.
16138         * tests/unictype/test-categ_and.c: New file.
16139         * tests/unictype/test-categ_and_not.c: New file.
16140         * tests/unictype/test-categ_byname.c: New file.
16141         * tests/unictype/test-categ_name.c: New file.
16142         * tests/unictype/test-categ_none.c: New file.
16143         * tests/unictype/test-categ_of.c: New file.
16144         * tests/unictype/test-categ_or.c: New file.
16145         * tests/unictype/test-categ_test_withtable.c: New file.
16146         * tests/unictype/test-combining.c: New file.
16147         * tests/unictype/test-decdigit.c: New file.
16148         * tests/unictype/test-digit.c: New file.
16149         * tests/unictype/test-mirror.c: New file.
16150         * tests/unictype/test-numeric.c: New file.
16151         * tests/unictype/test-pr_byname.c: New file.
16152         * tests/unictype/test-pr_test.c: New file.
16153         * tests/unictype/test-predicate-part1.h: New file.
16154         * tests/unictype/test-predicate-part2.h: New file.
16155         * tests/unictype/test-scripts.c: New file.
16156         * tests/unictype/test-sy_c_ident.c: New file.
16157         * tests/unictype/test-sy_java_ident.c: New file.
16158
16159         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
16160         for Unicode 5.0.0.
16161         * tests/unictype/test-categ_Cc.c: Likewise.
16162         * tests/unictype/test-categ_Cf.c: Likewise.
16163         * tests/unictype/test-categ_Cn.c: Likewise.
16164         * tests/unictype/test-categ_Co.c: Likewise.
16165         * tests/unictype/test-categ_Cs.c: Likewise.
16166         * tests/unictype/test-categ_L.c: Likewise.
16167         * tests/unictype/test-categ_Ll.c: Likewise.
16168         * tests/unictype/test-categ_Lm.c: Likewise.
16169         * tests/unictype/test-categ_Lo.c: Likewise.
16170         * tests/unictype/test-categ_Lt.c: Likewise.
16171         * tests/unictype/test-categ_Lu.c: Likewise.
16172         * tests/unictype/test-categ_M.c: Likewise.
16173         * tests/unictype/test-categ_Mc.c: Likewise.
16174         * tests/unictype/test-categ_Me.c: Likewise.
16175         * tests/unictype/test-categ_Mn.c: Likewise.
16176         * tests/unictype/test-categ_N.c: Likewise.
16177         * tests/unictype/test-categ_Nd.c: Likewise.
16178         * tests/unictype/test-categ_Nl.c: Likewise.
16179         * tests/unictype/test-categ_No.c: Likewise.
16180         * tests/unictype/test-categ_P.c: Likewise.
16181         * tests/unictype/test-categ_Pc.c: Likewise.
16182         * tests/unictype/test-categ_Pd.c: Likewise.
16183         * tests/unictype/test-categ_Pe.c: Likewise.
16184         * tests/unictype/test-categ_Pf.c: Likewise.
16185         * tests/unictype/test-categ_Pi.c: Likewise.
16186         * tests/unictype/test-categ_Po.c: Likewise.
16187         * tests/unictype/test-categ_Ps.c: Likewise.
16188         * tests/unictype/test-categ_S.c: Likewise.
16189         * tests/unictype/test-categ_Sc.c: Likewise.
16190         * tests/unictype/test-categ_Sk.c: Likewise.
16191         * tests/unictype/test-categ_Sm.c: Likewise.
16192         * tests/unictype/test-categ_So.c: Likewise.
16193         * tests/unictype/test-categ_Z.c: Likewise.
16194         * tests/unictype/test-categ_Zl.c: Likewise.
16195         * tests/unictype/test-categ_Zp.c: Likewise.
16196         * tests/unictype/test-categ_Zs.c: Likewise.
16197         * tests/unictype/test-ctype_alnum.c: Likewise.
16198         * tests/unictype/test-ctype_alpha.c: Likewise.
16199         * tests/unictype/test-ctype_blank.c: Likewise.
16200         * tests/unictype/test-ctype_cntrl.c: Likewise.
16201         * tests/unictype/test-ctype_digit.c: Likewise.
16202         * tests/unictype/test-ctype_graph.c: Likewise.
16203         * tests/unictype/test-ctype_lower.c: Likewise.
16204         * tests/unictype/test-ctype_print.c: Likewise.
16205         * tests/unictype/test-ctype_punct.c: Likewise.
16206         * tests/unictype/test-ctype_space.c: Likewise.
16207         * tests/unictype/test-ctype_upper.c: Likewise.
16208         * tests/unictype/test-ctype_xdigit.c: Likewise.
16209         * tests/unictype/test-decdigit.h: Likewise.
16210         * tests/unictype/test-digit.h: Likewise.
16211         * tests/unictype/test-numeric.h: Likewise.
16212         * tests/unictype/test-pr_alphabetic.c: Likewise.
16213         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
16214         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
16215         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
16216         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
16217         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
16218         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
16219         * tests/unictype/test-pr_bidi_control.c: Likewise.
16220         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
16221         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
16222         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
16223         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
16224         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
16225         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
16226         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
16227         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
16228         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
16229         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
16230         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
16231         * tests/unictype/test-pr_combining.c: Likewise.
16232         * tests/unictype/test-pr_composite.c: Likewise.
16233         * tests/unictype/test-pr_currency_symbol.c: Likewise.
16234         * tests/unictype/test-pr_dash.c: Likewise.
16235         * tests/unictype/test-pr_decimal_digit.c: Likewise.
16236         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
16237         * tests/unictype/test-pr_deprecated.c: Likewise.
16238         * tests/unictype/test-pr_diacritic.c: Likewise.
16239         * tests/unictype/test-pr_extender.c: Likewise.
16240         * tests/unictype/test-pr_format_control.c: Likewise.
16241         * tests/unictype/test-pr_grapheme_base.c: Likewise.
16242         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
16243         * tests/unictype/test-pr_grapheme_link.c: Likewise.
16244         * tests/unictype/test-pr_hex_digit.c: Likewise.
16245         * tests/unictype/test-pr_hyphen.c: Likewise.
16246         * tests/unictype/test-pr_id_continue.c: Likewise.
16247         * tests/unictype/test-pr_id_start.c: Likewise.
16248         * tests/unictype/test-pr_ideographic.c: Likewise.
16249         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
16250         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
16251         * tests/unictype/test-pr_ignorable_control.c: Likewise.
16252         * tests/unictype/test-pr_iso_control.c: Likewise.
16253         * tests/unictype/test-pr_join_control.c: Likewise.
16254         * tests/unictype/test-pr_left_of_pair.c: Likewise.
16255         * tests/unictype/test-pr_line_separator.c: Likewise.
16256         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
16257         * tests/unictype/test-pr_lowercase.c: Likewise.
16258         * tests/unictype/test-pr_math.c: Likewise.
16259         * tests/unictype/test-pr_non_break.c: Likewise.
16260         * tests/unictype/test-pr_not_a_character.c: Likewise.
16261         * tests/unictype/test-pr_numeric.c: Likewise.
16262         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
16263         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
16264         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
16265         * tests/unictype/test-pr_other_id_continue.c: Likewise.
16266         * tests/unictype/test-pr_other_id_start.c: Likewise.
16267         * tests/unictype/test-pr_other_lowercase.c: Likewise.
16268         * tests/unictype/test-pr_other_math.c: Likewise.
16269         * tests/unictype/test-pr_other_uppercase.c: Likewise.
16270         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
16271         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
16272         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
16273         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
16274         * tests/unictype/test-pr_private_use.c: Likewise.
16275         * tests/unictype/test-pr_punctuation.c: Likewise.
16276         * tests/unictype/test-pr_quotation_mark.c: Likewise.
16277         * tests/unictype/test-pr_radical.c: Likewise.
16278         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
16279         * tests/unictype/test-pr_soft_dotted.c: Likewise.
16280         * tests/unictype/test-pr_space.c: Likewise.
16281         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
16282         * tests/unictype/test-pr_titlecase.c: Likewise.
16283         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
16284         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
16285         * tests/unictype/test-pr_uppercase.c: Likewise.
16286         * tests/unictype/test-pr_variation_selector.c: Likewise.
16287         * tests/unictype/test-pr_white_space.c: Likewise.
16288         * tests/unictype/test-pr_xid_continue.c: Likewise.
16289         * tests/unictype/test-pr_xid_start.c: Likewise.
16290         * tests/unictype/test-pr_zero_width.c: Likewise.
16291         * tests/unictype/test-sy_c_whitespace.c: Likewise.
16292         * tests/unictype/test-sy_java_whitespace.c: Likewise.
16293
16294 2007-11-12  Bruno Haible  <bruno@clisp.org>
16295
16296         Unicode character classification functions.
16297         * lib/unictype.h: New file.
16298         * modules/unictype/base: New file.
16299         * modules/unictype/category-L: New file.
16300         * modules/unictype/category-Lu: New file.
16301         * modules/unictype/category-Ll: New file.
16302         * modules/unictype/category-Lt: New file.
16303         * modules/unictype/category-Lm: New file.
16304         * modules/unictype/category-Lo: New file.
16305         * modules/unictype/category-M: New file.
16306         * modules/unictype/category-Mn: New file.
16307         * modules/unictype/category-Mc: New file.
16308         * modules/unictype/category-Me: New file.
16309         * modules/unictype/category-N: New file.
16310         * modules/unictype/category-Nd: New file.
16311         * modules/unictype/category-Nl: New file.
16312         * modules/unictype/category-No: New file.
16313         * modules/unictype/category-P: New file.
16314         * modules/unictype/category-Pc: New file.
16315         * modules/unictype/category-Pd: New file.
16316         * modules/unictype/category-Ps: New file.
16317         * modules/unictype/category-Pe: New file.
16318         * modules/unictype/category-Pi: New file.
16319         * modules/unictype/category-Pf: New file.
16320         * modules/unictype/category-Po: New file.
16321         * modules/unictype/category-S: New file.
16322         * modules/unictype/category-Sm: New file.
16323         * modules/unictype/category-Sc: New file.
16324         * modules/unictype/category-Sk: New file.
16325         * modules/unictype/category-So: New file.
16326         * modules/unictype/category-Z: New file.
16327         * modules/unictype/category-Zs: New file.
16328         * modules/unictype/category-Zl: New file.
16329         * modules/unictype/category-Zp: New file.
16330         * modules/unictype/category-C: New file.
16331         * modules/unictype/category-Cc: New file.
16332         * modules/unictype/category-Cf: New file.
16333         * modules/unictype/category-Cs: New file.
16334         * modules/unictype/category-Co: New file.
16335         * modules/unictype/category-Cn: New file.
16336         * modules/unictype/category-or: New file.
16337         * modules/unictype/category-of: New file.
16338         * modules/unictype/category-test: New file.
16339         * modules/unictype/category-test-withtable: New file.
16340         * modules/unictype/category-byname: New file.
16341         * modules/unictype/category-none: New file.
16342         * modules/unictype/category-and: New file.
16343         * modules/unictype/category-and-not: New file.
16344         * modules/unictype/category-name: New file.
16345         * modules/unictype/combining-class: New file.
16346         * modules/unictype/category-all: New file.
16347         * modules/unictype/bidicategory-all: New file.
16348         * modules/unictype/bidicategory-byname: New file.
16349         * modules/unictype/bidicategory-name: New file.
16350         * modules/unictype/bidicategory-of: New file.
16351         * modules/unictype/bidicategory-test: New file.
16352         * modules/unictype/decimal-digit: New file.
16353         * modules/unictype/digit: New file.
16354         * modules/unictype/numeric: New file.
16355         * modules/unictype/mirror: New file.
16356         * modules/unictype/property-white-space: New file.
16357         * modules/unictype/property-alphabetic: New file.
16358         * modules/unictype/property-other-alphabetic: New file.
16359         * modules/unictype/property-not-a-character: New file.
16360         * modules/unictype/property-default-ignorable-code-point: New file.
16361         * modules/unictype/property-other-default-ignorable-code-point: New
16362         file.
16363         * modules/unictype/property-deprecated: New file.
16364         * modules/unictype/property-logical-order-exception: New file.
16365         * modules/unictype/property-variation-selector: New file.
16366         * modules/unictype/property-private-use: New file.
16367         * modules/unictype/property-unassigned-code-value: New file.
16368         * modules/unictype/property-uppercase: New file.
16369         * modules/unictype/property-other-uppercase: New file.
16370         * modules/unictype/property-lowercase: New file.
16371         * modules/unictype/property-other-lowercase: New file.
16372         * modules/unictype/property-titlecase: New file.
16373         * modules/unictype/property-soft-dotted: New file.
16374         * modules/unictype/property-id-start: New file.
16375         * modules/unictype/property-other-id-start: New file.
16376         * modules/unictype/property-id-continue: New file.
16377         * modules/unictype/property-other-id-continue: New file.
16378         * modules/unictype/property-xid-start: New file.
16379         * modules/unictype/property-xid-continue: New file.
16380         * modules/unictype/property-pattern-white-space: New file.
16381         * modules/unictype/property-pattern-syntax: New file.
16382         * modules/unictype/property-join-control: New file.
16383         * modules/unictype/property-grapheme-base: New file.
16384         * modules/unictype/property-grapheme-extend: New file.
16385         * modules/unictype/property-other-grapheme-extend: New file.
16386         * modules/unictype/property-grapheme-link: New file.
16387         * modules/unictype/property-bidi-control: New file.
16388         * modules/unictype/property-bidi-left-to-right: New file.
16389         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
16390         * modules/unictype/property-bidi-arabic-right-to-left: New file.
16391         * modules/unictype/property-bidi-european-digit: New file.
16392         * modules/unictype/property-bidi-eur-num-separator: New file.
16393         * modules/unictype/property-bidi-eur-num-terminator: New file.
16394         * modules/unictype/property-bidi-arabic-digit: New file.
16395         * modules/unictype/property-bidi-common-separator: New file.
16396         * modules/unictype/property-bidi-block-separator: New file.
16397         * modules/unictype/property-bidi-segment-separator: New file.
16398         * modules/unictype/property-bidi-whitespace: New file.
16399         * modules/unictype/property-bidi-non-spacing-mark: New file.
16400         * modules/unictype/property-bidi-boundary-neutral: New file.
16401         * modules/unictype/property-bidi-pdf: New file.
16402         * modules/unictype/property-bidi-embedding-or-override: New file.
16403         * modules/unictype/property-bidi-other-neutral: New file.
16404         * modules/unictype/property-hex-digit: New file.
16405         * modules/unictype/property-ascii-hex-digit: New file.
16406         * modules/unictype/property-ideographic: New file.
16407         * modules/unictype/property-unified-ideograph: New file.
16408         * modules/unictype/property-radical: New file.
16409         * modules/unictype/property-ids-binary-operator: New file.
16410         * modules/unictype/property-ids-trinary-operator: New file.
16411         * modules/unictype/property-zero-width: New file.
16412         * modules/unictype/property-space: New file.
16413         * modules/unictype/property-non-break: New file.
16414         * modules/unictype/property-iso-control: New file.
16415         * modules/unictype/property-format-control: New file.
16416         * modules/unictype/property-dash: New file.
16417         * modules/unictype/property-hyphen: New file.
16418         * modules/unictype/property-punctuation: New file.
16419         * modules/unictype/property-line-separator: New file.
16420         * modules/unictype/property-paragraph-separator: New file.
16421         * modules/unictype/property-quotation-mark: New file.
16422         * modules/unictype/property-sentence-terminal: New file.
16423         * modules/unictype/property-terminal-punctuation: New file.
16424         * modules/unictype/property-currency-symbol: New file.
16425         * modules/unictype/property-math: New file.
16426         * modules/unictype/property-other-math: New file.
16427         * modules/unictype/property-paired-punctuation: New file.
16428         * modules/unictype/property-left-of-pair: New file.
16429         * modules/unictype/property-combining: New file.
16430         * modules/unictype/property-composite: New file.
16431         * modules/unictype/property-decimal-digit: New file.
16432         * modules/unictype/property-numeric: New file.
16433         * modules/unictype/property-diacritic: New file.
16434         * modules/unictype/property-extender: New file.
16435         * modules/unictype/property-ignorable-control: New file.
16436         * modules/unictype/property-test: New file.
16437         * modules/unictype/property-byname: New file.
16438         * modules/unictype/property-all: New file.
16439         * modules/unictype/scripts: New file.
16440         * modules/unictype/scripts-all: New file.
16441         * modules/unictype/block-of: New file.
16442         * modules/unictype/block-test: New file.
16443         * modules/unictype/block-list: New file.
16444         * modules/unictype/block-all: New file.
16445         * modules/unictype/syntax-c-whitespace: New file.
16446         * modules/unictype/syntax-java-whitespace: New file.
16447         * modules/unictype/syntax-c-ident: New file.
16448         * modules/unictype/syntax-java-ident: New file.
16449         * modules/unictype/ctype-alnum: New file.
16450         * modules/unictype/ctype-alpha: New file.
16451         * modules/unictype/ctype-cntrl: New file.
16452         * modules/unictype/ctype-digit: New file.
16453         * modules/unictype/ctype-graph: New file.
16454         * modules/unictype/ctype-lower: New file.
16455         * modules/unictype/ctype-print: New file.
16456         * modules/unictype/ctype-punct: New file.
16457         * modules/unictype/ctype-space: New file.
16458         * modules/unictype/ctype-upper: New file.
16459         * modules/unictype/ctype-xdigit: New file.
16460         * modules/unictype/ctype-blank: New file.
16461         * lib/unictype/bidi_byname.c: New file.
16462         * lib/unictype/bidi_name.c: New file.
16463         * lib/unictype/bidi_of.c: New file.
16464         * lib/unictype/bidi_test.c: New file.
16465         * lib/unictype/bitmap.h: New file.
16466         * lib/unictype/block_test.c: New file.
16467         * lib/unictype/blocks.c: New file.
16468         * lib/unictype/categ_C.c: New file.
16469         * lib/unictype/categ_Cc.c: New file.
16470         * lib/unictype/categ_Cf.c: New file.
16471         * lib/unictype/categ_Cn.c: New file.
16472         * lib/unictype/categ_Co.c: New file.
16473         * lib/unictype/categ_Cs.c: New file.
16474         * lib/unictype/categ_L.c: New file.
16475         * lib/unictype/categ_Ll.c: New file.
16476         * lib/unictype/categ_Lm.c: New file.
16477         * lib/unictype/categ_Lo.c: New file.
16478         * lib/unictype/categ_Lt.c: New file.
16479         * lib/unictype/categ_Lu.c: New file.
16480         * lib/unictype/categ_M.c: New file.
16481         * lib/unictype/categ_Mc.c: New file.
16482         * lib/unictype/categ_Me.c: New file.
16483         * lib/unictype/categ_Mn.c: New file.
16484         * lib/unictype/categ_N.c: New file.
16485         * lib/unictype/categ_Nd.c: New file.
16486         * lib/unictype/categ_Nl.c: New file.
16487         * lib/unictype/categ_No.c: New file.
16488         * lib/unictype/categ_P.c: New file.
16489         * lib/unictype/categ_Pc.c: New file.
16490         * lib/unictype/categ_Pd.c: New file.
16491         * lib/unictype/categ_Pe.c: New file.
16492         * lib/unictype/categ_Pf.c: New file.
16493         * lib/unictype/categ_Pi.c: New file.
16494         * lib/unictype/categ_Po.c: New file.
16495         * lib/unictype/categ_Ps.c: New file.
16496         * lib/unictype/categ_S.c: New file.
16497         * lib/unictype/categ_Sc.c: New file.
16498         * lib/unictype/categ_Sk.c: New file.
16499         * lib/unictype/categ_Sm.c: New file.
16500         * lib/unictype/categ_So.c: New file.
16501         * lib/unictype/categ_Z.c: New file.
16502         * lib/unictype/categ_Zl.c: New file.
16503         * lib/unictype/categ_Zp.c: New file.
16504         * lib/unictype/categ_Zs.c: New file.
16505         * lib/unictype/categ_and.c: New file.
16506         * lib/unictype/categ_and_not.c: New file.
16507         * lib/unictype/categ_byname.c: New file.
16508         * lib/unictype/categ_name.c: New file.
16509         * lib/unictype/categ_none.c: New file.
16510         * lib/unictype/categ_of.c: New file.
16511         * lib/unictype/categ_or.c: New file.
16512         * lib/unictype/categ_test.c: New file.
16513         * lib/unictype/combining.c: New file.
16514         * lib/unictype/ctype_alnum.c: New file.
16515         * lib/unictype/ctype_alpha.c: New file.
16516         * lib/unictype/ctype_blank.c: New file.
16517         * lib/unictype/ctype_cntrl.c: New file.
16518         * lib/unictype/ctype_digit.c: New file.
16519         * lib/unictype/ctype_graph.c: New file.
16520         * lib/unictype/ctype_lower.c: New file.
16521         * lib/unictype/ctype_print.c: New file.
16522         * lib/unictype/ctype_punct.c: New file.
16523         * lib/unictype/ctype_space.c: New file.
16524         * lib/unictype/ctype_upper.c: New file.
16525         * lib/unictype/ctype_xdigit.c: New file.
16526         * lib/unictype/decdigit.c: New file.
16527         * lib/unictype/digit.c: New file.
16528         * lib/unictype/identsyntaxmap.h: New file.
16529         * lib/unictype/mirror.c: New file.
16530         * lib/unictype/numeric.c: New file.
16531         * lib/unictype/pr_alphabetic.c: New file.
16532         * lib/unictype/pr_ascii_hex_digit.c: New file.
16533         * lib/unictype/pr_bidi_arabic_digit.c: New file.
16534         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
16535         * lib/unictype/pr_bidi_block_separator.c: New file.
16536         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
16537         * lib/unictype/pr_bidi_common_separator.c: New file.
16538         * lib/unictype/pr_bidi_control.c: New file.
16539         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
16540         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
16541         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
16542         * lib/unictype/pr_bidi_european_digit.c: New file.
16543         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
16544         * lib/unictype/pr_bidi_left_to_right.c: New file.
16545         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
16546         * lib/unictype/pr_bidi_other_neutral.c: New file.
16547         * lib/unictype/pr_bidi_pdf.c: New file.
16548         * lib/unictype/pr_bidi_segment_separator.c: New file.
16549         * lib/unictype/pr_bidi_whitespace.c: New file.
16550         * lib/unictype/pr_byname.c: New file.
16551         * lib/unictype/pr_byname.gperf: New file.
16552         * lib/unictype/pr_combining.c: New file.
16553         * lib/unictype/pr_composite.c: New file.
16554         * lib/unictype/pr_currency_symbol.c: New file.
16555         * lib/unictype/pr_dash.c: New file.
16556         * lib/unictype/pr_decimal_digit.c: New file.
16557         * lib/unictype/pr_default_ignorable_code_point.c: New file.
16558         * lib/unictype/pr_deprecated.c: New file.
16559         * lib/unictype/pr_diacritic.c: New file.
16560         * lib/unictype/pr_extender.c: New file.
16561         * lib/unictype/pr_format_control.c: New file.
16562         * lib/unictype/pr_grapheme_base.c: New file.
16563         * lib/unictype/pr_grapheme_extend.c: New file.
16564         * lib/unictype/pr_grapheme_link.c: New file.
16565         * lib/unictype/pr_hex_digit.c: New file.
16566         * lib/unictype/pr_hyphen.c: New file.
16567         * lib/unictype/pr_id_continue.c: New file.
16568         * lib/unictype/pr_id_start.c: New file.
16569         * lib/unictype/pr_ideographic.c: New file.
16570         * lib/unictype/pr_ids_binary_operator.c: New file.
16571         * lib/unictype/pr_ids_trinary_operator.c: New file.
16572         * lib/unictype/pr_ignorable_control.c: New file.
16573         * lib/unictype/pr_iso_control.c: New file.
16574         * lib/unictype/pr_join_control.c: New file.
16575         * lib/unictype/pr_left_of_pair.c: New file.
16576         * lib/unictype/pr_line_separator.c: New file.
16577         * lib/unictype/pr_logical_order_exception.c: New file.
16578         * lib/unictype/pr_lowercase.c: New file.
16579         * lib/unictype/pr_math.c: New file.
16580         * lib/unictype/pr_non_break.c: New file.
16581         * lib/unictype/pr_not_a_character.c: New file.
16582         * lib/unictype/pr_numeric.c: New file.
16583         * lib/unictype/pr_other_alphabetic.c: New file.
16584         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
16585         * lib/unictype/pr_other_grapheme_extend.c: New file.
16586         * lib/unictype/pr_other_id_continue.c: New file.
16587         * lib/unictype/pr_other_id_start.c: New file.
16588         * lib/unictype/pr_other_lowercase.c: New file.
16589         * lib/unictype/pr_other_math.c: New file.
16590         * lib/unictype/pr_other_uppercase.c: New file.
16591         * lib/unictype/pr_paired_punctuation.c: New file.
16592         * lib/unictype/pr_paragraph_separator.c: New file.
16593         * lib/unictype/pr_pattern_syntax.c: New file.
16594         * lib/unictype/pr_pattern_white_space.c: New file.
16595         * lib/unictype/pr_private_use.c: New file.
16596         * lib/unictype/pr_punctuation.c: New file.
16597         * lib/unictype/pr_quotation_mark.c: New file.
16598         * lib/unictype/pr_radical.c: New file.
16599         * lib/unictype/pr_sentence_terminal.c: New file.
16600         * lib/unictype/pr_soft_dotted.c: New file.
16601         * lib/unictype/pr_space.c: New file.
16602         * lib/unictype/pr_terminal_punctuation.c: New file.
16603         * lib/unictype/pr_test.c: New file.
16604         * lib/unictype/pr_titlecase.c: New file.
16605         * lib/unictype/pr_unassigned_code_value.c: New file.
16606         * lib/unictype/pr_unified_ideograph.c: New file.
16607         * lib/unictype/pr_uppercase.c: New file.
16608         * lib/unictype/pr_variation_selector.c: New file.
16609         * lib/unictype/pr_white_space.c: New file.
16610         * lib/unictype/pr_xid_continue.c: New file.
16611         * lib/unictype/pr_xid_start.c: New file.
16612         * lib/unictype/pr_zero_width.c: New file.
16613         * lib/unictype/scripts.c: New file.
16614         * lib/unictype/sy_c_ident.c: New file.
16615         * lib/unictype/sy_c_whitespace.c: New file.
16616         * lib/unictype/sy_java_ident.c: New file.
16617         * lib/unictype/sy_java_whitespace.c: New file.
16618
16619         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
16620         Unicode 5.0.0.
16621         * lib/unictype/blocks.h: Likewise.
16622         * lib/unictype/categ_C.h: Likewise.
16623         * lib/unictype/categ_Cc.h: Likewise.
16624         * lib/unictype/categ_Cf.h: Likewise.
16625         * lib/unictype/categ_Cn.h: Likewise.
16626         * lib/unictype/categ_Co.h: Likewise.
16627         * lib/unictype/categ_Cs.h: Likewise.
16628         * lib/unictype/categ_L.h: Likewise.
16629         * lib/unictype/categ_Ll.h: Likewise.
16630         * lib/unictype/categ_Lm.h: Likewise.
16631         * lib/unictype/categ_Lo.h: Likewise.
16632         * lib/unictype/categ_Lt.h: Likewise.
16633         * lib/unictype/categ_Lu.h: Likewise.
16634         * lib/unictype/categ_M.h: Likewise.
16635         * lib/unictype/categ_Mc.h: Likewise.
16636         * lib/unictype/categ_Me.h: Likewise.
16637         * lib/unictype/categ_Mn.h: Likewise.
16638         * lib/unictype/categ_N.h: Likewise.
16639         * lib/unictype/categ_Nd.h: Likewise.
16640         * lib/unictype/categ_Nl.h: Likewise.
16641         * lib/unictype/categ_No.h: Likewise.
16642         * lib/unictype/categ_P.h: Likewise.
16643         * lib/unictype/categ_Pc.h: Likewise.
16644         * lib/unictype/categ_Pd.h: Likewise.
16645         * lib/unictype/categ_Pe.h: Likewise.
16646         * lib/unictype/categ_Pf.h: Likewise.
16647         * lib/unictype/categ_Pi.h: Likewise.
16648         * lib/unictype/categ_Po.h: Likewise.
16649         * lib/unictype/categ_Ps.h: Likewise.
16650         * lib/unictype/categ_S.h: Likewise.
16651         * lib/unictype/categ_Sc.h: Likewise.
16652         * lib/unictype/categ_Sk.h: Likewise.
16653         * lib/unictype/categ_Sm.h: Likewise.
16654         * lib/unictype/categ_So.h: Likewise.
16655         * lib/unictype/categ_Z.h: Likewise.
16656         * lib/unictype/categ_Zl.h: Likewise.
16657         * lib/unictype/categ_Zp.h: Likewise.
16658         * lib/unictype/categ_Zs.h: Likewise.
16659         * lib/unictype/categ_of.h: Likewise.
16660         * lib/unictype/combining.h: Likewise.
16661         * lib/unictype/ctype_alnum.h: Likewise.
16662         * lib/unictype/ctype_alpha.h: Likewise.
16663         * lib/unictype/ctype_blank.h: Likewise.
16664         * lib/unictype/ctype_cntrl.h: Likewise.
16665         * lib/unictype/ctype_digit.h: Likewise.
16666         * lib/unictype/ctype_graph.h: Likewise.
16667         * lib/unictype/ctype_lower.h: Likewise.
16668         * lib/unictype/ctype_print.h: Likewise.
16669         * lib/unictype/ctype_punct.h: Likewise.
16670         * lib/unictype/ctype_space.h: Likewise.
16671         * lib/unictype/ctype_upper.h: Likewise.
16672         * lib/unictype/ctype_xdigit.h: Likewise.
16673         * lib/unictype/decdigit.h: Likewise.
16674         * lib/unictype/digit.h: Likewise.
16675         * lib/unictype/mirror.h: Likewise.
16676         * lib/unictype/numeric.h: Likewise.
16677         * lib/unictype/pr_alphabetic.h: Likewise.
16678         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
16679         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
16680         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
16681         * lib/unictype/pr_bidi_block_separator.h: Likewise.
16682         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
16683         * lib/unictype/pr_bidi_common_separator.h: Likewise.
16684         * lib/unictype/pr_bidi_control.h: Likewise.
16685         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
16686         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
16687         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
16688         * lib/unictype/pr_bidi_european_digit.h: Likewise.
16689         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
16690         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
16691         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
16692         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
16693         * lib/unictype/pr_bidi_pdf.h: Likewise.
16694         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
16695         * lib/unictype/pr_bidi_whitespace.h: Likewise.
16696         * lib/unictype/pr_combining.h: Likewise.
16697         * lib/unictype/pr_composite.h: Likewise.
16698         * lib/unictype/pr_currency_symbol.h: Likewise.
16699         * lib/unictype/pr_dash.h: Likewise.
16700         * lib/unictype/pr_decimal_digit.h: Likewise.
16701         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
16702         * lib/unictype/pr_deprecated.h: Likewise.
16703         * lib/unictype/pr_diacritic.h: Likewise.
16704         * lib/unictype/pr_extender.h: Likewise.
16705         * lib/unictype/pr_format_control.h: Likewise.
16706         * lib/unictype/pr_grapheme_base.h: Likewise.
16707         * lib/unictype/pr_grapheme_extend.h: Likewise.
16708         * lib/unictype/pr_grapheme_link.h: Likewise.
16709         * lib/unictype/pr_hex_digit.h: Likewise.
16710         * lib/unictype/pr_hyphen.h: Likewise.
16711         * lib/unictype/pr_id_continue.h: Likewise.
16712         * lib/unictype/pr_id_start.h: Likewise.
16713         * lib/unictype/pr_ideographic.h: Likewise.
16714         * lib/unictype/pr_ids_binary_operator.h: Likewise.
16715         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
16716         * lib/unictype/pr_ignorable_control.h: Likewise.
16717         * lib/unictype/pr_iso_control.h: Likewise.
16718         * lib/unictype/pr_join_control.h: Likewise.
16719         * lib/unictype/pr_left_of_pair.h: Likewise.
16720         * lib/unictype/pr_line_separator.h: Likewise.
16721         * lib/unictype/pr_logical_order_exception.h: Likewise.
16722         * lib/unictype/pr_lowercase.h: Likewise.
16723         * lib/unictype/pr_math.h: Likewise.
16724         * lib/unictype/pr_non_break.h: Likewise.
16725         * lib/unictype/pr_not_a_character.h: Likewise.
16726         * lib/unictype/pr_numeric.h: Likewise.
16727         * lib/unictype/pr_other_alphabetic.h: Likewise.
16728         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
16729         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
16730         * lib/unictype/pr_other_id_continue.h: Likewise.
16731         * lib/unictype/pr_other_id_start.h: Likewise.
16732         * lib/unictype/pr_other_lowercase.h: Likewise.
16733         * lib/unictype/pr_other_math.h: Likewise.
16734         * lib/unictype/pr_other_uppercase.h: Likewise.
16735         * lib/unictype/pr_paired_punctuation.h: Likewise.
16736         * lib/unictype/pr_paragraph_separator.h: Likewise.
16737         * lib/unictype/pr_pattern_syntax.h: Likewise.
16738         * lib/unictype/pr_pattern_white_space.h: Likewise.
16739         * lib/unictype/pr_private_use.h: Likewise.
16740         * lib/unictype/pr_punctuation.h: Likewise.
16741         * lib/unictype/pr_quotation_mark.h: Likewise.
16742         * lib/unictype/pr_radical.h: Likewise.
16743         * lib/unictype/pr_sentence_terminal.h: Likewise.
16744         * lib/unictype/pr_soft_dotted.h: Likewise.
16745         * lib/unictype/pr_space.h: Likewise.
16746         * lib/unictype/pr_terminal_punctuation.h: Likewise.
16747         * lib/unictype/pr_titlecase.h: Likewise.
16748         * lib/unictype/pr_unassigned_code_value.h: Likewise.
16749         * lib/unictype/pr_unified_ideograph.h: Likewise.
16750         * lib/unictype/pr_uppercase.h: Likewise.
16751         * lib/unictype/pr_variation_selector.h: Likewise.
16752         * lib/unictype/pr_white_space.h: Likewise.
16753         * lib/unictype/pr_xid_continue.h: Likewise.
16754         * lib/unictype/pr_xid_start.h: Likewise.
16755         * lib/unictype/pr_zero_width.h: Likewise.
16756         * lib/unictype/scripts.h: Likewise.
16757         * lib/unictype/scripts_byname.gperf: Likewise.
16758         * lib/unictype/sy_c_ident.h: Likewise.
16759         * lib/unictype/sy_c_whitespace.h: Likewise.
16760         * lib/unictype/sy_java_ident.h: Likewise.
16761         * lib/unictype/sy_java_whitespace.h: Likewise.
16762
16763         * lib/unictype/Makefile: New file.
16764         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
16765         glibc.
16766         * lib/unictype/3level.h: New file, copied from glibc.
16767         * lib/unictype/3levelbit.h: New file.
16768
16769 2007-11-11  Bruno Haible  <bruno@clisp.org>
16770
16771         * modules/gperf: New file.
16772         * modules/iconv_open (Depends-on): Add it.
16773         (Makefile.am): Remove the GPERF definition.
16774
16775 2007-11-11  Bruno Haible  <bruno@clisp.org>
16776
16777         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
16778         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
16779
16780 2007-11-11  Bruno Haible  <bruno@clisp.org>
16781
16782         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
16783         (usage): Remove function.
16784
16785 2007-11-11  Bruno Haible  <bruno@clisp.org>
16786
16787         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
16788         gl_FUNC_CEILF_LIBS.
16789         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
16790         gl_FUNC_CEIL_LIBS.
16791         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
16792         gl_FUNC_CEILL_LIBS.
16793         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
16794         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
16795         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
16796
16797 2007-11-11  Bruno Haible  <bruno@clisp.org>
16798
16799         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
16800         roundf were declared but do not exist on functions.
16801         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
16802         roundl were declared but do not exist on functions.
16803         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
16804         HAVE_FLOORL_AND_CEILL, respectively.
16805         Needed for Sun C on Solaris 10.
16806
16807 2007-11-11  Bruno Haible  <bruno@clisp.org>
16808
16809         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
16810         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
16811         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
16812         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
16813         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
16814         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
16815         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
16816         HAVE_DECL_ROUNDF.
16817         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
16818         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
16819         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
16820         of HAVE_DECL_ROUND*.
16821         * modules/math (Makefile.am): Update.
16822
16823 2007-11-10  Bruno Haible  <bruno@clisp.org>
16824
16825         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
16826         ptrdiff_t as m4/intl.m4.
16827
16828 2007-11-10  Jim Meyering  <meyering@redhat.com>
16829
16830         Avoid link failure for the argmatch test.
16831         * tests/test-argmatch.c (usage): Define function to avoid a link
16832         failure: argmatch_die requires a usage function.
16833
16834 2007-11-09  Bruno Haible  <bruno@clisp.org>
16835
16836         * doc/functions/snprintf.texi: Mention BeOS deficiency.
16837         * doc/functions/vsnprintf.texi: Likewise.
16838         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
16839         with a size argument < 2.
16840
16841 2007-11-09  Bruno Haible  <bruno@clisp.org>
16842
16843         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
16844         buffer. Fixes an inefficiency introduced on 2007-11-03.
16845
16846 2007-11-09  Bruno Haible  <bruno@clisp.org>
16847
16848         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
16849         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
16850
16851 2007-11-08  Jim Meyering  <meyering@redhat.com>
16852
16853         Change cache variable name prefix "jm_" to "gl_" everywhere.
16854         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
16855         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
16856         * m4/uptime.m4: s/gl_/jm_/
16857
16858 2007-11-07  Bruno Haible  <bruno@clisp.org>
16859
16860         Update to GNU gettext 0.17.
16861         * m4/intl.m4: Update to GNU gettext 0.17.
16862         * m4/po.m4: Likewise.
16863         * modules/gettext (Files): Remove m4/ulonglong.m4.
16864         (configure.ac): Require gettext infrastructure from version 0.17.
16865
16866 2007-11-06  Bruno Haible  <bruno@clisp.org>
16867
16868         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
16869         symbolic values are not defined in a public header.
16870         * lib/freadable.c (freadable) [QNX]: Likewise.
16871         * lib/freadahead.c (freadahead) [QNX]: Likewise.
16872         * lib/freading.c (freading) [QNX]: Likewise.
16873         * lib/fseterr.c (fseterr) [QNX]: Likewise.
16874         * lib/fwritable.c (fwritable) [QNX]: Likewise.
16875         * lib/fwriting.c (fwriting) [QNX]: Likewise.
16876         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
16877         Reported by Alain Magloire.
16878
16879         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
16880
16881 2007-11-05  Bruno Haible  <bruno@clisp.org>
16882
16883         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
16884         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
16885         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
16886         Reported by Eric Blake.
16887
16888 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16889             Bruno Haible  <bruno@clisp.org>
16890
16891         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
16892         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
16893         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
16894         (malloc): Undefine also before including <stdlib.h>.
16895         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
16896         Needed on OSF/1 4.0.
16897
16898 2007-11-05  Jim Meyering  <meyering@redhat.com>
16899
16900         git-version-gen: sync from coreutils.
16901         * build-aux/git-version-gen: Add comments.
16902         Change the first '-' to '.' in the snapshot version string,
16903         e.g., 6.9-377-08144 -> 6.9.377-08144
16904         Remove first parameter.
16905         Don't declare a version "-dirty" merely because a time
16906         stamp has changed.
16907
16908 2007-11-04  Bruno Haible  <bruno@clisp.org>
16909
16910         * lib/lock.h: Protect all macro definitions containing an 'if'
16911         statement through a "do { ... } while (0)".
16912         * lib/tls.h: Likewise.
16913
16914 2007-11-04  Bruno Haible  <bruno@clisp.org>
16915
16916         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
16917
16918 2007-11-04  Bruno Haible  <bruno@clisp.org>
16919
16920         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
16921         * modules/fprintf-posix (Depends-on): Add nocrash.
16922         * modules/snprintf-posix (Depends-on): Likewise.
16923         * modules/sprintf-posix (Depends-on): Likewise.
16924         * modules/vasnprintf-posix (Depends-on): Likewise.
16925         * modules/vasprintf-posix (Depends-on): Likewise.
16926         * modules/vfprintf-posix (Depends-on): Likewise.
16927         * modules/vsnprintf-posix (Depends-on): Likewise.
16928         * modules/vsprintf-posix (Depends-on): Likewise.
16929         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
16930         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
16931         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
16932         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
16933         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
16934         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
16935         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
16936
16937 2007-11-04  Bruno Haible  <bruno@clisp.org>
16938
16939         * modules/nocrash: New file.
16940         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
16941         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
16942
16943 2007-11-04  Bruno Haible  <bruno@clisp.org>
16944
16945         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
16946         precision handling.
16947         * tests/test-vasprintf-posix.c (test_function): Likewise.
16948         * tests/test-snprintf-posix.h (test_function): Likewise.
16949         * tests/test-sprintf-posix.h (test_function): Likewise.
16950
16951         Fix *printf behaviour for large precisions on mingw and BeOS.
16952         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
16953         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
16954         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
16955         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16956         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16957         gl_PRINTF_PRECISION and test its result. Invoke
16958         gl_PREREQ_VASNPRINTF_PRECISION.
16959         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16960         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16961         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16962         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16963         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16964         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16965         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16966         * doc/functions/fprintf.texi: Update.
16967         * doc/functions/printf.texi: Update.
16968         * doc/functions/snprintf.texi: Update.
16969         * doc/functions/sprintf.texi: Update.
16970         * doc/functions/vfprintf.texi: Update.
16971         * doc/functions/vprintf.texi: Update.
16972         * doc/functions/vsnprintf.texi: Update.
16973         * doc/functions/vsprintf.texi: Update.
16974
16975 2007-11-04  Bruno Haible  <bruno@clisp.org>
16976
16977         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
16978
16979 2007-11-04  Bruno Haible  <bruno@clisp.org>
16980
16981         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
16982         Reported by Sylvain Beucler <beuc@gnu.org>.
16983
16984 2007-11-03  Bruno Haible  <bruno@clisp.org>
16985
16986         * tests/test-fprintf-posix2.sh: New file.
16987         * tests/test-fprintf-posix2.c: New file.
16988         * modules/fprintf-posix-tests (Files): Add them.
16989         (TESTS): Add test-fprintf-posix2.sh.
16990         (configure.ac): Check for getrlimit and setrlimit.
16991         (check_PROGRAMS): Add test-fprintf-posix2.
16992
16993         * tests/test-printf-posix2.sh: New file.
16994         * tests/test-printf-posix2.c: New file.
16995         * modules/printf-posix-tests (Files): Add them.
16996         (TESTS): Add test-printf-posix2.sh.
16997         (configure.ac): Check for getrlimit and setrlimit.
16998         (check_PROGRAMS): Add test-printf-posix2.
16999
17000         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
17001         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
17002         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
17003         (decode_double): New function, copied from decode_long_double.
17004         (scale10_round_decimal_decoded): New function, extracted from
17005         scale10_round_decimal_long_double.
17006         (scale10_round_decimal_long_double): Use it.
17007         (scale10_round_decimal_double): New function.
17008         (floorlog10): New function.
17009         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
17010         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
17011         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
17012         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
17013         gl_PRINTF_ENOMEM and test its result. Invoke
17014         gl_PREREQ_VASNPRINTF_ENOMEM.
17015         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
17016         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17017         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17018         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17019         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17020         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17021         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17022         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
17023         * modules/snprintf-posix (Depends-on): Likewise.
17024         * modules/sprintf-posix (Depends-on): Likewise.
17025         * modules/vasnprintf-posix (Depends-on): Likewise.
17026         * modules/vasprintf-posix (Depends-on): Likewise.
17027         * modules/vfprintf-posix (Depends-on): Likewise.
17028         * modules/vsnprintf-posix (Depends-on): Likewise.
17029         * modules/vsprintf-posix (Depends-on): Likewise.
17030         * doc/functions/fprintf.texi: Update.
17031         * doc/functions/printf.texi: Update.
17032         * doc/functions/snprintf.texi: Update.
17033         * doc/functions/sprintf.texi: Update.
17034         * doc/functions/vfprintf.texi: Update.
17035         * doc/functions/vprintf.texi: Update.
17036         * doc/functions/vsnprintf.texi: Update.
17037         * doc/functions/vsprintf.texi: Update.
17038
17039 2007-11-03  Bruno Haible  <bruno@clisp.org>
17040
17041         * modules/frexp-nolibm-tests: New file.
17042
17043         * modules/frexp-nolibm: New file.
17044         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
17045
17046 2007-11-03  Bruno Haible  <bruno@clisp.org>
17047
17048         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
17049         value is C99 compliant.
17050         Needed for OSF/1 5.1.
17051
17052 2007-11-03  Bruno Haible  <bruno@clisp.org>
17053
17054         Fix out-of-memory handling of vasnprintf.
17055         * lib/printf-parse.c: Include <errno.h>.
17056         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
17057         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
17058         is already set.
17059
17060 2007-11-02  Eric Blake  <ebb9@byu.net>
17061
17062         Fix tests on cygwin.
17063         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
17064
17065 2007-11-01  Bruno Haible  <bruno@clisp.org>
17066
17067         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
17068         warning.
17069         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
17070         needed for POSIX compatibility.
17071
17072 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
17073
17074         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
17075         for compatibility with GNU.
17076
17077 2007-11-01  Bruno Haible  <bruno@clisp.org>
17078
17079         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
17080         (putenv): Renamed from rpl_putenv. Change argument type from
17081         'const char *' to 'char *'.
17082         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
17083         of defining putenv in config.h, just set REPLACE_PUTENV.
17084         * modules/putenv (Depends-on): Add stdlib.
17085         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
17086         (Include): Use <stdlib.h>.
17087         * lib/stdlib.in.h (putenv): New declaration.
17088         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
17089         REPLACE_PUTENV.
17090         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
17091         REPLACE_PUTENV.
17092         Needed for MacOS X 10.5.0.
17093         Reported by Peter O'Gorman <peter@pogma.com>.
17094
17095 2007-11-01  Jim Meyering  <meyering@redhat.com>
17096
17097         Treat an empty date string exactly like "0".
17098         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
17099         if the remaining date string (to be parsed) is empty, use "0".
17100         Reported by Mischa Molhoek and discussed in this thread:
17101         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
17102
17103 2007-10-31  Bruno Haible  <bruno@clisp.org>
17104
17105         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
17106         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
17107         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
17108         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
17109         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
17110         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
17111
17112 2007-10-31  Bruno Haible  <bruno@clisp.org>
17113
17114         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
17115         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
17116         (AC_TYPE_LONG_LONG_INT): Use it.
17117         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
17118         it as well.
17119         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
17120         to m4/longlong.m4.
17121         * modules/stdint (Files): Remove m4/ulonglong.m4.
17122         * modules/strtoull (Files): Use m4/longlong.m4 instead of
17123         m4/ulonglong.m4.
17124         * modules/strtoumax (Files): Likewise.
17125
17126 2007-10-30  Bruno Haible  <bruno@clisp.org>
17127
17128         * modules/xvasprintf-posix: New file.
17129         Suggested by Eric Blake.
17130
17131 2007-10-30  Bruno Haible  <bruno@clisp.org>
17132
17133         * modules/xprintf-posix-tests: New file.
17134         * tests/test-xprintf-posix.sh: New file.
17135         * tests/test-xprintf-posix.c: New file.
17136         * tests/test-xfprintf-posix.c: New file.
17137
17138         * modules/xprintf-posix: New file.
17139
17140 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17141
17142         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
17143         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
17144         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
17145
17146 2007-10-29  Bruno Haible  <bruno@clisp.org>
17147
17148         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
17149         contain the special marker '_cv_'.
17150         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
17151         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
17152         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
17153         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
17154         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
17155         Reported by Ralf Wildenhues.
17156
17157 2007-10-29  Bruno Haible  <bruno@clisp.org>
17158
17159         * gnulib-tool (func_import): When --lgpl is not specified, set
17160         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
17161         GPLv3.
17162         Reported by Simon Josefsson.
17163
17164 2007-10-28  Bruno Haible  <bruno@clisp.org>
17165
17166         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
17167         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
17168         HAVE_DECL_ISFINITE.
17169         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
17170         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
17171         HAVE_DECL_ISFINITE.
17172
17173 2007-10-28  Bruno Haible  <bruno@clisp.org>
17174
17175         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
17176         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
17177
17178 2007-10-28  Bruno Haible  <bruno@clisp.org>
17179
17180         Fix link errors with Sun C 5.0 on Solaris 10.
17181         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
17182         function is declared but not present in the compiler's libm.
17183         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
17184         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
17185         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
17186         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
17187         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
17188         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
17189         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
17190         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
17191         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
17192         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
17193         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
17194         HAVE_DECL_FLOORL.
17195
17196 2007-10-28  Bruno Haible  <bruno@clisp.org>
17197
17198         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
17199         gl_FUNC_FLOORL. Cache the result.
17200         (gl_FUNC_FLOORL): Use it.
17201         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
17202         gl_FUNC_CEILL. Cache the result.
17203         (gl_FUNC_CEILL): Use it.
17204
17205         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
17206         gl_FUNC_FLOOR. Cache the result.
17207         (gl_FUNC_FLOOR): Use it.
17208         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
17209         gl_FUNC_CEIL. Cache the result.
17210         (gl_FUNC_CEIL): Use it.
17211
17212         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
17213         gl_FUNC_FLOORF. Cache the result.
17214         (gl_FUNC_FLOORF): Use it.
17215         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
17216         gl_FUNC_CEILF. Cache the result.
17217         (gl_FUNC_CEILF): Use it.
17218
17219 2007-10-28  Bruno Haible  <bruno@clisp.org>
17220
17221         * gnulib-tool: Allow specifying the LGPL version number through
17222         --lgpl=2 or --lgpl=3.
17223         (func_usage): Document --lgpl with argument.
17224         Handle --lgpl=... arguments.
17225         (func_import): Recognize also gl_LGPL calls with an argument. When
17226         --lgpl=2 is used and the module's license is just LGPL, report an
17227         error. Set sed_transform_lib_file according to the lgpl variable. In
17228         the generated files, use --lgpl or gl_LGPL invocations with argument,
17229         if necessary.
17230         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
17231         an LGPv2+ license.
17232         * doc/gnulib-tool.texi (Modified imports): Update explanation of
17233         gl_LGPL macro.
17234
17235 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17236             Bruno Haible  <bruno@clisp.org>
17237
17238         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
17239         (u16_uctomb_aux): Likewise.
17240         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
17241         !HAVE_INLINE.
17242         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
17243
17244 2007-10-28  Bruno Haible  <bruno@clisp.org>
17245
17246         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
17247         Invoke AM_GETTEXT_OPTION if it exists.
17248         * modules/vasprintf: Likewise.
17249         * modules/verror: Likewise.
17250         * modules/xprintf: Likewise.
17251         * modules/xvasprintf: Likewise.
17252
17253 2007-10-27  Ben Pfaff  <blp@gnu.org>
17254
17255         * lib/math.in.h: Define isfinite macro and prototypes for
17256         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
17257         implementations.
17258         * m4/math_h.m4: New substitutions for isfinite module.
17259         * lib/isfinite.c: New file.
17260         * m4/isfinite.m4: New file.
17261         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
17262         * modules/isfinite: New file.
17263         * modules/isfinite-tests: New file.
17264         * tests/tests-isfinite.c: New file.
17265         * doc/functions/isfinite.texi: Mention isfinite module.
17266         * MODULES.html.sh: Mention new module.
17267
17268 2007-10-27  Ben Pfaff  <blp@gnu.org>
17269
17270         Ralf Wildenhues reported that Tru64 4.0D declares the round
17271         functions but does not have definitions.
17272         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
17273         cannot be found in any library, set the output variable to
17274         "missing" instead of "".
17275         * m4/round.m4: Also use our substitute if we cannot find round in
17276         any library, even if it is declared.
17277         * m4/roundf.m4: Likewise for roundf.
17278         * m4/roundl.m4: Likewise for roundl.
17279         * lib/math.in.h: Undefine roundf, round, roundl before defining
17280         their replacements, to allow for hypothetical systems where these
17281         may be defined as macros but not available in libraries.
17282
17283 2007-10-27  Bruno Haible  <bruno@clisp.org>
17284
17285         * doc/gnulib.texi: Invoke @firstparagraphindent.
17286         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
17287         changes in gnulib.
17288         (Source changes): New section.
17289
17290 2007-10-26  Bruno Haible  <bruno@clisp.org>
17291
17292         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
17293         borrowed from autoconf.
17294
17295 2007-10-26  Bruno Haible  <bruno@clisp.org>
17296
17297         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
17298         strerror returned the empty string. Needed on HP-UX 11.00.
17299
17300 2007-10-24  Micah Cowan  <micah@cowan.name>
17301
17302         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
17303         * build-aux/bootstrap: Remove support for now-unnecessary option,
17304         --cvs-user, and envvars CVS_USER, CVS_RSH.
17305
17306 2007-10-24  Jim Meyering  <meyering@redhat.com>
17307
17308         Avoid diagnostics from sha1sum when there is no cached checksum.
17309         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
17310         if the po.s1 file hasn't been created yet.
17311
17312         * build-aux/bootstrap: Sync from coreutils:
17313         2007-10-24  Jim Meyering  <meyering@redhat.com>
17314         Get gnulib from the git repository, not from an obsolete cvs one.
17315         * build-aux/bootstrap: Suggestion from Micah Cowan.
17316         2007-10-04  Jim Meyering  <jim@meyering.net>
17317         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
17318         (update_po_files): Work also when there are no .po files in po/.
17319
17320 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
17321
17322         * README: Append ".git" to git and cg examples.
17323         Problem reported by Benoit Sigoure.
17324
17325 2007-10-23  Micah Cowan  <micah@cowan.name>
17326
17327         * users.txt: Add wget.
17328
17329 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17330
17331         Fix linking of some unistdio tests on FreeBSD.
17332         * modules/unistdio/u16-vsnprintf-tests
17333         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
17334         * modules/unistdio/u16-vsprintf-tests
17335         (test_u16_vsnprintf1_LDADD): Likewise.
17336         * modules/unistdio/u32-vsnprintf-tests
17337         (test_u32_vsnprintf1_LDADD): Likewise.
17338         * modules/unistdio/u32-vsprintf-tests
17339         (test_u32_vsprintf1_LDADD): Likewise.
17340         * modules/unistdio/u8-vsnprintf-tests
17341         (test_u8_vsnprintf1_LDADD): Likewise.
17342         * modules/unistdio/u8-vsprintf-tests
17343         (test_u8_vsprintf1_LDADD): Likewise.
17344         * modules/unistdio/ulc-vsnprintf-tests
17345         (test_ulc_vsnprintf1_LDADD): Likewise.
17346         * modules/unistdio/ulc-vsprintf-tests
17347         (test_ulc_vsprintf1_LDADD): Likewise.
17348
17349         Fix linking of some uniconv tests on FreeBSD.
17350         * modules/uniconv/u16-conv-from-enc-tests
17351         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
17352         * modules/uniconv/u16-conv-to-enc-tests
17353         (test_u16_conv_to_enc_LDADD): Likewise.
17354         * modules/uniconv/u16-strconv-from-enc-tests
17355         (test_u16_strconv_from_enc_LDADD): Likewise.
17356         * modules/uniconv/u16-strconv-to-enc-tests
17357         (test_u16_strconv_to_enc_LDADD): Likewise.
17358         * modules/uniconv/u32-conv-from-enc-tests
17359         (test_u32_conv_from_enc_LDADD): Likewise.
17360         * modules/uniconv/u32-conv-to-enc-tests
17361         (test_u32_conv_to_enc_LDADD): Likewise.
17362         * modules/uniconv/u32-strconv-from-enc-tests
17363         (test_u32_strconv_from_enc_LDADD): Likewise.
17364         * modules/uniconv/u32-strconv-to-enc-tests
17365         (test_u32_strconv_to_enc_LDADD): Likewise.
17366         * modules/uniconv/u8-conv-from-enc-tests
17367         (test_u8_conv_from_enc_LDADD): Likewise.
17368         * modules/uniconv/u8-conv-to-enc-tests
17369         (test_u8_conv_to_enc_LDADD): Likewise.
17370         * modules/uniconv/u8-strconv-from-enc-tests
17371         (test_u8_strconv_from_enc_LDADD): Likewise.
17372         * modules/uniconv/u8-strconv-to-enc-tests
17373         (test_u8_strconv_to_enc_LDADD): Likewise.
17374
17375 2007-10-22  Bruno Haible  <bruno@clisp.org>
17376
17377         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
17378         size.
17379
17380 2007-10-22  Eric Blake  <ebb9@byu.net>
17381
17382         Tweak x*printf documentation.
17383         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
17384         variable name and comments.
17385         Suggested by Bruno Haible.
17386
17387 2007-10-22  Bruno Haible  <bruno@clisp.org>
17388
17389         * lib/acl.c (copy_acl): Fix file name in comment.
17390
17391 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
17392
17393         Fix Tru64 problem with stdbool.h.
17394         * lib/stdbool.in.h (false, true):
17395         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
17396         Don't declare as an enum in this situation; it runs afoul of Tru64.
17397         Problem reported by Steven M. Schweda in
17398         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
17399
17400 2007-10-22  Eric Blake  <ebb9@byu.net>
17401
17402         Also wrap vf?printf.
17403         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
17404         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
17405         (xvprintf, xvfprintf): New functions.
17406
17407 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17408
17409         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
17410         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
17411
17412         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
17413         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
17414
17415 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
17416
17417         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
17418         by Bruno Haible.
17419
17420 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17421
17422         * lib/getloadavg.c
17423         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
17424         Undef `sys' after including sys/table.h, for Tru64 4.0D.
17425
17426         * tests/test-i-ring.c: Work for C89.
17427
17428 2007-10-22  Bruno Haible  <bruno@clisp.org>
17429
17430         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
17431         -1u, in preprocessor expression, so that we don't test for the bug
17432         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
17433         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
17434
17435 2007-10-22  Eric Blake  <ebb9@byu.net>
17436
17437         * tests/test-yesno.sh: Silence stderr during test.
17438
17439 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17440
17441         * modules/crypto/gc-camellia: New file.
17442
17443         * m4/gc-camellia.m4: New file.
17444
17445         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
17446
17447         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
17448
17449 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17450
17451         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
17452         --help to stdout.  Reported by sms@antinode.org (Steven
17453         M. Schweda).
17454
17455 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17456
17457         * users.txt: Fix link to libksba.
17458
17459 2007-10-21  Ben Pfaff  <blp@gnu.org>
17460
17461         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
17462         round.c roundf implementation that depends on floorf and ceilf to
17463         be tested unconditionally.
17464
17465 2007-10-21  Ben Pfaff  <blp@gnu.org>
17466
17467         * m4/check-libm-func.m4: Removed.
17468         * m4/check-math-lib.m4: New file.
17469         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
17470         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
17471         definition and lack of AC_LIBOBJ([roundf]).
17472         * m4/roundl.m4: Ditto, and similarly for roundl.
17473         * modules/round: Reference new m4 file.
17474         * modules/roundf: Ditto.
17475         * modules/roundl: Ditto.
17476         * tests/test-round2.c (main): Use ROUND instead of round.
17477         Bug report from Bruno Haible.
17478
17479 2007-10-21  Bruno Haible  <bruno@clisp.org>
17480
17481         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
17482         context.
17483
17484 2007-10-21  Bruno Haible  <bruno@clisp.org>
17485
17486         * tests/test-wcwidth.c (main): Allow negative result for some control
17487         characters.
17488
17489         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
17490         Needed on OSF/1 5.1.
17491
17492 2007-10-21  Bruno Haible  <bruno@clisp.org>
17493
17494         * tests/test-floorf1.c: Include isnanf.h.
17495         (main): Use isnanf() instead of isnan().
17496         * tests/test-ceilf1.c: Include isnanf.h.
17497         (main): Use isnanf() instead of isnan().
17498         * tests/test-truncf1.c: Include isnanf.h.
17499         (main): Use isnanf() instead of isnan().
17500         * tests/test-roundf1.c: Include isnanf.h.
17501         (main): Use isnanf() instead of isnan().
17502
17503 2007-10-21  Eric Blake  <ebb9@byu.net>
17504
17505         * users.txt: Update URL for m4.
17506
17507 2007-10-21  Bruno Haible  <bruno@clisp.org>
17508
17509         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
17510
17511 2007-10-21  Bruno Haible  <bruno@clisp.org>
17512
17513         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
17514         Git's management files if the CVS files are not present.
17515
17516 2007-10-20  Bruno Haible  <bruno@clisp.org>
17517
17518         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
17519         gcc-3.4.x.
17520
17521 2007-10-20  Ben Pfaff  <blp@gnu.org>
17522
17523         * lib/math.in.h: Declare round, roundf, roundl if we are providing
17524         implementations.
17525         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
17526         * lib/round.c: New file.
17527         * lib/roundf.c: New file.
17528         * lib/roundl.c: New file.
17529         * m4/round.m4: New file.
17530         * m4/roundf.m4: New file.
17531         * m4/roundl.m4: New file.
17532         * m4/check-libm-func-m4: New file.
17533         * modules/math: Replace round, roundf, roundl related @VARS@ in
17534         math.in.h.
17535         * modules/round: New file.
17536         * modules/round-tests: New file.
17537         * modules/roundf: New file.
17538         * modules/roundf-tests: New file.
17539         * modules/roundl: New file.
17540         * modules/roundl-tests: New file.
17541         * tests/test-round1.c: New file.
17542         * tests/test-round2.c: New file.
17543         * tests/test-roundf1.c: New file.
17544         * tests/test-roundf2.c: New file.
17545         * tests/test-roundl.c: New file.
17546         * doc/functions/round.texi: Mention round module.
17547         * doc/functions/roundf.texi: Mention roundf module.
17548         * doc/functions/roundl.texi: Mention roundl module.
17549         * MODULES.html.sh: Mention new modules.
17550         Thanks to Bruno Haible for suggestions.
17551
17552 2007-10-20  Jim Meyering  <meyering@redhat.com>
17553
17554         * lib/xprintf.c: Include <config.h> unconditionally.
17555
17556         Change xprintf's license to GPL.
17557         * modules/xprintf (License): s/LGPL/GPL/, since this module
17558         depends on modules (exit and exitfail) which are GPL.
17559         Suggestion from Bruno Haible.
17560
17561         xprintf fixes.
17562         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
17563         Use a clearer diagnostic.
17564         Patch from Bruno Haible.
17565
17566 2007-10-20  Bruno Haible  <bruno@clisp.org>
17567
17568         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
17569         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
17570         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17571
17572 2007-10-20  Bruno Haible  <bruno@clisp.org>
17573
17574         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
17575         precision in the comparison result > x - 1 or similar.
17576         * tests/test-ceilf2.c (correct_result_p): Likewise.
17577         * tests/test-truncf2.c (correct_result_p): Likewise.
17578         * tests/test-trunc2.c (correct_result_p): Likewise.
17579         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17580
17581 2007-10-20  Bruno Haible  <bruno@clisp.org>
17582
17583         * modules/ceil: New file.
17584         * m4/ceil.m4: New file.
17585         * doc/functions/ceil.texi: Mention the 'ceil' module.
17586
17587 2007-10-20  Bruno Haible  <bruno@clisp.org>
17588
17589         * modules/floor: New file.
17590         * m4/floor.m4: New file.
17591         * doc/functions/floor.texi: Mention the 'floor' module.
17592
17593 2007-10-20  Bruno Haible  <bruno@clisp.org>
17594
17595         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
17596         of %a.
17597         * modules/floorf-tests (Depends-on): Likewise.
17598         * modules/truncf-tests (Depends-on): Likewise.
17599         * modules/trunc-tests (Depends-on): Likewise.
17600         Reported by Ben Pfaff.
17601
17602 2007-10-19  Jim Meyering  <meyering@redhat.com>
17603
17604         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
17605         Don't bother testing specific errno values.  Just test ferror.
17606
17607         New module: xprintf
17608         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
17609
17610 2007-10-19  Bruno Haible  <bruno@clisp.org>
17611
17612         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
17613         syntax.
17614         * modules/javaexec (Makefile.am): Likewise.
17615         * modules/relocatable-prog (Makefile.am): Likewise.
17616         Suggested by Jim Meyering.
17617
17618 2007-10-18  Bruno Haible  <bruno@clisp.org>
17619
17620         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
17621         Reported by Jim Meyering.
17622
17623 2007-10-18  Eric Blake  <ebb9@byu.net>
17624
17625         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
17626
17627 2007-10-18  Bruno Haible  <bruno@clisp.org>
17628
17629         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
17630         the format string into writable memory. Needed in Fortify conditions.
17631
17632 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
17633             Bruno Haible  <bruno@clisp.org>
17634
17635         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
17636         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
17637         * modules/trim (Depends-on): Add mbchar.
17638         (configure.ac): Add gl_FUNC_MBRTOWC.
17639         (Makefile.am): Augment lib_SOURCES.
17640
17641 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
17642
17643         Modify glob.c to use fstatat and dirfd, to simplify it.
17644         Suggested by Eric Blake.
17645         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
17646         Don't include <stdbool.h>; not used.
17647         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
17648         (link_exists_p): Simplify implementation, since we can now assume
17649         dirfd and fstatat.
17650         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
17651
17652 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17653
17654         * gnulib-tool (func_get_dependencies): Fix sed script to
17655         match only tests.
17656
17657 2007-10-17  Bruno Haible  <bruno@clisp.org>
17658
17659         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
17660         allow locale names without encoding suffix.
17661         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
17662         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
17663
17664 2007-10-16  Bruno Haible  <bruno@clisp.org>
17665
17666         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
17667         * lib/getgroups.c (getgroups): Likewise.
17668         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
17669
17670 2007-10-16  Bruno Haible  <bruno@clisp.org>
17671
17672         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
17673         * modules/malloc-posix (License): Likewise.
17674         * modules/realloc-posix (License): Likewise.
17675         * modules/calloc-posix (License): Likewise.
17676         * modules/intprops (License): Change from GPL to LGPL, with
17677         Paul Eggert's approval.
17678
17679 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
17680
17681         Merge glibc changes into lib/glob.c.
17682
17683         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
17684         2007-10-15 04:59:03 UTC.  Here are the changes:
17685
17686         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
17687
17688         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
17689
17690         * lib/glob.c: Add some branch prediction throughout.
17691
17692         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
17693
17694         [BZ #5103]
17695         * lib/glob.c (glob): Recognize patterns starting \/.
17696
17697         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
17698
17699         [BZ #3996]
17700         * lib/glob.c (attribute_hidden): Define if not defined.
17701         (glob): Unescape dirname, filename or username when needed and not
17702         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
17703         is NULL.  Handle unescaped [ in pattern without closing ].
17704         Don't pass GLOB_CHECK down to recursive glob for directories.
17705         (__glob_pattern_type): New function.
17706         (__glob_pattern_p): Implement using __glob_pattern_type.
17707         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
17708         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
17709         Remove unreachable code.
17710
17711         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
17712
17713         * lib/glob.c (glob_in_dir): Add some comments and asserts to
17714         explain why there are no leaks.
17715
17716         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
17717
17718         [BZ #3253]
17719         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
17720         time, rather allocate increasingly bigger arrays of pointers, if
17721         possible with alloca, if too large with malloc.
17722
17723 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
17724
17725         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
17726         Problem reported by H.Merijn Brand in
17727         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
17728         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
17729         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
17730
17731 2007-10-15  Bruno Haible  <bruno@clisp.org>
17732
17733         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
17734         with explicit rpl_ prefix.
17735         * lib/fopen.c (fopen): Likewise.
17736         * lib/freopen.c (freopen): Likewise.
17737         * lib/iconv.c (iconv): Likewise.
17738         * lib/iconv_close.c (iconv_close): Likewise.
17739
17740 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17741
17742         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
17743
17744 2007-10-15  Bruno Haible  <bruno@clisp.org>
17745
17746         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
17747         <stddef.h> instead of <stdlib.h> since we only need NULL.
17748         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17749
17750 2007-10-15  Bruno Haible  <bruno@clisp.org>
17751
17752         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
17753         Replace paragraph talking about LIBOBJS.
17754         Reported by Colin Watson <cjwatson@debian.org>.
17755
17756 2007-10-15  Bruno Haible  <bruno@clisp.org>
17757
17758         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
17759         <stdlib.h> before using NULL.
17760
17761 2007-10-15  Simon Josefsson  <simon@josefsson.org>
17762
17763         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
17764         Reported by Albert Chin <china@thewrittenword.com>.
17765
17766 2007-10-14  Bruno Haible  <bruno@clisp.org>
17767
17768         * modules/iconv_open-utf-tests: New file.
17769         * tests/test-iconv-utf.c: New file.
17770
17771         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
17772         * modules/iconv_open-utf: New file.
17773         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
17774         (iconv, iconv_close): New declarations.
17775         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
17776         be defined.
17777         (iconv_open): Add special handling of conversion between UTF-8 and
17778         UTF-{16,32}{BE,LE}.
17779         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
17780         * lib/iconv_close.c: New file.
17781         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
17782         gl_FUNC_ICONV_OPEN.
17783         (gl_FUNC_ICONV_OPEN): Use it.
17784         (gl_FUNC_ICONV_OPEN_UTF): New macro.
17785         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
17786         and REPLACE_ICONV_UTF.
17787         * modules/iconv_open (Depends-on): Add c-strcase.
17788         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
17789         ICONV_CONST.
17790         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
17791
17792 2007-10-13  Albert Chin  <china@thewrittenword.com>
17793             Bruno Haible  <bruno@clisp.org>
17794
17795         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
17796         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
17797
17798 2007-10-13  Bruno Haible  <bruno@clisp.org>
17799
17800         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
17801         defined, use the ISO C99 inline semantics.
17802         * lib/argp.h (ARGP_EI): Likewise.
17803
17804 2007-10-13  Bruno Haible  <bruno@clisp.org>
17805
17806         Handle 'inline' change in gcc 4.3.0.
17807         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
17808         argp_fmtstream_write, argp_fmtstream_set_lmargin,
17809         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
17810         argp_fmtstream_point): Disable 'extern' declaration if the function
17811         definition is going to be provided inline.
17812         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
17813         semantics, not the ISO C99 inline semantics.
17814         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
17815         'extern' declaration if the function definition is going to be provided
17816         inline.
17817         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
17818         the GNU C inline semantics, not the ISO C99 inline semantics. With
17819         GCC 4.2, avoid a warning.
17820
17821 2007-10-13  Bruno Haible  <bruno@clisp.org>
17822
17823         * lib/freading.h (freading): Enable the use of __freading for
17824         glibc >= 2.7.
17825         * lib/freading.c (freading): Likewise.
17826
17827 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17828
17829         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
17830         "warning: C99 inline functions are not supported; using GNU89".
17831
17832 2007-10-12  Bruno Haible  <bruno@clisp.org>
17833
17834         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
17835         of 2.
17836         * tests/test-ceilf2.c: New file.
17837         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
17838
17839         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
17840         * modules/ceilf-tests: Update.
17841
17842 2007-10-12  Bruno Haible  <bruno@clisp.org>
17843
17844         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
17845         of 2.
17846         * tests/test-floorf2.c: New file.
17847         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
17848
17849         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
17850         * modules/floorf-tests: Update.
17851
17852 2007-10-12  Bruno Haible  <bruno@clisp.org>
17853
17854         * tests/test-trunc2.c: New file.
17855         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
17856
17857         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
17858         * modules/trunc-tests: Update.
17859
17860 2007-10-12  Bruno Haible  <bruno@clisp.org>
17861
17862         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
17863         of 2.
17864         * tests/test-truncf2.c: New file.
17865         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
17866
17867         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
17868         * modules/truncf-tests: Update.
17869
17870 2007-10-11  Eric Blake  <ebb9@byu.net>
17871
17872         Don't claim strerror is broken on Interix.
17873         * doc/functions/strerror.texi (strerror): Known broken systems are
17874         now Solaris 8, and not Interix.
17875         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
17876         Interix on cross-compile.
17877         Reported by Martin Koeppe in
17878         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
17879
17880 2007-10-11  Bruno Haible  <bruno@clisp.org>
17881
17882         * modules/i-ring-tests: New file.
17883         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
17884         instead of assert.
17885
17886 2007-10-11  Bruno Haible  <bruno@clisp.org>
17887
17888         * modules/filenamecat-tests: New file.
17889         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
17890         * lib/filenamecat.c: Remove test code.
17891
17892 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17893
17894         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
17895
17896         * lib/strerror.c: Include <string.h> always, to test interface,
17897         and to remove the need for the dummy.
17898         Include intprops.h to compute width instead of doing it ourselves
17899         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
17900         (strerror): Define it to return NULL if there's no system strerror.
17901         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
17902         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
17903         ancient pre-strerror Unix systems well any more.  Saying "unknown
17904         system error" is enough.
17905         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
17906         simpler strerror.c implementation.
17907         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
17908         Simplify the tests to reflect the simpler strerror implementation.
17909         * modules/strerror (Depends-on): Add intprops.
17910
17911 2007-10-09  Eric Blake  <ebb9@byu.net>
17912
17913         Silence test-fpending.
17914         * modules/fpending-tests (Files): Add wrapper script.
17915         * tests/test-fpending.sh: New file.
17916
17917 2007-10-09  Bruno Haible  <bruno@clisp.org>
17918
17919         * MODULES.html.sh (func_module): Don't create a hyperlink for
17920         function names like 'printf_frexp'.
17921         (Misc): Add crc, memxor.
17922         (Characteristics of floating types): New section.
17923         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
17924         isnanf-nolibm, signbit, trunc, truncf, truncl.
17925         (Enhancements for ISO C 99 functions): New subsection Input/output.
17926         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
17927         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
17928         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
17929         (Compatibility checks for POSIX:2001 functions): Add clock-time.
17930         (Enhancements for POSIX:2001 functions): Add chdir-long.
17931         (File system functions): Add areadlink, chdir-safer, read-file.
17932         Remove cycle-check.
17933         (File system as inode set): New section.
17934         (Date and time): Add gethrxtime.
17935         (Multithreading): Add openmp.
17936         (Internationalization functions): Add localename.
17937         (Unicode string functions): Add unistr/u*-mbsnlen.
17938         (Support for maintaining and releasing projects): Add git-version-gen.
17939         (Lone files): Remove directories.
17940
17941 2007-10-08  Ben Pfaff  <blp@gnu.org>
17942
17943         * lib/xmalloca.h: Fix typo in comment.
17944
17945 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
17946
17947         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
17948         when avoiding problems with integer overflow.  Use a portable test
17949         instead.
17950
17951 2007-10-08  Simon Josefsson  <simon@josefsson.org>
17952
17953         * modules/dummy (License): Change to LGPLv2+.
17954         * modules/float (License): Likewise
17955         * modules/realloc (License): Likewise
17956         * modules/stdlib (License): Likewise
17957
17958 2007-10-07  Bruno Haible  <bruno@clisp.org>
17959
17960         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
17961         * floor.c (TWO_MANT_DIG): Likewise.
17962         * ceil.c (TWO_MANT_DIG): Likewise.
17963         Reported by Ben Pfaff.
17964
17965 2007-10-07  Bruno Haible  <bruno@clisp.org>
17966
17967         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
17968         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
17969         * lib/frexp.c (FUNC): Likewise.
17970         * lib/printf-frexp.h (printf_frexp): Likewise.
17971         * lib/printf-frexpl.h (printf_frexpl): Likewise.
17972         * lib/printf-frexp.c (FUNC): Likewise.
17973         Suggested by Jim Meyering.
17974
17975 2007-10-07  Jim Meyering  <meyering@redhat.com>
17976
17977         Make xnanosleep's integer overflow test more robust.
17978         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
17979         so that gcc-4.3.0 doesn't optimize away this test for overflow.
17980
17981 2007-10-07  Bruno Haible  <bruno@clisp.org>
17982
17983         * NEWS: Mention the license change.
17984
17985         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
17986         abbreviations in the modules files.
17987
17988         Change copyright notice from GPLv2+ to GPLv3+.
17989         * README: Change copyright notice.
17990         * MODULES.html.sh: Likewise.
17991         * build-aux/bootstrap.conf: Likewise.
17992         * build-aux/config.libpath: Likewise.
17993         * build-aux/csharpcomp.sh.in: Likewise.
17994         * build-aux/csharpexec.sh.in: Likewise.
17995         * build-aux/install-reloc: Likewise.
17996         * build-aux/javacomp.sh.in: Likewise.
17997         * build-aux/javaexec.sh.in: Likewise.
17998         * build-aux/ldd.sh.in: Likewise.
17999         * build-aux/reloc-ldflags: Likewise.
18000         * build-aux/relocatable.sh.in: Likewise.
18001         * build-aux/x-to-1.in: Likewise.
18002         * check-module: Likewise.
18003         * config/srclistvars.sh: Likewise.
18004         * gnulib-tool: Likewise.
18005         * lib/acl-internal.h: Likewise.
18006         * lib/acl.c: Likewise.
18007         * lib/acl.h: Likewise.
18008         * lib/acl_entries.c: Likewise.
18009         * lib/areadlink-with-size.c: Likewise.
18010         * lib/areadlink.c: Likewise.
18011         * lib/areadlink.h: Likewise.
18012         * lib/argmatch.c: Likewise.
18013         * lib/argmatch.h: Likewise.
18014         * lib/argp-ba.c: Likewise.
18015         * lib/argp-eexst.c: Likewise.
18016         * lib/argp-fmtstream.c: Likewise.
18017         * lib/argp-fmtstream.h: Likewise.
18018         * lib/argp-fs-xinl.c: Likewise.
18019         * lib/argp-help.c: Likewise.
18020         * lib/argp-namefrob.h: Likewise.
18021         * lib/argp-parse.c: Likewise.
18022         * lib/argp-pin.c: Likewise.
18023         * lib/argp-pv.c: Likewise.
18024         * lib/argp-pvh.c: Likewise.
18025         * lib/argp-xinl.c: Likewise.
18026         * lib/argp.h: Likewise.
18027         * lib/at-func.c: Likewise.
18028         * lib/atanl.c: Likewise.
18029         * lib/backupfile.c: Likewise.
18030         * lib/backupfile.h: Likewise.
18031         * lib/basename.c: Likewise.
18032         * lib/binary-io.h: Likewise.
18033         * lib/byteswap.in.h: Likewise.
18034         * lib/c-stack.c: Likewise.
18035         * lib/c-stack.h: Likewise.
18036         * lib/c-strcasestr.c: Likewise.
18037         * lib/c-strcasestr.h: Likewise.
18038         * lib/c-strstr.c: Likewise.
18039         * lib/c-strstr.h: Likewise.
18040         * lib/c-strtod.c: Likewise.
18041         * lib/calloc.c: Likewise.
18042         * lib/canon-host.c: Likewise.
18043         * lib/canon-host.h: Likewise.
18044         * lib/canonicalize-lgpl.c: Likewise.
18045         * lib/canonicalize.c: Likewise.
18046         * lib/canonicalize.h: Likewise.
18047         * lib/ceil.c: Likewise.
18048         * lib/ceilf.c: Likewise.
18049         * lib/ceill.c: Likewise.
18050         * lib/chdir-long.c: Likewise.
18051         * lib/chdir-long.h: Likewise.
18052         * lib/chdir-safer.c: Likewise.
18053         * lib/chdir-safer.h: Likewise.
18054         * lib/chown.c: Likewise.
18055         * lib/classpath.c: Likewise.
18056         * lib/classpath.h: Likewise.
18057         * lib/clean-temp.c: Likewise.
18058         * lib/clean-temp.h: Likewise.
18059         * lib/cloexec.c: Likewise.
18060         * lib/close-stream.c: Likewise.
18061         * lib/closein.c: Likewise.
18062         * lib/closein.h: Likewise.
18063         * lib/closeout.c: Likewise.
18064         * lib/closeout.h: Likewise.
18065         * lib/concat-filename.c: Likewise.
18066         * lib/copy-file.c: Likewise.
18067         * lib/copy-file.h: Likewise.
18068         * lib/count-one-bits.h: Likewise.
18069         * lib/crc.c: Likewise.
18070         * lib/crc.h: Likewise.
18071         * lib/creat-safer.c: Likewise.
18072         * lib/csharpcomp.c: Likewise.
18073         * lib/csharpcomp.h: Likewise.
18074         * lib/csharpexec.c: Likewise.
18075         * lib/csharpexec.h: Likewise.
18076         * lib/cycle-check.c: Likewise.
18077         * lib/cycle-check.h: Likewise.
18078         * lib/diacrit.c: Likewise.
18079         * lib/diacrit.h: Likewise.
18080         * lib/diffseq.h: Likewise.
18081         * lib/dirchownmod.c: Likewise.
18082         * lib/dirent.in.h: Likewise.
18083         * lib/dirfd.c: Likewise.
18084         * lib/dirfd.h: Likewise.
18085         * lib/dirname.c: Likewise.
18086         * lib/dirname.h: Likewise.
18087         * lib/dummy.c: Likewise.
18088         * lib/dup-safer.c: Likewise.
18089         * lib/dup2.c: Likewise.
18090         * lib/eealloc.h: Likewise.
18091         * lib/error.c: Likewise.
18092         * lib/error.h: Likewise.
18093         * lib/euidaccess.c: Likewise.
18094         * lib/exclude.c: Likewise.
18095         * lib/exclude.h: Likewise.
18096         * lib/execute.c: Likewise.
18097         * lib/execute.h: Likewise.
18098         * lib/exitfail.c: Likewise.
18099         * lib/exitfail.h: Likewise.
18100         * lib/expl.c: Likewise.
18101         * lib/fatal-signal.c: Likewise.
18102         * lib/fatal-signal.h: Likewise.
18103         * lib/fbufmode.c: Likewise.
18104         * lib/fbufmode.h: Likewise.
18105         * lib/fchdir.c: Likewise.
18106         * lib/fchmodat.c: Likewise.
18107         * lib/fchownat.c: Likewise.
18108         * lib/fcntl--.h: Likewise.
18109         * lib/fcntl-safer.h: Likewise.
18110         * lib/fcntl.in.h: Likewise.
18111         * lib/fd-safer.c: Likewise.
18112         * lib/fflush.c: Likewise.
18113         * lib/file-has-acl.c: Likewise.
18114         * lib/file-set.c: Likewise.
18115         * lib/file-type.c: Likewise.
18116         * lib/file-type.h: Likewise.
18117         * lib/fileblocks.c: Likewise.
18118         * lib/filemode.c: Likewise.
18119         * lib/filemode.h: Likewise.
18120         * lib/filename.h: Likewise.
18121         * lib/filenamecat.c: Likewise.
18122         * lib/filenamecat.h: Likewise.
18123         * lib/findprog.c: Likewise.
18124         * lib/findprog.h: Likewise.
18125         * lib/float.in.h: Likewise.
18126         * lib/floor.c: Likewise.
18127         * lib/floorf.c: Likewise.
18128         * lib/floorl.c: Likewise.
18129         * lib/fopen-safer.c: Likewise.
18130         * lib/fopen.c: Likewise.
18131         * lib/fpending.c: Likewise.
18132         * lib/fpending.h: Likewise.
18133         * lib/fprintf.c: Likewise.
18134         * lib/fprintftime.h: Likewise.
18135         * lib/fpucw.h: Likewise.
18136         * lib/fpurge.c: Likewise.
18137         * lib/fpurge.h: Likewise.
18138         * lib/freadable.c: Likewise.
18139         * lib/freadable.h: Likewise.
18140         * lib/freadahead.c: Likewise.
18141         * lib/freadahead.h: Likewise.
18142         * lib/freading.c: Likewise.
18143         * lib/freading.h: Likewise.
18144         * lib/free.c: Likewise.
18145         * lib/freopen.c: Likewise.
18146         * lib/frexp.c: Likewise.
18147         * lib/frexpl.c: Likewise.
18148         * lib/fseek.c: Likewise.
18149         * lib/fseterr.c: Likewise.
18150         * lib/fseterr.h: Likewise.
18151         * lib/fstatat.c: Likewise.
18152         * lib/fstrcmp.c: Likewise.
18153         * lib/fstrcmp.h: Likewise.
18154         * lib/fsusage.c: Likewise.
18155         * lib/fsusage.h: Likewise.
18156         * lib/ftell.c: Likewise.
18157         * lib/ftello.c: Likewise.
18158         * lib/fts-cycle.c: Likewise.
18159         * lib/fts.c: Likewise.
18160         * lib/fts_.h: Likewise.
18161         * lib/full-read.c: Likewise.
18162         * lib/full-read.h: Likewise.
18163         * lib/full-write.c: Likewise.
18164         * lib/full-write.h: Likewise.
18165         * lib/fwritable.c: Likewise.
18166         * lib/fwritable.h: Likewise.
18167         * lib/fwriteerror.c: Likewise.
18168         * lib/fwriteerror.h: Likewise.
18169         * lib/fwriting.c: Likewise.
18170         * lib/fwriting.h: Likewise.
18171         * lib/gcd.c: Likewise.
18172         * lib/gcd.h: Likewise.
18173         * lib/getcwd.c: Likewise.
18174         * lib/getdate.h: Likewise.
18175         * lib/getdate.y: Likewise.
18176         * lib/getdomainname.c: Likewise.
18177         * lib/getdomainname.h: Likewise.
18178         * lib/getgroups.c: Likewise.
18179         * lib/gethostname.c: Likewise.
18180         * lib/gethrxtime.c: Likewise.
18181         * lib/gethrxtime.h: Likewise.
18182         * lib/getloadavg.c: Likewise.
18183         * lib/getndelim2.c: Likewise.
18184         * lib/getndelim2.h: Likewise.
18185         * lib/getnline.c: Likewise.
18186         * lib/getnline.h: Likewise.
18187         * lib/getopt.c: Likewise.
18188         * lib/getopt.in.h: Likewise.
18189         * lib/getopt1.c: Likewise.
18190         * lib/getopt_int.h: Likewise.
18191         * lib/getpagesize.h: Likewise.
18192         * lib/getsubopt.c: Likewise.
18193         * lib/gettime.c: Likewise.
18194         * lib/getugroups.c: Likewise.
18195         * lib/getugroups.h: Likewise.
18196         * lib/getusershell.c: Likewise.
18197         * lib/gl_anyavltree_list1.h: Likewise.
18198         * lib/gl_anyavltree_list2.h: Likewise.
18199         * lib/gl_anyhash_list1.h: Likewise.
18200         * lib/gl_anyhash_list2.h: Likewise.
18201         * lib/gl_anylinked_list1.h: Likewise.
18202         * lib/gl_anylinked_list2.h: Likewise.
18203         * lib/gl_anyrbtree_list1.h: Likewise.
18204         * lib/gl_anyrbtree_list2.h: Likewise.
18205         * lib/gl_anytree_list1.h: Likewise.
18206         * lib/gl_anytree_list2.h: Likewise.
18207         * lib/gl_anytree_oset.h: Likewise.
18208         * lib/gl_anytreehash_list1.h: Likewise.
18209         * lib/gl_anytreehash_list2.h: Likewise.
18210         * lib/gl_array_list.c: Likewise.
18211         * lib/gl_array_list.h: Likewise.
18212         * lib/gl_array_oset.c: Likewise.
18213         * lib/gl_array_oset.h: Likewise.
18214         * lib/gl_avltree_list.c: Likewise.
18215         * lib/gl_avltree_list.h: Likewise.
18216         * lib/gl_avltree_oset.c: Likewise.
18217         * lib/gl_avltree_oset.h: Likewise.
18218         * lib/gl_avltreehash_list.c: Likewise.
18219         * lib/gl_avltreehash_list.h: Likewise.
18220         * lib/gl_carray_list.c: Likewise.
18221         * lib/gl_carray_list.h: Likewise.
18222         * lib/gl_linked_list.c: Likewise.
18223         * lib/gl_linked_list.h: Likewise.
18224         * lib/gl_linkedhash_list.c: Likewise.
18225         * lib/gl_linkedhash_list.h: Likewise.
18226         * lib/gl_list.c: Likewise.
18227         * lib/gl_list.h: Likewise.
18228         * lib/gl_oset.c: Likewise.
18229         * lib/gl_oset.h: Likewise.
18230         * lib/gl_rbtree_list.c: Likewise.
18231         * lib/gl_rbtree_list.h: Likewise.
18232         * lib/gl_rbtree_oset.c: Likewise.
18233         * lib/gl_rbtree_oset.h: Likewise.
18234         * lib/gl_rbtreehash_list.c: Likewise.
18235         * lib/gl_rbtreehash_list.h: Likewise.
18236         * lib/gl_sublist.c: Likewise.
18237         * lib/gl_sublist.h: Likewise.
18238         * lib/group-member.c: Likewise.
18239         * lib/group-member.h: Likewise.
18240         * lib/hard-locale.c: Likewise.
18241         * lib/hard-locale.h: Likewise.
18242         * lib/hash-pjw.c: Likewise.
18243         * lib/hash-pjw.h: Likewise.
18244         * lib/hash-triple.c: Likewise.
18245         * lib/hash.c: Likewise.
18246         * lib/hash.h: Likewise.
18247         * lib/human.c: Likewise.
18248         * lib/human.h: Likewise.
18249         * lib/i-ring.c: Likewise.
18250         * lib/i-ring.h: Likewise.
18251         * lib/idcache.c: Likewise.
18252         * lib/imaxabs.c: Likewise.
18253         * lib/imaxdiv.c: Likewise.
18254         * lib/inet_pton.c: Likewise.
18255         * lib/inet_pton.h: Likewise.
18256         * lib/intprops.h: Likewise.
18257         * lib/inttostr.c: Likewise.
18258         * lib/inttostr.h: Likewise.
18259         * lib/inttypes.in.h: Likewise.
18260         * lib/isapipe.c: Likewise.
18261         * lib/isdir.c: Likewise.
18262         * lib/isnan.c: Likewise.
18263         * lib/isnan.h: Likewise.
18264         * lib/isnanf.c: Likewise.
18265         * lib/isnanf.h: Likewise.
18266         * lib/isnanl-nolibm.h: Likewise.
18267         * lib/isnanl.c: Likewise.
18268         * lib/isnanl.h: Likewise.
18269         * lib/javacomp.c: Likewise.
18270         * lib/javacomp.h: Likewise.
18271         * lib/javaexec.c: Likewise.
18272         * lib/javaexec.h: Likewise.
18273         * lib/javaversion.c: Likewise.
18274         * lib/javaversion.h: Likewise.
18275         * lib/javaversion.java: Likewise.
18276         * lib/lbrkprop.h: Likewise.
18277         * lib/lchmod.h: Likewise.
18278         * lib/lchown.c: Likewise.
18279         * lib/ldexpl.c: Likewise.
18280         * lib/linebreak.c: Likewise.
18281         * lib/linebreak.h: Likewise.
18282         * lib/linebuffer.c: Likewise.
18283         * lib/linebuffer.h: Likewise.
18284         * lib/locale.in.h: Likewise.
18285         * lib/logl.c: Likewise.
18286         * lib/long-options.c: Likewise.
18287         * lib/long-options.h: Likewise.
18288         * lib/lstat.c: Likewise.
18289         * lib/lstat.h: Likewise.
18290         * lib/math.in.h: Likewise.
18291         * lib/mbchar.c: Likewise.
18292         * lib/mbchar.h: Likewise.
18293         * lib/mbfile.h: Likewise.
18294         * lib/mbiter.h: Likewise.
18295         * lib/mbscasecmp.c: Likewise.
18296         * lib/mbscasestr.c: Likewise.
18297         * lib/mbschr.c: Likewise.
18298         * lib/mbscspn.c: Likewise.
18299         * lib/mbslen.c: Likewise.
18300         * lib/mbsncasecmp.c: Likewise.
18301         * lib/mbsnlen.c: Likewise.
18302         * lib/mbspbrk.c: Likewise.
18303         * lib/mbspcasecmp.c: Likewise.
18304         * lib/mbsrchr.c: Likewise.
18305         * lib/mbssep.c: Likewise.
18306         * lib/mbsspn.c: Likewise.
18307         * lib/mbsstr.c: Likewise.
18308         * lib/mbstok_r.c: Likewise.
18309         * lib/mbswidth.c: Likewise.
18310         * lib/mbswidth.h: Likewise.
18311         * lib/mbuiter.h: Likewise.
18312         * lib/memcasecmp.c: Likewise.
18313         * lib/memcasecmp.h: Likewise.
18314         * lib/memchr.c: Likewise.
18315         * lib/memcmp.c: Likewise.
18316         * lib/memcoll.c: Likewise.
18317         * lib/memcoll.h: Likewise.
18318         * lib/memcpy.c: Likewise.
18319         * lib/memrchr.c: Likewise.
18320         * lib/mkancesdirs.c: Likewise.
18321         * lib/mkdir-p.c: Likewise.
18322         * lib/mkdir-p.h: Likewise.
18323         * lib/mkdir.c: Likewise.
18324         * lib/mkdirat.c: Likewise.
18325         * lib/mkdtemp.c: Likewise.
18326         * lib/mkstemp-safer.c: Likewise.
18327         * lib/mkstemp.c: Likewise.
18328         * lib/modechange.c: Likewise.
18329         * lib/modechange.h: Likewise.
18330         * lib/mountlist.c: Likewise.
18331         * lib/mountlist.h: Likewise.
18332         * lib/mpsort.c: Likewise.
18333         * lib/nanosleep.c: Likewise.
18334         * lib/obstack.c: Likewise.
18335         * lib/obstack.h: Likewise.
18336         * lib/open-safer.c: Likewise.
18337         * lib/open.c: Likewise.
18338         * lib/openat-die.c: Likewise.
18339         * lib/openat-priv.h: Likewise.
18340         * lib/openat-proc.c: Likewise.
18341         * lib/openat.c: Likewise.
18342         * lib/openat.h: Likewise.
18343         * lib/pagealign_alloc.c: Likewise.
18344         * lib/pagealign_alloc.h: Likewise.
18345         * lib/physmem.c: Likewise.
18346         * lib/physmem.h: Likewise.
18347         * lib/pipe-safer.c: Likewise.
18348         * lib/pipe.c: Likewise.
18349         * lib/pipe.h: Likewise.
18350         * lib/posixtm.c: Likewise.
18351         * lib/posixtm.h: Likewise.
18352         * lib/posixver.c: Likewise.
18353         * lib/printf-frexp.c: Likewise.
18354         * lib/printf-frexp.h: Likewise.
18355         * lib/printf-frexpl.c: Likewise.
18356         * lib/printf-frexpl.h: Likewise.
18357         * lib/printf.c: Likewise.
18358         * lib/progname.c: Likewise.
18359         * lib/progname.h: Likewise.
18360         * lib/progreloc.c: Likewise.
18361         * lib/putenv.c: Likewise.
18362         * lib/quote.c: Likewise.
18363         * lib/quote.h: Likewise.
18364         * lib/quotearg.c: Likewise.
18365         * lib/quotearg.h: Likewise.
18366         * lib/raise.c: Likewise.
18367         * lib/readline.c: Likewise.
18368         * lib/readline.h: Likewise.
18369         * lib/readlink.c: Likewise.
18370         * lib/readtokens.c: Likewise.
18371         * lib/readtokens.h: Likewise.
18372         * lib/readtokens0.c: Likewise.
18373         * lib/readtokens0.h: Likewise.
18374         * lib/readutmp.c: Likewise.
18375         * lib/readutmp.h: Likewise.
18376         * lib/realloc.c: Likewise.
18377         * lib/relocwrapper.c: Likewise.
18378         * lib/rename-dest-slash.c: Likewise.
18379         * lib/rename.c: Likewise.
18380         * lib/rmdir.c: Likewise.
18381         * lib/rpmatch.c: Likewise.
18382         * lib/safe-read.c: Likewise.
18383         * lib/safe-read.h: Likewise.
18384         * lib/safe-write.c: Likewise.
18385         * lib/safe-write.h: Likewise.
18386         * lib/same-inode.h: Likewise.
18387         * lib/same.c: Likewise.
18388         * lib/same.h: Likewise.
18389         * lib/save-cwd.c: Likewise.
18390         * lib/save-cwd.h: Likewise.
18391         * lib/savedir.c: Likewise.
18392         * lib/savedir.h: Likewise.
18393         * lib/savewd.c: Likewise.
18394         * lib/savewd.h: Likewise.
18395         * lib/search.in.h: Likewise.
18396         * lib/setenv.c: Likewise.
18397         * lib/setenv.h: Likewise.
18398         * lib/settime.c: Likewise.
18399         * lib/sh-quote.c: Likewise.
18400         * lib/sh-quote.h: Likewise.
18401         * lib/sig2str.c: Likewise.
18402         * lib/sig2str.h: Likewise.
18403         * lib/signal.in.h: Likewise.
18404         * lib/signbitd.c: Likewise.
18405         * lib/signbitf.c: Likewise.
18406         * lib/signbitl.c: Likewise.
18407         * lib/sigprocmask.c: Likewise.
18408         * lib/sincosl.c: Likewise.
18409         * lib/sleep.c: Likewise.
18410         * lib/sprintf.c: Likewise.
18411         * lib/sqrtl.c: Likewise.
18412         * lib/stat-time.h: Likewise.
18413         * lib/stdio--.h: Likewise.
18414         * lib/stdio-safer.h: Likewise.
18415         * lib/stdlib--.h: Likewise.
18416         * lib/stdlib-safer.h: Likewise.
18417         * lib/stdlib.in.h: Likewise.
18418         * lib/stpcpy.c: Likewise.
18419         * lib/stpncpy.c: Likewise.
18420         * lib/strchrnul.c: Likewise.
18421         * lib/strcspn.c: Likewise.
18422         * lib/strerror.c: Likewise.
18423         * lib/strftime.c: Likewise.
18424         * lib/strftime.h: Likewise.
18425         * lib/striconveh.c: Likewise.
18426         * lib/striconveh.h: Likewise.
18427         * lib/striconveha.c: Likewise.
18428         * lib/striconveha.h: Likewise.
18429         * lib/stripslash.c: Likewise.
18430         * lib/strnlen1.c: Likewise.
18431         * lib/strnlen1.h: Likewise.
18432         * lib/strtod.c: Likewise.
18433         * lib/strtoimax.c: Likewise.
18434         * lib/strtok_r.c: Likewise.
18435         * lib/strtol.c: Likewise.
18436         * lib/strtoll.c: Likewise.
18437         * lib/strtoul.c: Likewise.
18438         * lib/strtoull.c: Likewise.
18439         * lib/sysexits.in.h: Likewise.
18440         * lib/tempname.c: Likewise.
18441         * lib/tempname.h: Likewise.
18442         * lib/timespec.h: Likewise.
18443         * lib/tls.c: Likewise.
18444         * lib/tls.h: Likewise.
18445         * lib/tmpdir.c: Likewise.
18446         * lib/tmpdir.h: Likewise.
18447         * lib/tmpfile-safer.c: Likewise.
18448         * lib/tmpfile.c: Likewise.
18449         * lib/trigl.c: Likewise.
18450         * lib/trigl.h: Likewise.
18451         * lib/trim.c: Likewise.
18452         * lib/trim.h: Likewise.
18453         * lib/trunc.c: Likewise.
18454         * lib/truncf.c: Likewise.
18455         * lib/truncl.c: Likewise.
18456         * lib/tsearch.c: Likewise.
18457         * lib/unicodeio.c: Likewise.
18458         * lib/unicodeio.h: Likewise.
18459         * lib/unistd--.h: Likewise.
18460         * lib/unistd-safer.h: Likewise.
18461         * lib/unistdio/ulc-fprintf.c: Likewise.
18462         * lib/unistdio/ulc-vfprintf.c: Likewise.
18463         * lib/unlinkdir.c: Likewise.
18464         * lib/unlinkdir.h: Likewise.
18465         * lib/unlocked-io.h: Likewise.
18466         * lib/unsetenv.c: Likewise.
18467         * lib/userspec.c: Likewise.
18468         * lib/utime.c: Likewise.
18469         * lib/utimecmp.c: Likewise.
18470         * lib/utimecmp.h: Likewise.
18471         * lib/utimens.c: Likewise.
18472         * lib/verify.h: Likewise.
18473         * lib/verror.c: Likewise.
18474         * lib/verror.h: Likewise.
18475         * lib/version-etc-fsf.c: Likewise.
18476         * lib/version-etc.c: Likewise.
18477         * lib/version-etc.h: Likewise.
18478         * lib/vfprintf.c: Likewise.
18479         * lib/vprintf.c: Likewise.
18480         * lib/vsprintf.c: Likewise.
18481         * lib/w32spawn.h: Likewise.
18482         * lib/wait-process.c: Likewise.
18483         * lib/wait-process.h: Likewise.
18484         * lib/wcwidth.c: Likewise.
18485         * lib/write-any-file.c: Likewise.
18486         * lib/xalloc-die.c: Likewise.
18487         * lib/xalloc.h: Likewise.
18488         * lib/xasprintf.c: Likewise.
18489         * lib/xgetcwd.c: Likewise.
18490         * lib/xgetcwd.h: Likewise.
18491         * lib/xgetdomainname.c: Likewise.
18492         * lib/xgetdomainname.h: Likewise.
18493         * lib/xgethostname.c: Likewise.
18494         * lib/xmalloc.c: Likewise.
18495         * lib/xmalloca.c: Likewise.
18496         * lib/xmalloca.h: Likewise.
18497         * lib/xmemcoll.c: Likewise.
18498         * lib/xnanosleep.c: Likewise.
18499         * lib/xreadlink.c: Likewise.
18500         * lib/xreadlink.h: Likewise.
18501         * lib/xsetenv.c: Likewise.
18502         * lib/xsetenv.h: Likewise.
18503         * lib/xstriconv.c: Likewise.
18504         * lib/xstriconv.h: Likewise.
18505         * lib/xstrndup.c: Likewise.
18506         * lib/xstrndup.h: Likewise.
18507         * lib/xstrtod.c: Likewise.
18508         * lib/xstrtod.h: Likewise.
18509         * lib/xstrtol-error.c: Likewise.
18510         * lib/xstrtol.c: Likewise.
18511         * lib/xstrtol.h: Likewise.
18512         * lib/xtime.h: Likewise.
18513         * lib/xvasprintf.c: Likewise.
18514         * lib/xvasprintf.h: Likewise.
18515         * lib/yesno.c: Likewise.
18516         * lib/yesno.h: Likewise.
18517         * posix-modules: Likewise.
18518         * tests/test-alloca-opt.c: Likewise.
18519         * tests/test-arcfour.c: Likewise.
18520         * tests/test-arctwo.c: Likewise.
18521         * tests/test-argmatch.c: Likewise.
18522         * tests/test-argp-2.sh: Likewise.
18523         * tests/test-argp.c: Likewise.
18524         * tests/test-arpa_inet.c: Likewise.
18525         * tests/test-array_list.c: Likewise.
18526         * tests/test-array_oset.c: Likewise.
18527         * tests/test-atexit.c: Likewise.
18528         * tests/test-avltree_list.c: Likewise.
18529         * tests/test-avltree_oset.c: Likewise.
18530         * tests/test-avltreehash_list.c: Likewise.
18531         * tests/test-base64.c: Likewise.
18532         * tests/test-binary-io.c: Likewise.
18533         * tests/test-byteswap.c: Likewise.
18534         * tests/test-c-ctype.c: Likewise.
18535         * tests/test-c-strcasecmp.c: Likewise.
18536         * tests/test-c-strcasestr.c: Likewise.
18537         * tests/test-c-strncasecmp.c: Likewise.
18538         * tests/test-c-strstr.c: Likewise.
18539         * tests/test-canonicalize-lgpl.c: Likewise.
18540         * tests/test-canonicalize.c: Likewise.
18541         * tests/test-carray_list.c: Likewise.
18542         * tests/test-ceilf.c: Likewise.
18543         * tests/test-ceill.c: Likewise.
18544         * tests/test-count-one-bits.c: Likewise.
18545         * tests/test-crc.c: Likewise.
18546         * tests/test-dirname.c: Likewise.
18547         * tests/test-fbufmode.c: Likewise.
18548         * tests/test-fcntl.c: Likewise.
18549         * tests/test-fflush.c: Likewise.
18550         * tests/test-floorf.c: Likewise.
18551         * tests/test-floorl.c: Likewise.
18552         * tests/test-fopen.c: Likewise.
18553         * tests/test-fprintf-posix.c: Likewise.
18554         * tests/test-fprintf-posix.h: Likewise.
18555         * tests/test-fpurge.c: Likewise.
18556         * tests/test-freadable.c: Likewise.
18557         * tests/test-freadahead.c: Likewise.
18558         * tests/test-freading.c: Likewise.
18559         * tests/test-freopen.c: Likewise.
18560         * tests/test-frexp.c: Likewise.
18561         * tests/test-frexpl.c: Likewise.
18562         * tests/test-fseek.c: Likewise.
18563         * tests/test-fseeko.c: Likewise.
18564         * tests/test-fseterr.c: Likewise.
18565         * tests/test-fstrcmp.c: Likewise.
18566         * tests/test-ftell.c: Likewise.
18567         * tests/test-ftello.c: Likewise.
18568         * tests/test-fwritable.c: Likewise.
18569         * tests/test-fwriting.c: Likewise.
18570         * tests/test-getaddrinfo.c: Likewise.
18571         * tests/test-getpass.c: Likewise.
18572         * tests/test-gettimeofday.c: Likewise.
18573         * tests/test-hmac-md5.c: Likewise.
18574         * tests/test-hmac-sha1.c: Likewise.
18575         * tests/test-iconv.c: Likewise.
18576         * tests/test-iconvme.c: Likewise.
18577         * tests/test-inttypes.c: Likewise.
18578         * tests/test-isnan.c: Likewise.
18579         * tests/test-isnanf.c: Likewise.
18580         * tests/test-isnanl-nolibm.c: Likewise.
18581         * tests/test-isnanl.c: Likewise.
18582         * tests/test-isnanl.h: Likewise.
18583         * tests/test-ldexpl.c: Likewise.
18584         * tests/test-linked_list.c: Likewise.
18585         * tests/test-linkedhash_list.c: Likewise.
18586         * tests/test-locale.c: Likewise.
18587         * tests/test-localename.c: Likewise.
18588         * tests/test-lock.c: Likewise.
18589         * tests/test-lseek.c: Likewise.
18590         * tests/test-malloca.c: Likewise.
18591         * tests/test-math.c: Likewise.
18592         * tests/test-mbscasecmp.c: Likewise.
18593         * tests/test-mbscasestr1.c: Likewise.
18594         * tests/test-mbscasestr2.c: Likewise.
18595         * tests/test-mbscasestr3.c: Likewise.
18596         * tests/test-mbscasestr4.c: Likewise.
18597         * tests/test-mbschr.c: Likewise.
18598         * tests/test-mbscspn.c: Likewise.
18599         * tests/test-mbsncasecmp.c: Likewise.
18600         * tests/test-mbspbrk.c: Likewise.
18601         * tests/test-mbspcasecmp.c: Likewise.
18602         * tests/test-mbsrchr.c: Likewise.
18603         * tests/test-mbsspn.c: Likewise.
18604         * tests/test-mbsstr1.c: Likewise.
18605         * tests/test-mbsstr2.c: Likewise.
18606         * tests/test-mbsstr3.c: Likewise.
18607         * tests/test-md5.c: Likewise.
18608         * tests/test-memmem.c: Likewise.
18609         * tests/test-netinet_in.c: Likewise.
18610         * tests/test-open.c: Likewise.
18611         * tests/test-printf-frexp.c: Likewise.
18612         * tests/test-printf-frexpl.c: Likewise.
18613         * tests/test-printf-posix.c: Likewise.
18614         * tests/test-printf-posix.h: Likewise.
18615         * tests/test-rbtree_list.c: Likewise.
18616         * tests/test-rbtree_oset.c: Likewise.
18617         * tests/test-rbtreehash_list.c: Likewise.
18618         * tests/test-read-file.c: Likewise.
18619         * tests/test-rijndael.c: Likewise.
18620         * tests/test-search.c: Likewise.
18621         * tests/test-signbit.c: Likewise.
18622         * tests/test-sleep.c: Likewise.
18623         * tests/test-snprintf-posix.c: Likewise.
18624         * tests/test-snprintf-posix.h: Likewise.
18625         * tests/test-snprintf.c: Likewise.
18626         * tests/test-sprintf-posix.c: Likewise.
18627         * tests/test-sprintf-posix.h: Likewise.
18628         * tests/test-stat-time.c: Likewise.
18629         * tests/test-stdbool.c: Likewise.
18630         * tests/test-stdint.c: Likewise.
18631         * tests/test-stdio.c: Likewise.
18632         * tests/test-stdlib.c: Likewise.
18633         * tests/test-stpncpy.c: Likewise.
18634         * tests/test-strcasestr.c: Likewise.
18635         * tests/test-striconv.c: Likewise.
18636         * tests/test-striconveh.c: Likewise.
18637         * tests/test-striconveha.c: Likewise.
18638         * tests/test-string.c: Likewise.
18639         * tests/test-sys_select.c: Likewise.
18640         * tests/test-sys_socket.c: Likewise.
18641         * tests/test-sys_stat.c: Likewise.
18642         * tests/test-sys_time.c: Likewise.
18643         * tests/test-sysexits.c: Likewise.
18644         * tests/test-time.c: Likewise.
18645         * tests/test-tls.c: Likewise.
18646         * tests/test-trunc.c: Likewise.
18647         * tests/test-truncf.c: Likewise.
18648         * tests/test-truncl.c: Likewise.
18649         * tests/test-unistd.c: Likewise.
18650         * tests/test-vasnprintf-posix.c: Likewise.
18651         * tests/test-vasnprintf-posix2.c: Likewise.
18652         * tests/test-vasnprintf.c: Likewise.
18653         * tests/test-vasprintf-posix.c: Likewise.
18654         * tests/test-vasprintf.c: Likewise.
18655         * tests/test-verify.c: Likewise.
18656         * tests/test-vfprintf-posix.c: Likewise.
18657         * tests/test-vprintf-posix.c: Likewise.
18658         * tests/test-vsnprintf-posix.c: Likewise.
18659         * tests/test-vsnprintf.c: Likewise.
18660         * tests/test-vsprintf-posix.c: Likewise.
18661         * tests/test-wchar.c: Likewise.
18662         * tests/test-wctype.c: Likewise.
18663         * tests/test-wcwidth.c: Likewise.
18664         * tests/test-xstrtol.c: Likewise.
18665         * tests/test-xvasprintf.c: Likewise.
18666         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
18667         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
18668         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
18669         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
18670         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
18671         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
18672         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
18673         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
18674         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
18675         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
18676         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
18677         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
18678         * tests/uniname/test-uninames.c: Likewise.
18679         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
18680         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
18681         * tests/unistdio/test-u16-printf1.h: Likewise.
18682         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
18683         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
18684         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
18685         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
18686         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
18687         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
18688         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
18689         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
18690         * tests/unistdio/test-u32-printf1.h: Likewise.
18691         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
18692         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
18693         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
18694         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
18695         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
18696         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
18697         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
18698         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
18699         * tests/unistdio/test-u8-printf1.h: Likewise.
18700         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
18701         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
18702         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
18703         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
18704         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
18705         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
18706         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
18707         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
18708         * tests/unistdio/test-ulc-printf1.h: Likewise.
18709         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
18710         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
18711         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
18712         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
18713         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
18714         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
18715         * tests/uniwidth/test-u16-strwidth.c: Likewise.
18716         * tests/uniwidth/test-u16-width.c: Likewise.
18717         * tests/uniwidth/test-u32-strwidth.c: Likewise.
18718         * tests/uniwidth/test-u32-width.c: Likewise.
18719         * tests/uniwidth/test-u8-strwidth.c: Likewise.
18720         * tests/uniwidth/test-u8-width.c: Likewise.
18721         * tests/uniwidth/test-uc_width.c: Likewise.
18722         * config/srclist-update: Likewise.
18723         (fixlicense): Update to GPLv3+.
18724
18725         Change copyright notice from LGPLv2.1+ to LGPLv3+.
18726         * tests/test-tsearch.c: Change copyright notice.
18727
18728         Change copyright notice from LGPLv2.0+ to LGPLv3+.
18729         * lib/c-strcaseeq.h: Change copyright notice.
18730         * lib/streq.h: Likewise.
18731         * lib/uniconv.h: Likewise.
18732         * lib/uniconv/u-conv-from-enc.h: Likewise.
18733         * lib/uniconv/u-conv-to-enc.h: Likewise.
18734         * lib/uniconv/u-strconv-from-enc.h: Likewise.
18735         * lib/uniconv/u-strconv-to-enc.h: Likewise.
18736         * lib/uniconv/u16-conv-from-enc.c: Likewise.
18737         * lib/uniconv/u16-conv-to-enc.c: Likewise.
18738         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
18739         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
18740         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
18741         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
18742         * lib/uniconv/u32-conv-from-enc.c: Likewise.
18743         * lib/uniconv/u32-conv-to-enc.c: Likewise.
18744         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
18745         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
18746         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
18747         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
18748         * lib/uniconv/u8-conv-from-enc.c: Likewise.
18749         * lib/uniconv/u8-conv-to-enc.c: Likewise.
18750         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
18751         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
18752         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
18753         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
18754         * lib/uniname.h: Likewise.
18755         * lib/uniname/uniname.c: Likewise.
18756         * lib/unistdio.h: Likewise.
18757         * lib/unistdio/u-asnprintf.h: Likewise.
18758         * lib/unistdio/u-asprintf.h: Likewise.
18759         * lib/unistdio/u-printf-args.c: Likewise.
18760         * lib/unistdio/u-printf-args.h: Likewise.
18761         * lib/unistdio/u-printf-parse.h: Likewise.
18762         * lib/unistdio/u-snprintf.h: Likewise.
18763         * lib/unistdio/u-sprintf.h: Likewise.
18764         * lib/unistdio/u-vasprintf.h: Likewise.
18765         * lib/unistdio/u-vsnprintf.h: Likewise.
18766         * lib/unistdio/u-vsprintf.h: Likewise.
18767         * lib/unistdio/u16-asnprintf.c: Likewise.
18768         * lib/unistdio/u16-asprintf.c: Likewise.
18769         * lib/unistdio/u16-printf-parse.c: Likewise.
18770         * lib/unistdio/u16-snprintf.c: Likewise.
18771         * lib/unistdio/u16-sprintf.c: Likewise.
18772         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
18773         * lib/unistdio/u16-u16-asprintf.c: Likewise.
18774         * lib/unistdio/u16-u16-snprintf.c: Likewise.
18775         * lib/unistdio/u16-u16-sprintf.c: Likewise.
18776         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
18777         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
18778         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
18779         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
18780         * lib/unistdio/u16-vasnprintf.c: Likewise.
18781         * lib/unistdio/u16-vasprintf.c: Likewise.
18782         * lib/unistdio/u16-vsnprintf.c: Likewise.
18783         * lib/unistdio/u16-vsprintf.c: Likewise.
18784         * lib/unistdio/u32-asnprintf.c: Likewise.
18785         * lib/unistdio/u32-asprintf.c: Likewise.
18786         * lib/unistdio/u32-printf-parse.c: Likewise.
18787         * lib/unistdio/u32-snprintf.c: Likewise.
18788         * lib/unistdio/u32-sprintf.c: Likewise.
18789         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
18790         * lib/unistdio/u32-u32-asprintf.c: Likewise.
18791         * lib/unistdio/u32-u32-snprintf.c: Likewise.
18792         * lib/unistdio/u32-u32-sprintf.c: Likewise.
18793         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
18794         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
18795         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
18796         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
18797         * lib/unistdio/u32-vasnprintf.c: Likewise.
18798         * lib/unistdio/u32-vasprintf.c: Likewise.
18799         * lib/unistdio/u32-vsnprintf.c: Likewise.
18800         * lib/unistdio/u32-vsprintf.c: Likewise.
18801         * lib/unistdio/u8-asnprintf.c: Likewise.
18802         * lib/unistdio/u8-asprintf.c: Likewise.
18803         * lib/unistdio/u8-printf-parse.c: Likewise.
18804         * lib/unistdio/u8-snprintf.c: Likewise.
18805         * lib/unistdio/u8-sprintf.c: Likewise.
18806         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
18807         * lib/unistdio/u8-u8-asprintf.c: Likewise.
18808         * lib/unistdio/u8-u8-snprintf.c: Likewise.
18809         * lib/unistdio/u8-u8-sprintf.c: Likewise.
18810         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
18811         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
18812         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
18813         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
18814         * lib/unistdio/u8-vasnprintf.c: Likewise.
18815         * lib/unistdio/u8-vasprintf.c: Likewise.
18816         * lib/unistdio/u8-vsnprintf.c: Likewise.
18817         * lib/unistdio/u8-vsprintf.c: Likewise.
18818         * lib/unistdio/ulc-asnprintf.c: Likewise.
18819         * lib/unistdio/ulc-asprintf.c: Likewise.
18820         * lib/unistdio/ulc-printf-parse.c: Likewise.
18821         * lib/unistdio/ulc-snprintf.c: Likewise.
18822         * lib/unistdio/ulc-sprintf.c: Likewise.
18823         * lib/unistdio/ulc-vasnprintf.c: Likewise.
18824         * lib/unistdio/ulc-vasprintf.c: Likewise.
18825         * lib/unistdio/ulc-vsnprintf.c: Likewise.
18826         * lib/unistdio/ulc-vsprintf.c: Likewise.
18827         * lib/unistr.h: Likewise.
18828         * lib/unistr/u-cpy-alloc.h: Likewise.
18829         * lib/unistr/u-cpy.h: Likewise.
18830         * lib/unistr/u-endswith.h: Likewise.
18831         * lib/unistr/u-move.h: Likewise.
18832         * lib/unistr/u-set.h: Likewise.
18833         * lib/unistr/u-startswith.h: Likewise.
18834         * lib/unistr/u-stpcpy.h: Likewise.
18835         * lib/unistr/u-stpncpy.h: Likewise.
18836         * lib/unistr/u-strcat.h: Likewise.
18837         * lib/unistr/u-strcpy.h: Likewise.
18838         * lib/unistr/u-strcspn.h: Likewise.
18839         * lib/unistr/u-strdup.h: Likewise.
18840         * lib/unistr/u-strlen.h: Likewise.
18841         * lib/unistr/u-strncat.h: Likewise.
18842         * lib/unistr/u-strncpy.h: Likewise.
18843         * lib/unistr/u-strnlen.h: Likewise.
18844         * lib/unistr/u-strpbrk.h: Likewise.
18845         * lib/unistr/u-strspn.h: Likewise.
18846         * lib/unistr/u-strstr.h: Likewise.
18847         * lib/unistr/u-strtok.h: Likewise.
18848         * lib/unistr/u16-check.c: Likewise.
18849         * lib/unistr/u16-chr.c: Likewise.
18850         * lib/unistr/u16-cmp.c: Likewise.
18851         * lib/unistr/u16-cpy-alloc.c: Likewise.
18852         * lib/unistr/u16-cpy.c: Likewise.
18853         * lib/unistr/u16-endswith.c: Likewise.
18854         * lib/unistr/u16-mblen.c: Likewise.
18855         * lib/unistr/u16-mbsnlen.c: Likewise.
18856         * lib/unistr/u16-mbtouc-aux.c: Likewise.
18857         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
18858         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
18859         * lib/unistr/u16-mbtouc.c: Likewise.
18860         * lib/unistr/u16-mbtoucr.c: Likewise.
18861         * lib/unistr/u16-move.c: Likewise.
18862         * lib/unistr/u16-next.c: Likewise.
18863         * lib/unistr/u16-prev.c: Likewise.
18864         * lib/unistr/u16-set.c: Likewise.
18865         * lib/unistr/u16-startswith.c: Likewise.
18866         * lib/unistr/u16-stpcpy.c: Likewise.
18867         * lib/unistr/u16-stpncpy.c: Likewise.
18868         * lib/unistr/u16-strcat.c: Likewise.
18869         * lib/unistr/u16-strchr.c: Likewise.
18870         * lib/unistr/u16-strcmp.c: Likewise.
18871         * lib/unistr/u16-strcpy.c: Likewise.
18872         * lib/unistr/u16-strcspn.c: Likewise.
18873         * lib/unistr/u16-strdup.c: Likewise.
18874         * lib/unistr/u16-strlen.c: Likewise.
18875         * lib/unistr/u16-strmblen.c: Likewise.
18876         * lib/unistr/u16-strmbtouc.c: Likewise.
18877         * lib/unistr/u16-strncat.c: Likewise.
18878         * lib/unistr/u16-strncmp.c: Likewise.
18879         * lib/unistr/u16-strncpy.c: Likewise.
18880         * lib/unistr/u16-strnlen.c: Likewise.
18881         * lib/unistr/u16-strpbrk.c: Likewise.
18882         * lib/unistr/u16-strrchr.c: Likewise.
18883         * lib/unistr/u16-strspn.c: Likewise.
18884         * lib/unistr/u16-strstr.c: Likewise.
18885         * lib/unistr/u16-strtok.c: Likewise.
18886         * lib/unistr/u16-to-u32.c: Likewise.
18887         * lib/unistr/u16-to-u8.c: Likewise.
18888         * lib/unistr/u16-uctomb-aux.c: Likewise.
18889         * lib/unistr/u16-uctomb.c: Likewise.
18890         * lib/unistr/u32-check.c: Likewise.
18891         * lib/unistr/u32-chr.c: Likewise.
18892         * lib/unistr/u32-cmp.c: Likewise.
18893         * lib/unistr/u32-cpy-alloc.c: Likewise.
18894         * lib/unistr/u32-cpy.c: Likewise.
18895         * lib/unistr/u32-endswith.c: Likewise.
18896         * lib/unistr/u32-mblen.c: Likewise.
18897         * lib/unistr/u32-mbsnlen.c: Likewise.
18898         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
18899         * lib/unistr/u32-mbtouc.c: Likewise.
18900         * lib/unistr/u32-mbtoucr.c: Likewise.
18901         * lib/unistr/u32-move.c: Likewise.
18902         * lib/unistr/u32-next.c: Likewise.
18903         * lib/unistr/u32-prev.c: Likewise.
18904         * lib/unistr/u32-set.c: Likewise.
18905         * lib/unistr/u32-startswith.c: Likewise.
18906         * lib/unistr/u32-stpcpy.c: Likewise.
18907         * lib/unistr/u32-stpncpy.c: Likewise.
18908         * lib/unistr/u32-strcat.c: Likewise.
18909         * lib/unistr/u32-strchr.c: Likewise.
18910         * lib/unistr/u32-strcmp.c: Likewise.
18911         * lib/unistr/u32-strcpy.c: Likewise.
18912         * lib/unistr/u32-strcspn.c: Likewise.
18913         * lib/unistr/u32-strdup.c: Likewise.
18914         * lib/unistr/u32-strlen.c: Likewise.
18915         * lib/unistr/u32-strmblen.c: Likewise.
18916         * lib/unistr/u32-strmbtouc.c: Likewise.
18917         * lib/unistr/u32-strncat.c: Likewise.
18918         * lib/unistr/u32-strncmp.c: Likewise.
18919         * lib/unistr/u32-strncpy.c: Likewise.
18920         * lib/unistr/u32-strnlen.c: Likewise.
18921         * lib/unistr/u32-strpbrk.c: Likewise.
18922         * lib/unistr/u32-strrchr.c: Likewise.
18923         * lib/unistr/u32-strspn.c: Likewise.
18924         * lib/unistr/u32-strstr.c: Likewise.
18925         * lib/unistr/u32-strtok.c: Likewise.
18926         * lib/unistr/u32-to-u16.c: Likewise.
18927         * lib/unistr/u32-to-u8.c: Likewise.
18928         * lib/unistr/u32-uctomb.c: Likewise.
18929         * lib/unistr/u8-check.c: Likewise.
18930         * lib/unistr/u8-chr.c: Likewise.
18931         * lib/unistr/u8-cmp.c: Likewise.
18932         * lib/unistr/u8-cpy-alloc.c: Likewise.
18933         * lib/unistr/u8-cpy.c: Likewise.
18934         * lib/unistr/u8-endswith.c: Likewise.
18935         * lib/unistr/u8-mblen.c: Likewise.
18936         * lib/unistr/u8-mbsnlen.c: Likewise.
18937         * lib/unistr/u8-mbtouc-aux.c: Likewise.
18938         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
18939         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
18940         * lib/unistr/u8-mbtouc.c: Likewise.
18941         * lib/unistr/u8-mbtoucr.c: Likewise.
18942         * lib/unistr/u8-move.c: Likewise.
18943         * lib/unistr/u8-next.c: Likewise.
18944         * lib/unistr/u8-prev.c: Likewise.
18945         * lib/unistr/u8-set.c: Likewise.
18946         * lib/unistr/u8-startswith.c: Likewise.
18947         * lib/unistr/u8-stpcpy.c: Likewise.
18948         * lib/unistr/u8-stpncpy.c: Likewise.
18949         * lib/unistr/u8-strcat.c: Likewise.
18950         * lib/unistr/u8-strchr.c: Likewise.
18951         * lib/unistr/u8-strcmp.c: Likewise.
18952         * lib/unistr/u8-strcpy.c: Likewise.
18953         * lib/unistr/u8-strcspn.c: Likewise.
18954         * lib/unistr/u8-strdup.c: Likewise.
18955         * lib/unistr/u8-strlen.c: Likewise.
18956         * lib/unistr/u8-strmblen.c: Likewise.
18957         * lib/unistr/u8-strmbtouc.c: Likewise.
18958         * lib/unistr/u8-strncat.c: Likewise.
18959         * lib/unistr/u8-strncmp.c: Likewise.
18960         * lib/unistr/u8-strncpy.c: Likewise.
18961         * lib/unistr/u8-strnlen.c: Likewise.
18962         * lib/unistr/u8-strpbrk.c: Likewise.
18963         * lib/unistr/u8-strrchr.c: Likewise.
18964         * lib/unistr/u8-strspn.c: Likewise.
18965         * lib/unistr/u8-strstr.c: Likewise.
18966         * lib/unistr/u8-strtok.c: Likewise.
18967         * lib/unistr/u8-to-u16.c: Likewise.
18968         * lib/unistr/u8-to-u32.c: Likewise.
18969         * lib/unistr/u8-uctomb-aux.c: Likewise.
18970         * lib/unistr/u8-uctomb.c: Likewise.
18971         * lib/unitypes.h: Likewise.
18972         * lib/uniwidth.h: Likewise.
18973         * lib/uniwidth/cjk.h: Likewise.
18974         * lib/uniwidth/u16-strwidth.c: Likewise.
18975         * lib/uniwidth/u16-width.c: Likewise.
18976         * lib/uniwidth/u32-strwidth.c: Likewise.
18977         * lib/uniwidth/u32-width.c: Likewise.
18978         * lib/uniwidth/u8-strwidth.c: Likewise.
18979         * lib/uniwidth/u8-width.c: Likewise.
18980         * lib/uniwidth/width.c: Likewise.
18981
18982 2007-10-07  Bruno Haible  <bruno@clisp.org>
18983
18984         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
18985         The file is still under LGPL (see modules/inttypes).
18986
18987 2007-10-06  Bruno Haible  <bruno@clisp.org>
18988
18989         * modules/trunc (Dependencies): Add 'extensions'.
18990         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
18991         Reported by Ben Pfaff <blp@gnu.org>.
18992
18993 2007-10-06  Bruno Haible  <bruno@clisp.org>
18994
18995         * modules/freopen-tests: New file.
18996         * tests/test-freopen.c: New file.
18997
18998         * modules/fopen-tests: New file.
18999         * tests/test-fopen.c: New file.
19000
19001         * modules/fopen: New file.
19002         * lib/fopen.c: New file.
19003         * m4/fopen.m4: New file.
19004         * modules/freopen: New file.
19005         * lib/freopen.c: New file.
19006         * m4/freopen.m4: New file.
19007         * lib/stdio.in.h (fopen, freopen): New declarations.
19008         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
19009         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
19010         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
19011         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
19012         * doc/functions/fopen.texi: Mention the 'fopen' module.
19013         * doc/functions/freopen.texi: Mention the 'freopen' module.
19014
19015 2007-10-06  Bruno Haible  <bruno@clisp.org>
19016
19017         * modules/open-tests: New file.
19018         * tests/test-open.c: New file.
19019
19020         * modules/open: New file.
19021         * lib/open.c: New file.
19022         * m4/open.m4: New file.
19023         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
19024         lib/open.c does.
19025         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
19026         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
19027         macros.
19028         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
19029         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
19030         REPLACE_OPEN.
19031         * doc/functions/open.texi: Mention the 'open' module.
19032
19033 2007-10-04  Bruno Haible  <bruno@clisp.org>
19034
19035         * modules/ceill-tests: New file.
19036         * tests/test-ceill.c: New file.
19037
19038         * modules/ceill: New file.
19039         * lib/ceill.c: Replace entire file.
19040         * m4/ceill.m4: New file.
19041         * lib/math.in.h (ceill): Replace declaration.
19042         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
19043         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
19044         * doc/functions/ceill.texi: Mention the 'ceill' module.
19045         * modules/mathl (Files): Remove lib/ceill.c.
19046         (Depends-on): Add ceill.
19047
19048 2007-10-04  Bruno Haible  <bruno@clisp.org>
19049
19050         * modules/ceilf-tests: New file.
19051         * tests/test-ceilf.c: New file.
19052
19053         * modules/ceilf: New file.
19054         * lib/ceil.c: New file.
19055         * lib/ceilf.c: New file.
19056         * m4/ceilf.m4: New file.
19057         * lib/math.in.h (ceilf): New declaration.
19058         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
19059         HAVE_DECL_CEILF.
19060         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
19061         HAVE_DECL_CEILF.
19062         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
19063
19064 2007-10-04  Bruno Haible  <bruno@clisp.org>
19065
19066         * modules/floorl-tests: New file.
19067         * tests/test-floorl.c: New file.
19068
19069         * modules/floorl: New file.
19070         * lib/floorl.c: Replace entire file.
19071         * m4/floorl.m4: New file.
19072         * lib/math.in.h (floorl): Replace declaration.
19073         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
19074         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
19075         * doc/functions/floorl.texi: Mention the 'floorl' module.
19076         * modules/mathl (Files): Remove lib/floorl.c.
19077         (Depends-on): Add floorl.
19078
19079 2007-10-04  Bruno Haible  <bruno@clisp.org>
19080
19081         * modules/floorf-tests: New file.
19082         * tests/test-floorf.c: New file.
19083
19084         * modules/floorf: New file.
19085         * lib/floor.c: New file.
19086         * lib/floorf.c: New file.
19087         * m4/floorf.m4: New file.
19088         * lib/math.in.h (floorf): New declaration.
19089         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
19090         HAVE_DECL_FLOORF.
19091         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
19092         HAVE_DECL_FLOORF.
19093         * doc/functions/floorf.texi: Mention the 'floorf' module.
19094
19095 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
19096             Bruno Haible  <bruno@clisp.org>
19097
19098         Advertise for the Git server instead of the CVS server.
19099         * doc/gnulib-intro.texi (Steady Development): Mention the Git
19100         repository instead of the CVS one.
19101         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
19102         about all VCS systems generically.
19103         * doc/gnulib.texi (Introduction): Capitalize `Git'.
19104
19105 2007-10-04  Bruno Haible  <bruno@clisp.org>
19106
19107         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
19108         means.
19109         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
19110
19111 2007-10-04  Bruno Haible  <bruno@clisp.org>
19112
19113         * modules/truncl-tests: New file.
19114         * tests/test-truncl.c: New file.
19115
19116         * modules/truncl: New file.
19117         * lib/truncl.c: New file.
19118         * m4/truncl.m4: New file.
19119         * lib/math.in.h (truncl): New declaration.
19120         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
19121         HAVE_DECL_TRUNCL.
19122         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
19123         HAVE_DECL_TRUNCL.
19124         * doc/functions/truncl.texi: Mention the 'truncl' module.
19125
19126 2007-10-04  Bruno Haible  <bruno@clisp.org>
19127
19128         * modules/truncf-tests: New file.
19129         * tests/test-truncf.c: New file.
19130
19131         * modules/truncf: New file.
19132         * lib/trunc.c: Make paramerizable through USE_* macros.
19133         * lib/truncf.c: New file.
19134         * m4/truncf.m4: New file.
19135         * lib/math.in.h (truncf): New declaration.
19136         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
19137         HAVE_DECL_TRUNCF.
19138         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
19139         HAVE_DECL_TRUNCF.
19140         * doc/functions/truncf.texi: Mention the 'truncf' module.
19141
19142 2007-10-03  Bruno Haible  <bruno@clisp.org>
19143
19144         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19145         augmentation also for tests modules.
19146         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
19147         * modules/atexit-tests (Makefile.am): Likewise.
19148         * modules/binary-io-tests (Makefile.am): Likewise.
19149         * modules/c-strcase-tests (Makefile.am): Likewise.
19150         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
19151         * modules/canonicalize-tests (Makefile.am): Likewise.
19152         * modules/closein-tests (Makefile.am): Likewise.
19153         * modules/fprintf-posix-tests (Makefile.am): Likewise.
19154         * modules/freadahead-tests (Makefile.am): Likewise.
19155         * modules/fseek-tests (Makefile.am): Likewise.
19156         * modules/fseeko-tests (Makefile.am): Likewise.
19157         * modules/ftell-tests (Makefile.am): Likewise.
19158         * modules/ftello-tests (Makefile.am): Likewise.
19159         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
19160         * modules/isnanl-tests (Makefile.am): Likewise.
19161         * modules/lseek-tests (Makefile.am): Likewise.
19162         * modules/mbscasecmp-tests (Makefile.am): Likewise.
19163         * modules/mbscasestr-tests (Makefile.am): Likewise.
19164         * modules/mbschr-tests (Makefile.am): Likewise.
19165         * modules/mbscspn-tests (Makefile.am): Likewise.
19166         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
19167         * modules/mbspbrk-tests (Makefile.am): Likewise.
19168         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
19169         * modules/mbsrchr-tests (Makefile.am): Likewise.
19170         * modules/mbsspn-tests (Makefile.am): Likewise.
19171         * modules/mbsstr-tests (Makefile.am): Likewise.
19172         * modules/printf-posix-tests (Makefile.am): Likewise.
19173         * modules/snprintf-posix-tests (Makefile.am): Likewise.
19174         * modules/sprintf-posix-tests (Makefile.am): Likewise.
19175         * modules/tsearch-tests (Makefile.am): Likewise.
19176         * modules/uniname/uniname-tests (Makefile.am): Likewise.
19177         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
19178         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
19179         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
19180         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
19181         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
19182         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
19183         * modules/vprintf-posix-tests (Makefile.am): Likewise.
19184         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
19185         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
19186         * modules/xstrtoimax-tests (Makefile.am): Likewise.
19187         * modules/xstrtol-tests (Makefile.am): Likewise.
19188         * modules/xstrtoumax-tests (Makefile.am): Likewise.
19189         * modules/yesno-tests (Makefile.am): Likewise.
19190
19191 2007-10-03  Bruno Haible  <bruno@clisp.org>
19192
19193         * modules/trunc-tests: New file.
19194         * tests/test-trunc.c: New file.
19195
19196         * modules/trunc: New file.
19197         * lib/trunc.c: New file.
19198         * m4/trunc.m4: New file.
19199         * lib/math.in.h (trunc): New declaration.
19200         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
19201         HAVE_DECL_TRUNC.
19202         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
19203         HAVE_DECL_TRUNC.
19204         * doc/functions/trunc.texi: Mention the 'trunc' module.
19205
19206 2007-10-03  Bruno Haible  <bruno@clisp.org>
19207
19208         * tests/test-fpending.c: New file, mostly copied
19209         from coreutils/lib/t-fpending.c.
19210         * modules/fpending-tests: New file.
19211
19212 2007-10-03  Bruno Haible  <bruno@clisp.org>
19213
19214         Port the stdio extensions to QNX (untested).
19215         * lib/fseterr.c (fseterr): Add support for QNX.
19216         * lib/fbufmode.c (fbufmode): Likewise.
19217         * lib/freadable.c (freadable): Likewise.
19218         * lib/fwritable.c (fwritable): Likewise.
19219         * lib/freading.c (freading): Likewise.
19220         * lib/fwriting.c (fwriting): Likewise.
19221         * lib/freadahead.c (freadahed): Likewise.
19222         * lib/fpurge.c (fpurge): Likewise.
19223         * lib/fseeko.c (rpl_fseeko): Likewise.
19224
19225 2007-10-03  Bruno Haible  <bruno@clisp.org>
19226             Jim Meyering  <jim@meyering.net>
19227             Eric Blake  <ebb9@byu.net>
19228
19229         * doc/relocatable.texi: Use @command instead of @program.
19230
19231 2007-10-02  Jim Meyering  <jim@meyering.net>
19232
19233         Perform one more "_.h" -> ".in.h" substitution.
19234         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
19235         instead of unistd_.h here, too.
19236
19237 2007-10-01  Bruno Haible  <bruno@clisp.org>
19238
19239         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
19240         Needed for the alloca-opt module.
19241
19242 2007-09-30  Bruno Haible  <bruno@clisp.org>
19243
19244         * lib/alloca.in.h: Renamed from lib/alloca_.h.
19245         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
19246         alloca_.h.
19247         * lib/argz.in.h: Renamed from lib/argz_.h.
19248         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
19249         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
19250         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
19251         byteswap_.h.
19252         * lib/dirent.in.h: Renamed from lib/dirent_.h.
19253         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
19254         dirent_.h.
19255         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
19256         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
19257         fcntl_.h.
19258         * lib/float.in.h: Renamed from lib/float_.h.
19259         * modules/float (Files, Makefile.am): Use float.in.h instead of
19260         float_.h.
19261         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
19262         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
19263         fnmatch_.h.
19264         * lib/getopt.in.h: Renamed from lib/getopt_.h.
19265         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
19266         getopt_.h.
19267         * lib/glob.in.h: Renamed from lib/glob_.h.
19268         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
19269         * lib/iconv.in.h: Renamed from lib/iconv_.h.
19270         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
19271         iconv_.h.
19272         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
19273         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
19274         inttypes_.h.
19275         * lib/locale.in.h: Renamed from lib/locale_.h.
19276         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
19277         locale_.h.
19278         * lib/math.in.h: Renamed from lib/math_.h.
19279         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
19280         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
19281         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
19282         of netinet_in_.h. Add dependency.
19283         * lib/poll.in.h: Renamed from lib/poll_.h.
19284         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
19285         * lib/search.in.h: Renamed from lib/search_.h.
19286         * modules/search (Files, Makefile.am): Use search.in.h instead of
19287         search_.h.
19288         * lib/signal.in.h: Renamed from lib/signal_.h.
19289         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
19290         _signal.h.
19291         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
19292         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
19293         stdbool_.h.
19294         * lib/stdint.in.h: Renamed from lib/stdint_.h.
19295         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
19296         stdint_.h.
19297         * lib/stdio.in.h: Renamed from lib/stdio_.h.
19298         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
19299         stdio_.h.
19300         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
19301         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
19302         stdlib_.h.
19303         * lib/string.in.h: Renamed from lib/string_.h.
19304         * modules/string (Files, Makefile.am): Use string.in.h instead of
19305         string_.h.
19306         * doc/gnulib-tool.texi (Initial import): Update.
19307         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
19308         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
19309         of sys_select_.h. Add dependency.
19310         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
19311         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
19312         of sys_socket_.h.
19313         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
19314         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
19315         sys_stat_.h.
19316         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
19317         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
19318         sys_time_.h.
19319         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
19320         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
19321         sysexits_.h.
19322         * lib/time.in.h: Renamed from lib/time_.h.
19323         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
19324         * lib/unistd.in.h: Renamed from lib/unistd_.h.
19325         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
19326         unistd_.h.
19327         * lib/wchar.in.h: Renamed from lib/wchar_.h.
19328         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
19329         wchar_.h.
19330         * lib/wctype.in.h: Renamed from lib/wctype_.h.
19331         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
19332         wctype_.h.
19333         * build-aux/bootstrap (slurp): Update.
19334         * lib/.cppi-disable: Update.
19335
19336 2007-09-30  Bruno Haible  <bruno@clisp.org>
19337
19338         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
19339         Needed on BeOS.
19340
19341 2007-09-30  Bruno Haible  <bruno@clisp.org>
19342
19343         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
19344
19345 2007-09-29  Bruno Haible  <bruno@clisp.org>
19346
19347         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
19348
19349 2007-09-29  Bruno Haible  <bruno@clisp.org>
19350
19351         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
19352         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
19353         * build-aux/install-reloc: Compile also areadlink.c.
19354         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
19355
19356 2007-09-29  Bruno Haible  <bruno@clisp.org>
19357
19358         * gnulib-tool (func_emit_initmacro_done): Indentation.
19359
19360 2007-09-29  Bruno Haible  <bruno@clisp.org>
19361
19362         * README: Add CVS checkout update instructions.
19363         Info from Bob Proulx <bob@proulx.com>.
19364
19365 2007-09-28  Eric Blake  <ebb9@byu.net>
19366
19367         Provide move-if-change.
19368         * build-aux/move-if-change: New file, based on best practice
19369         rather than any canonical upstream location.
19370
19371 2007-09-28  Jim Meyering  <jim@meyering.net>
19372
19373         Fix canonicalize loop-detection corner case.
19374         Do not attempt to stat the symlink values stored via seen_triple.
19375         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
19376         on linux-2.6.18, (but not 2.6.22).
19377         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
19378         triple_compare.  The former compares dev,ino,filename, while the latter
19379         would actually stat dirname(filename) when dev and ino were equal.
19380         * lib/hash-triple.c: Install <string.h>.
19381         (STREQ): Define.
19382         (triple_compare_ino_str): New function.
19383         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
19384
19385 2007-09-28  Eric Blake  <ebb9@byu.net>
19386
19387         Enforce that AC_REPLACE_FUNCS files exist.
19388         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
19389         override check for typos.
19390
19391         Fix test-closein on Solaris 10.
19392         * tests/test-closein.c (main): Don't assume stdin can be inherited
19393         closed on all systems.
19394         * tests/test-closein.sh: Likewise.
19395         Reported by Piotr Tarnowski.
19396
19397 2007-09-28  Jim Meyering  <jim@meyering.net>
19398
19399         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
19400
19401 2007-09-27  Jim Meyering  <jim@meyering.net>
19402
19403         canonicalize: Avoid a false-positive cycle failure.
19404         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
19405         Sort.  Remove cycle-check.
19406         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
19407         not cycle-check.h.
19408         (seen_triple): New function.
19409         (canonicalize_filename_mode): Use it instead of cycle-check.
19410         * tests/test-canonicalize.c: Add a test for this bug.
19411         * tests/test-canonicalize.sh: Set up and run the test.
19412
19413         New module, file-set, from coreutils.
19414         * modules/file-set: Define it.
19415         * lib/file-set.c, lib/file-set.h: Implement.
19416
19417         New module, hash-triple, from coreutils.
19418         * modules/hash-triple: Define it.
19419         * lib/hash-triple.c, lib/hash-triple.h: Implement.
19420
19421 2007-09-25  Eric Blake  <ebb9@byu.net>
19422
19423         Fix strerror on Interix.
19424         * lib/string_.h (strerror): Declare replacement.
19425         * doc/functions/strerror.texi (strerror): Document the Interix
19426         shortcoming.
19427         * modules/string (Makefile.am): Support new hooks.
19428         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
19429         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
19430         gl_FUNC_STRERROR_SEPARATE.
19431         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
19432         * lib/strerror.c (rpl_strerror): Provide replacement.
19433         * modules/strerror (Depends-on): Add string.
19434         (configure.ac): Detect use of module.
19435         * tests/test-strerror.c: New file.
19436         * modules/strerror-tests: New test module.
19437         * modules/argp (Depends-on): Add strerror.
19438         * modules/error (Depends-on): Likewise.
19439         Reported by Martin Koeppe.
19440
19441 2007-09-24  Bruno Haible  <bruno@clisp.org>
19442
19443         * README: Update git instructions.
19444
19445 2007-09-24  Eric Blake  <ebb9@byu.net>
19446
19447         Revert fpending breakage from 2007-09-08.
19448         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
19449         __fpending.c.
19450
19451 2007-09-24  Jim Meyering  <jim@meyering.net>
19452
19453         filenamecat.c: Add a test.
19454         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
19455         showing how the function works when DIR is the empty string.
19456
19457 2007-09-21  Simon Josefsson  <simon@josefsson.org>
19458
19459         * tests/test-canonicalize.sh: Turn on executable bit.
19460
19461 2007-09-19  Eric Blake  <ebb9@byu.net>
19462
19463         * README: Update CVS instructions.
19464
19465 2007-09-18  Bruno Haible  <bruno@clisp.org>
19466
19467         * modules/areadlink: New file.
19468         * lib/areadlink.h (areadlink): New declaration.
19469         * lib/areadlink.c: New file, based on lib/xreadlink.c.
19470
19471 2007-09-17  Jim Meyering  <jim@meyering.net>
19472
19473         * lib/savewd.c (ESTALE) [!defined]: Define.
19474         Reported to be required on Interix by Martin Koeppe.
19475
19476 2007-09-17  Bruno Haible  <bruno@clisp.org>
19477
19478         * gnulib-tool (func_version): Use $version.
19479
19480 2007-09-16  Bruno Haible  <bruno@clisp.org>
19481
19482         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
19483         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
19484         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
19485         Reported by Greg Schafer <gschafer@zip.com.au>.
19486
19487 2007-09-15  Bruno Haible  <bruno@clisp.org>
19488
19489         * gnulib-tool (sed): Try a little harder to make bash understand the
19490         alias.
19491         Reported by Bruce Korb <bruce.korb@gmail.com>.
19492
19493 2007-09-13  Eric Blake  <ebb9@byu.net>
19494
19495         * ChangeLog: Remove conflict markers.
19496
19497 2007-09-13  Simon Josefsson  <simon@josefsson.org>
19498
19499         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
19500         Reported by Bruno Haible <bruno@clisp.org>.
19501
19502 2007-09-12  Bruno Haible  <bruno@clisp.org>
19503
19504         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
19505         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
19506         is not defined.
19507
19508 2007-09-12  Eric Blake  <ebb9@byu.net>
19509
19510         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
19511         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
19512         Autoconf definition.
19513         * modules/euidaccess (Depends-on): Add extensions, for
19514         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
19515         * modules/fnmatch (Depends-on): Likewise.
19516         * modules/getaddrinfo (Depends-on): Likewise.
19517         * modules/getdelim (Depends-on): Likewise.
19518         * modules/getline (Depends-on): Likewise.
19519         * modules/getsubopt (Depends-on): Likewise.
19520         * modules/gettext (Depends-on): Likewise.
19521         * modules/group-member (Depends-on): Likewise.
19522         * modules/mbchar (Depends-on): Likewise.
19523         * modules/memmem (Depends-on): Likewise.
19524         * modules/mempcpy (Depends-on): Likewise.
19525         * modules/memrchr (Depends-on): Likewise.
19526         * modules/pagealign_alloc (Depends-on): Likewise.
19527         * modules/readutmp (Depends-on): Likewise.
19528         * modules/stpcpy (Depends-on): Likewise.
19529         * modules/stpncpy (Depends-on): Likewise.
19530         * modules/strchrnul (Depends-on): Likewise.
19531         * modules/strndup (Depends-on): Likewise.
19532         * modules/strsep (Depends-on): Likewise.
19533         * modules/strverscmp (Depends-on): Likewise.
19534         * modules/vasprintf (Depends-on): Likewise.
19535         * modules/wcwidth (Depends-on): Likewise.
19536         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
19537         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
19538         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
19539         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
19540         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
19541         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
19542         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
19543         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
19544         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
19545         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
19546         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
19547         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
19548         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
19549         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
19550         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
19551         * m4/readutmp.m4 (gl_READUTMP): Likewise.
19552         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19553         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
19554         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
19555         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
19556         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
19557         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
19558         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
19559         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
19560         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
19561         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
19562         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
19563         so that lock.m4 can be used in gettext without extensions module.
19564
19565 2007-09-11  Bruno Haible  <bruno@clisp.org>
19566
19567         * m4/isc-posix.m4: Remove file.
19568         Suggested by Eric Blake.
19569
19570 2007-09-11  Eric Blake  <ebb9@byu.net>
19571
19572         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
19573
19574 2007-09-10  Bruno Haible  <bruno@clisp.org>
19575
19576         * posix-modules: Fix typo in error message.
19577         Reported by Matt <mkraai@beckman.com>.
19578
19579 2007-09-09  Bruno Haible  <bruno@clisp.org>
19580
19581         * doc/functions/getdelim.texi: Update list of platforms lacking the
19582         function.
19583         * doc/functions/getline.texi: Likewise.
19584
19585 2007-09-09  Jim Meyering  <jim@meyering.net>
19586
19587         * lib/hash.c (hash_initialize): Detect calloc failure.
19588         Reported by Bruno Haible.
19589
19590 2007-09-09  Bruno Haible  <bruno@clisp.org>
19591
19592         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
19593         malloc or realloc fails.
19594
19595 2007-09-09  Bruno Haible  <bruno@clisp.org>
19596
19597         * modules/getcwd (Depends-on): Add malloc-posix.
19598         * modules/glob (Depends-on): Likewise.
19599         * modules/putenv (Depends-on): Likewise.
19600         * modules/strdup (Depends-on): Likewise.
19601         * modules/getdelim (Depends-on): Add realloc-posix.
19602         * modules/read-file (Depends-on): Likewise.
19603
19604 2007-09-09  Bruno Haible  <bruno@clisp.org>
19605
19606         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
19607         (gl_FUNC_MALLOC_POSIX): Require it.
19608         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
19609         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
19610         * modules/realloc (Files): Add m4/malloc.m4.
19611         * modules/calloc (Files): Likewise.
19612
19613 2007-09-09  Bruno Haible  <bruno@clisp.org>
19614
19615         * modules/malloc-posix: New file.
19616         * modules/malloc (Depends-on): Add malloc-posix.
19617         * lib/malloc.c: Include errno.h.
19618         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
19619         and a POSIX-compatible malloc into a single function. Set ENOMEM
19620         when returning NULL.
19621         * m4/malloc.m4: New file.
19622         * doc/functions/malloc.texi: Mention the malloc-posix module.
19623         * lib/stdlib_.h (malloc): New declaration.
19624         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19625         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
19626         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
19627         and HAVE_MALLOC_POSIX.
19628
19629 2007-09-09  Bruno Haible  <bruno@clisp.org>
19630
19631         * modules/realloc-posix: New file.
19632         * modules/realloc (Depends-on): Add realloc-posix.
19633         * lib/realloc.c: Include errno.h.
19634         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
19635         and a POSIX-compatible realloc into a single function. Set ENOMEM
19636         when returning NULL.
19637         * m4/realloc.m4: New file.
19638         * doc/functions/realloc.texi: Mention the realloc-posix module.
19639         * lib/stdlib_.h (realloc): New declaration.
19640         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19641         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
19642         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
19643         and HAVE_REALLOC_POSIX.
19644
19645 2007-09-09  Bruno Haible  <bruno@clisp.org>
19646
19647         * modules/calloc-posix: New file.
19648         * modules/calloc (Depends-on): Add calloc-posix.
19649         * lib/calloc.c: Include errno.h.
19650         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
19651         and a POSIX-compatible calloc into a single function. Set ENOMEM
19652         when returning NULL.
19653         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
19654         * doc/functions/calloc.texi: Mention the calloc-posix module.
19655         * lib/stdlib_.h (calloc): New declaration.
19656         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19657         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
19658         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
19659         and HAVE_CALLOC_POSIX.
19660
19661 2007-09-09  Bruno Haible  <bruno@clisp.org>
19662
19663         Allow for modules to show an arbitrary notice.
19664         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
19665         * gnulib-tool: New option --extract-notice.
19666         (func_usage): Document it.
19667         (sed_extract_prog): Update.
19668         (func_get_notice): New function.
19669         (func_modules_notice): New function.
19670         (func_import, func_create_testdir): Invoke it.
19671         Suggested by Jim Meyering.
19672
19673 2007-09-09  Bruno Haible  <bruno@clisp.org>
19674
19675         * gnulib-tool: New options --verbose, --quiet.
19676         (func_usage): Document them.
19677         (verbose): New variable.
19678         (func_execute_command): New function.
19679         (func_import): Don't show the module list and the file list if
19680         $verbose < 0.
19681         (func_create_testdir): Likewise. Use func_execute_command.
19682         (func_create_megatestdir): Use func_execute_command.
19683
19684 2007-09-08  Bruno Haible  <bruno@clisp.org>
19685
19686         * gnulib-tool (func_import): Prefer rsync over wget when available,
19687         for fetching the PO files.
19688
19689 2007-09-08  Bruno Haible  <bruno@clisp.org>
19690
19691         * posix-modules: New file. Portions copied from gnulib-tool.
19692         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
19693
19694 2007-09-08  Jim Meyering  <jim@meyering.net>
19695
19696         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
19697         * lib/fpending.h: Rename from __fpending.h.
19698         * lib/fpending.c: Rename from __fpending.c.
19699         Include "fpending.h", not "__fpending.h".
19700         * lib/__fpending.h, lib/__fpending.c: Remove files.
19701         * modules/fpending (Files): Reflect new file names.
19702         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
19703
19704 2007-09-08  Bruno Haible  <bruno@clisp.org>
19705
19706         * m4/inttypes-h.m4: Remove stub file.
19707
19708 2007-09-07  Simon Josefsson  <simon@josefsson.org>
19709
19710         * doc/headers/stdint.texi: Discuss #include_next issue.
19711
19712 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
19713
19714         * build-aux/bootstrap: Remove obsolete comment about wget --help.
19715
19716 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19717
19718         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
19719         in variable name.
19720
19721 2007-09-03  Jim Meyering  <jim@meyering.net>
19722
19723         New module: git-version-gen.
19724         * modules/git-version-gen: New file.
19725
19726         Import changes from coreutils for bootstrap script.
19727
19728         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
19729
19730         bootstrap: uses rsync to download the .po files
19731         * build-aux/bootstrap (po_download_command_format): New global.
19732         (download_po_files): Use rsync.
19733         (update_po_files): Don't remove .po files after download,
19734         so future rsync runs can take advantage of the copies.
19735
19736         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
19737
19738         Solve the unnecessary-.po-file-regeneration problem once and for all.
19739         * build-aux/bootstrap (download_po_files): New function, renamed from
19740         get_translations.  Now, downloads, but doesn't update LINGUAS.
19741         (update_po_files): New function.
19742
19743         bootstrap: Ignore more.
19744         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
19745         uniwidth to e.g., lib/.gitignore.
19746         (slurp): Handle the sys_stat_.h -> sys mapping, too.
19747
19748         * build-aux/bootstrap: New setting: vc_ignore.
19749         (insert_sorted_if_absent): Create $file if absent.
19750         Adapt to new, possibly empty, list: $vc_ignore.
19751
19752         bootstrap: generate more ignorable names
19753         * build-aux/bootstrap (slurp): When generating ignorable names,
19754         also map .sin to .sed, .gperf to .c, and .y to .c.
19755
19756 2007-09-03  Jim Meyering  <jim@meyering.net>
19757
19758         * build-aux/git-version-gen: New file, from coreutils.  For details, see
19759         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
19760
19761 2007-09-02  Bruno Haible  <bruno@clisp.org>
19762
19763         Fix mis-recognition of 'mcs' on QNX 6.
19764         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
19765         output contains the string "Mono".
19766         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
19767         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
19768
19769 2007-09-01  Bruno Haible  <bruno@clisp.org>
19770
19771         Fix collision between uniwidth/* and linebreak modules.
19772         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
19773         u32_width): Remove declarations.
19774         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
19775         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
19776         streq3, streq2, streq1, streq0): Remove functions.
19777         (STREQ): Remove macro.
19778         (is_cjk_encoding): Remove function.
19779         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
19780         (uc_width, u8_width, u16_width, u32_width): Remove functions.
19781         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
19782         * NEWS: Document the change.
19783
19784 2007-09-01  Bruno Haible  <bruno@clisp.org>
19785
19786         * lib/streq.h: Add double-inclusion guard.
19787
19788 2007-09-01  Karl Berry  <karl@gnu.org>
19789
19790         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
19791
19792 2007-08-28  Jim Meyering  <jim@meyering.net>
19793
19794         Rename mreadlink_with_size to areadlink_with_size.
19795         * NEWS: Document the change.
19796         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
19797         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
19798         * lib/mreadlink.h: Rename this to...
19799         * lib/areadlink.h: ...this.
19800         * modules/mreadlink-with-size: Rename this to...
19801         * modules/areadlink-with-size: ...this.
19802         * lib/canonicalize.c: Reflect the renaming.
19803         * modules/canonicalize: Likewise.
19804
19805 2007-08-26  Bruno Haible  <bruno@clisp.org>
19806
19807         * gnulib-tool (func_import): When deciding which files to remove,
19808         consider also dangling symbolic links.
19809         Reported by Eric Blake.
19810
19811 2007-08-26  Bruno Haible  <bruno@clisp.org>
19812
19813         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
19814
19815 2007-08-23  Simon Josefsson  <simon@josefsson.org>
19816
19817         * lib/readline.c: Don't include getline.h, the prototype is now
19818         found in stdio.h.
19819
19820 2007-08-23  Jim Meyering  <jim@meyering.net>
19821
19822         Getdelim touchup.
19823         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
19824         around the funlockfile call, since funlockfile never sets errno.
19825         Don't set errno upon failed realloc.
19826
19827 2007-08-22  Eric Blake  <ebb9@byu.net>
19828
19829         Getline touchups.
19830         * lib/getdelim.c (getdelim): Revert regression that required *n to
19831         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
19832         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
19833         getdelim, rather than whether implementation is missing.
19834         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
19835         * lib/stdio_.h (getline): Also declare if replacement is
19836         required.
19837         * doc/functions/getdelim.texi: New file.
19838         * doc/functions/getline.texi: Likewise.
19839         * doc/gnulib.texi (Function Substitutes): Add new files.
19840         Reported by Bruno Haible.
19841
19842 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
19843
19844         * users.txt: Add Guile.
19845
19846 2007-08-22  Eric Blake  <ebb9@byu.net>
19847
19848         * tests/test-getdelim.c (main): Use remove, not unlink.
19849         * tests/test-getline.c (main): Likewise.
19850
19851         Move getline and getdelim into stdio.h, per POSIX 200x.
19852         * modules/getline (Files): Remove getline.h.
19853         (Depends-on): Add stdio.
19854         (configure.ac): Add module indicator.
19855         * modules/getdelim (Files): Remove getdelim.h.
19856         (Depends-on): Add stdio.
19857         (configure.ac): Add module indicator.
19858         * modules/stdio (Makefile.am): Work with new indicators.
19859         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
19860         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
19861         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
19862         * lib/getdelim.h: Delete.
19863         * lib/getline.h: Delete.
19864         * lib/stdio_.h (getdelim, getline): Declare.
19865         * modules/getdelim-tests: New module.
19866         * modules/getline-tests: Likewise.
19867         * tests/test-getdelim.c: New file.
19868         * tests/test-getline.c: Likewise.
19869         * NEWS: Document the change.
19870         * lib/getline.c: Update choice of header.
19871         * lib/csharpcomp.c: Likewise.
19872         * lib/getpass.c: Likewise.
19873         * lib/javacomp.c: Likewise.
19874         * lib/javaversion.c: Likewise.
19875         * lib/yesno.c: Likewise.
19876         * lib/getdelim.c: Likewise.
19877         (getdelim): Set errno on failure, and avoid memory leak.
19878
19879 2007-08-19  Bruno Haible  <bruno@clisp.org>
19880
19881         * modules/closein (Depends-on): Add freadahead.
19882         * lib/closein.c: Include freadahead.h.
19883         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
19884         is zero.
19885
19886 2007-08-19  Bruno Haible  <bruno@clisp.org>
19887
19888         * modules/freadahead-tests: New file.
19889         * tests/test-freadahead.sh: New file.
19890         * tests/test-freadahead.c: New file.
19891
19892         * modules/freadahead: New file.
19893         * lib/freadahead.h: New file.
19894         * lib/freadahead.c: New file.
19895         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
19896         fbufmode, fpurge, freadable, fwritable.
19897
19898 2007-08-19  Eric Blake  <ebb9@byu.net>
19899
19900         Test yesno in combination with closein.
19901         * lib/yesno.c (yesno): Document use of stdin.
19902         * modules/yesno-tests (Files): New module.
19903         * tests/test-yesno.c (main): New file.
19904         * tests/test-yesno.sh: Likewise.
19905
19906 2007-08-19  Bruno Haible  <bruno@clisp.org>
19907
19908         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
19909         * lib/fseeko.c (rpl_fseeko): Likewise.
19910         * lib/fseterr.c (fseterr): Likewise.
19911
19912 2007-08-19  Bruno Haible  <bruno@clisp.org>
19913
19914         * tests/test-lseek.c (main): Disable a test for BeOS.
19915         * doc/functions/lseek.texi: Document the BeOS bug.
19916
19917 2007-08-19  Bruno Haible  <bruno@clisp.org>
19918             Eric Blake  <ebb9@byu.net>
19919
19920         * lib/lseek.c: Include <sys/stat.h>.
19921         (rpl_lseek): Add workaround code also for Unix platforms.
19922         Needed for BeOS.
19923         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
19924         * doc/functions/lseek.texi: Document BeOS definiency.
19925
19926 2007-08-18  Bruno Haible  <bruno@clisp.org>
19927
19928         * modules/fstrcmp-tests: New file.
19929         * tests/test-fstrcmp.c: New file.
19930
19931 2007-08-18  Bruno Haible  <bruno@clisp.org>
19932
19933         * modules/fstrcmp: New file, from GNU gettext with modifications.
19934         * lib/fstrcmp.h: New file, from GNU gettext.
19935         * lib/fstrcmp.c: New file, from GNU gettext.
19936         * MODULES.html.sh (String handling): Add fstrcmp.
19937
19938 2007-08-18  Bruno Haible  <bruno@clisp.org>
19939
19940         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
19941         'bool'.
19942         (diag, compareseq): Remove const from the ctxt argument.
19943         (USE_HEURISTIC): Undefine at the end.
19944
19945 2007-08-18  Jim Meyering  <jim@meyering.net>
19946
19947         New file: lib/idcache.h
19948         * NEWS: Mention the addition.
19949         * modules/idcache (Files): Add lib/idcache.h
19950         * lib/idcache.c: Include "idcache.h".
19951         Don't include <sys/types.h>.
19952         Add a FIXME comment.
19953         Move file-scoped "static" declarations to the top.
19954         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
19955
19956 2007-08-17  Bruno Haible  <bruno@clisp.org>
19957         and Paul Eggert  <eggert@cs.ucla.edu>
19958
19959         * MODULES.html.sh: Add diffseq.
19960         * modules/diffseq: New file.
19961         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
19962         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
19963
19964 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19965
19966         Import changes from coreutils for bootstrap script.
19967
19968         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
19969
19970         * build-aux/bootstrap (slurp): Work even in environments where
19971         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
19972         current code does not slurp files whose names start with ".", and
19973         this looks like it might be a troublesome area.
19974
19975         2007-07-11  Jim Meyering  <jim@meyering.net>
19976
19977         If there's a GPL vN copyright comment, require that N == 3.
19978
19979         2007-07-08  Jim Meyering  <jim@meyering.net>
19980
19981         Run the coreutils-specific code only if tests/Makefile.am.in exists.
19982         * build-aux/bootstrap (mam_template): Move definition out of loop.
19983
19984         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
19985
19986         * build-aux/bootstrap (symlink_to_dir): Rename function from
19987         symlink_to_gnulib.  Add a directory parameter.  Update all
19988         callers.
19989         (cp_mark_as_generated): Also check for -- and link to -- files in
19990         gl/.
19991
19992         2007-07-08  Jim Meyering  <jim@meyering.net>
19993
19994         Adapt to deeper hierarchy in gnulib.
19995         * build-aux/bootstrap (symlink_to_dir): If the destination
19996         directory doesn't exist, create it. This is required at least for
19997         "lib/uniwidth/cjk.h".
19998
19999         2007-05-15  Jim Meyering  <jim@meyering.net>
20000
20001         * build-aux/bootstrap: Now that generated Makefile.am files
20002         are no longer under version control, they must be created at
20003         bootstrap time.
20004
20005 2007-08-14  Ben Pfaff  <blp@gnu.org>
20006
20007         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
20008
20009 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
20010
20011         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
20012         given the changes below.
20013         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
20014         even on hosts that have padding bits beyond the supported 64.
20015
20016 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
20017
20018         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
20019         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
20020         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
20021         depends on it.
20022         (xstrtol_error): Remove.
20023         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
20024         but with a different signature.
20025         (ATTRIBUTE_NORETURN, __attribute__): New macros.
20026         * lib/xstrtol-error.c: Include exitfail.h.
20027         (xstrtol_fatal): New function, with a different signature from the
20028         old xstrtol_error, so that the caller need not worry about passing
20029         in an exit status, or about storage management of the option argument.
20030         (xstrtol_error): Now a static function.  Redo signature to
20031         implement xstrtol_fatal.  Output the correct number of hyphens in
20032         front of the option so that the caller need not worry about
20033         storage management.
20034         (N_): New macro.
20035         (_): Remove; not used now.
20036         * modules/xstrtol: Depend on getopt.
20037         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
20038         of old STRTOL_FATAL_ERROR macro.
20039         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
20040         of test program.
20041         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
20042         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
20043
20044 2007-08-08  Eric Blake  <ebb9@byu.net>
20045
20046         * lib/xstrtol-error.c: Add missing include.
20047
20048         Move xstrtol messages into gnulib domain, when --pobase is used.
20049         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
20050         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
20051         * modules/xstrtol (Files): Distribute new file.
20052         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
20053         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
20054         * tests/test-xstrtol.c: ...into new file.
20055         * tests/test-xstrtoul.c: Also test xstrtoul.
20056         * tests/test-xstrtoimax.c: Also test xstrtoimax.
20057         * tests/test-xstrtoumax.c: Also test xstrtoumax.
20058         * tests/test-xstrtol.sh: Drive the tests.
20059         * tests/test-xstrtoimax.sh: Likewise.
20060         * tests/test-xstrtoumax.sh: Likewise.
20061         * modules/xstrtol-tests: New module.
20062         * modules/xstrtoimax-tests: Likewise.
20063         * modules/xstrtoumax-tests: Likewise.
20064
20065 2007-08-08  Jim Meyering  <jim@meyering.net>
20066
20067         New function: mfile_name_concat.
20068         * lib/filenamecat.c (mfile_name_concat): New function, just like
20069         file_name_concat, but return NULL upon failure rather than exiting
20070         with a diagnostic.
20071         * lib/filenamecat.h: Declare it.
20072
20073 2007-08-07  Bruno Haible  <bruno@clisp.org>
20074
20075         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
20076         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
20077         warning from gcc.
20078         Reported by Eric Blake.
20079
20080 2007-08-07  Simon Josefsson  <simon@josefsson.org>
20081
20082         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
20083         * modules/crypto/arcfour (License): Likewise.
20084         * modules/crypto/des-tests (License): Likewise.
20085         * modules/crypto/gc-arctwo-tests (License): Likewise.
20086         * modules/crypto/gc-des-tests (License): Likewise.
20087         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
20088         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
20089         * modules/crypto/gc-md2-tests (License): Likewise.
20090         * modules/crypto/gc-md4-tests (License): Likewise.
20091         * modules/crypto/gc-md5-tests (License): Likewise.
20092         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
20093         * modules/crypto/gc-rijndael-tests (License): Likewise.
20094         * modules/crypto/gc-sha1-tests (License): Likewise.
20095         * modules/crypto/gc-tests (License): Likewise.
20096         * modules/crypto/hmac-md5 (License): Likewise.
20097         * modules/crypto/hmac-sha1 (License): Likewise.
20098         * modules/crypto/md2-tests (License): Likewise.
20099         * modules/crypto/md4-tests (License): Likewise.
20100         * modules/crypto/md5 (License): Likewise.
20101         * modules/crypto/rijndael (License): Likewise.
20102         * modules/crypto/sha1 (License): Likewise.
20103         * modules/memxor (License): Likewise.
20104
20105 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20106         and Bruno Haible  <bruno@clisp.org>
20107
20108         * NEWS: Describe interface changes to human, xstrtol.
20109         * lib/human.h: Include <xstrtol.h>.
20110         (human_options): Return enum strtol_error, not int.  Remove
20111         bool arg; take int * instead.
20112         * lib/human.c: Don't include "gettext.h".
20113         (_): Remove; no longer used.
20114         Don't include <xstrtol.h>, since human.h does it.
20115         (human_options): Adjust to abovementioned interface changes.
20116         Do not report error to stderr; that's now the caller's
20117         responsibility.
20118         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
20119         interface change.
20120         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
20121         Str, Argument_type_string.  All uses changed.  Put " argument"
20122         in diagnostics to make them clearer.  Change wording of suffix
20123         message for clarity.
20124         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
20125         Argument_type_string.
20126         (STRTOL_FATAL_WARN): Remove; no longer used.
20127         * modules/human (Depends-on): Remove gettext-h.
20128
20129 2007-08-06  Simon Josefsson  <simon@josefsson.org>
20130
20131         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
20132
20133 2007-07-31  Bruno Haible  <bruno@clisp.org>
20134
20135         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
20136         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
20137         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
20138
20139 2007-07-31  Bruno Haible  <bruno@clisp.org>
20140
20141         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
20142         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
20143
20144 2007-07-30  Bruno Haible  <bruno@clisp.org>
20145
20146         * modules/base64 (License): Use the synonymous term "LGPLv2+".
20147         * modules/c-ctype (License): Likewise.
20148         * modules/c-strcase (License): Likewise.
20149         * modules/check-version (License): Likewise.
20150         * modules/iconv (License): Likewise.
20151         * modules/iconv_open (License): Likewise.
20152         * modules/read-file (License): Likewise.
20153         * modules/striconv (License): Likewise.
20154         * modules/strverscmp (License): Likewise.
20155         * modules/vasprintf (License): Likewise.
20156         * modules/crypto/des (License): Likewise.
20157         * modules/crypto/gc (License): Likewise.
20158         * modules/crypto/gc-arcfour (License): Likewise.
20159         * modules/crypto/gc-arctwo (License): Likewise.
20160         * modules/crypto/gc-des (License): Likewise.
20161         * modules/crypto/gc-hmac-md5 (License): Likewise.
20162         * modules/crypto/gc-hmac-sha1 (License): Likewise.
20163         * modules/crypto/gc-md2 (License): Likewise.
20164         * modules/crypto/gc-md4 (License): Likewise.
20165         * modules/crypto/gc-md5 (License): Likewise.
20166         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
20167         * modules/crypto/gc-random (License): Likewise.
20168         * modules/crypto/gc-rijndael (License): Likewise.
20169         * modules/crypto/gc-sha1 (License): Likewise.
20170         * modules/crypto/md2 (License): Likewise.
20171         * modules/crypto/md4 (License): Likewise.
20172
20173 2007-07-30  Jim Meyering  <jim@meyering.net>
20174
20175         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
20176         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
20177         it has valid stat data.  This bug would cause du not to count the
20178         sizes of inaccessible directories.
20179         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
20180         in <http://bugzilla.redhat.com/250077>.
20181
20182 2007-07-25  Peter O'Gorman  <peter@pogma.com>
20183             Bruno Haible  <bruno@clisp.org>
20184
20185         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
20186         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
20187         #include_next, gives a diagnostic about it, but reports no error in
20188         the exit code.
20189         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
20190
20191 2007-07-24  Ben Pfaff  <blp@gnu.org>
20192
20193         Improve name: "count-one-bits" is better than "popcount".
20194         * MODULES.html.sh: Update name.
20195         * lib/popcount.h: Renamed lib/count-one-bits.h.
20196         (popcount): Renamed count_one_bits.
20197         (popcountl): Renamed count_one_bits_l.
20198         (popcountll): Renamed count_one_bits_ll.
20199         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
20200         * modules/popcount: Renamed module/count-one-bits.
20201         * modules/popcount-tests: Renamed module/count-one-bits-tests.
20202         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
20203
20204 2007-07-23  Ben Pfaff  <blp@gnu.org>
20205
20206         * lib/popcount.h (popcount32): Reduce size of constants, to allow
20207         better code generation, and add U to large constants to avoid
20208         warnings, in non-GCC case.
20209         Suggested by Bruno Haible.
20210
20211 2007-07-23  Ben Pfaff  <blp@gnu.org>
20212
20213         * lib/popcount.h: Use verify_true instead of if...abort.
20214         * modules/popcount: Depend on verify module.
20215         Suggested by Jim Meyering.
20216
20217 2007-07-23  Bruno Haible  <bruno@clisp.org>
20218
20219         * gnulib-tool (func_import): Create a .cvsignore file also when the
20220         directory is not yet in CVS but the toplevel directory is. When
20221         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
20222         Reported by Karl Berry.
20223
20224 2007-07-22  Ben Pfaff  <blp@gnu.org>
20225
20226         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
20227         case.
20228         Suggested by Eric Blake.
20229
20230 2007-07-22  Ben Pfaff  <blp@gnu.org>
20231
20232         New module: popcount.
20233         * MODULES.html.sh: Add popcount.
20234         * modules/popcount: New file.
20235         * modules/popcount-tests: New file.
20236         * tests/test-popcount.c: New file.
20237         * lib/popcount.h: New file.
20238         * m4/popcount.m4: New file.
20239
20240 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20241
20242         * build-aux/announce-gen: Update to GPLv3.
20243
20244         * build-aux/config.guess: Update from config.
20245
20246 2007-07-21  Bruno Haible  <bruno@clisp.org>
20247
20248         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
20249         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
20250
20251 2007-07-20  Jim Meyering  <jim@meyering.net>
20252
20253         * check-module: Diagnose a self-dependency.
20254
20255 2007-07-19  Bruno Haible  <bruno@clisp.org>
20256
20257         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
20258         empty.
20259         Reported by Eric Blake.
20260
20261 2007-07-18  Bruno Haible  <bruno@clisp.org>
20262
20263         * gnulib-tool: New options --po-base, --po-domain.
20264         (func_usage): Document them.
20265         (pobase, po_domain): New variables.
20266         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
20267         DEFAULT_TEXT_DOMAIN.
20268         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
20269         (func_import): Consider pobase and po_domain. Create a po/ directory.
20270         (func_create_testdir): Set pobase and po_domain to empty.
20271         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
20272         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
20273
20274 2007-07-18  Bruno Haible  <bruno@clisp.org>
20275
20276         * gnulib-tool (func_get_automake_snippet): Synthesize also an
20277         EXTRA_DIST augmentation for files in build-aux/.
20278
20279 2007-07-16  Bruno Haible  <bruno@clisp.org>
20280
20281         * modules/lseek (License): Use the synonymous term "LGPLv2+".
20282         * modules/getdelim (License): Likewise.
20283
20284 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20285
20286         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
20287         * modules/d-type (License): Likewise.
20288         * modules/extensions (License): Likewise.
20289         * modules/fnmatch (License): Likewise.
20290         * modules/fseeko (License): Likewise.
20291         * modules/getaddrinfo (License): Likewise.
20292         * modules/getline (License): Likewise.
20293         * modules/getlogin_r (License): Likewise.
20294         * modules/getpass (License): Likewise.
20295         * modules/gettimeofday (License): Likewise.
20296         * modules/glob (License): Likewise.
20297         * modules/inet_ntop (License): Likewise.
20298         * modules/malloc (License): Likewise.
20299         * modules/malloca (License): Likewise.
20300         * modules/memmem (License): Likewise.
20301         * modules/mempcpy (License): Likewise.
20302         * modules/memset (License): Likewise.
20303         * modules/minmax (License): Likewise.
20304         * modules/mktime (License): Likewise.
20305         * modules/netinet_in (License): Likewise.
20306         * modules/pathmax (License): Likewise.
20307         * modules/poll (License): Likewise.
20308         * modules/regex (License): Likewise.
20309         * modules/snprintf (License): Likewise.
20310         * modules/stdbool (License): Likewise.
20311         * modules/stdint (License): Likewise.
20312         * modules/stdio (License): Likewise.
20313         * modules/strcase (License): Likewise.
20314         * modules/strcasestr (License): Likewise.
20315         * modules/strdup (License): Likewise.
20316         * modules/string (License): Likewise.
20317         * modules/strndup (License): Likewise.
20318         * modules/strnlen (License): Likewise.
20319         * modules/strpbrk (License): Likewise.
20320         * modules/strptime (License): Likewise.
20321         * modules/strsep (License): Likewise.
20322         * modules/sys_select (License): Likewise.
20323         * modules/sys_socket (License): Likewise.
20324         * modules/sys_stat (License): Likewise.
20325         * modules/sys_time (License): Likewise.
20326         * modules/time (License): Likewise.
20327         * modules/time_r (License): Likewise.
20328         * modules/timegm (License): Likewise.
20329         * modules/unistd (License): Likewise.
20330         * modules/vsnprintf (License): Likewise.
20331         * modules/wctype (License): Likewise.
20332
20333 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20334
20335         * modules/argz (License): LGPLv2+.
20336
20337 2007-07-15  Karl Berry  <karl@gnu.org>
20338
20339         * doc/gnulib.texi: revise node structure per new fdl.texi.
20340
20341 2007-07-14  Bruno Haible  <bruno@clisp.org>
20342
20343         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
20344         the output file.
20345         * lib/uniname/uninames.h: Regenerated.
20346
20347 2007-07-14  Karl Berry  <karl@gnu.org>
20348
20349         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
20350         omitting sectioning and index commands.
20351
20352 2007-07-13  Bruno Haible  <bruno@clisp.org>
20353
20354         New gnulib-tool option --more-symlinks.
20355         * gnulib-tool (func_usage): Document --more-symlinks.
20356         (do_copyrights): New variable.
20357         Recognize option --more-symlinks.
20358         (func_import): Don't add a copyright notice transform to
20359         sed_transform_lib_file if do_copyrights is empty.
20360
20361 2007-07-13  Bruno Haible  <bruno@clisp.org>
20362
20363         * lib/vasnprintf.c (decimal_point_char): Define also if
20364         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
20365         && !NEED_PRINTF_DIRECTIVE_A.
20366         Reported by Clemens Koller <clemens.koller@anagramm.de> via
20367         Gary V. Vaughan <gary@gnu.org>.
20368
20369 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
20370
20371         * lib/inttypes_.h: Undo previous change, since it was fixed
20372         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
20373
20374 2007-07-13  Bruno Haible  <bruno@clisp.org>
20375
20376         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
20377         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
20378
20379 2007-07-13  Jim Meyering  <jim@meyering.net>
20380
20381         df: Don't fail for Tru64's "file-on-file mount".
20382         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
20383         so we fall through and use statfs instead.  Details here:
20384         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
20385         Reported by Albert Chin.
20386
20387 2007-07-13  Bruno Haible  <bruno@clisp.org>
20388
20389         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
20390         * modules/configmake (License): Likewise.
20391         * modules/gettext (License): Likewise.
20392         * modules/gettext-h (License): Likewise.
20393         * modules/include_next (License): Likewise.
20394         * modules/link-warning (License): Likewise.
20395         * modules/localcharset (License): Likewise.
20396         * modules/localename (License): Likewise.
20397         * modules/lock (License): Likewise.
20398         * modules/relocatable-lib-lgpl (License): Likewise.
20399         * modules/size_max (License): Likewise.
20400         * modules/vasnprintf (License): Likewise.
20401         * modules/wchar (License): Likewise.
20402         * modules/xsize (License): Likewise.
20403
20404 2007-07-13  Bruno Haible  <bruno@clisp.org>
20405
20406         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
20407         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
20408
20409 2007-07-12  Bruno Haible  <bruno@clisp.org>
20410
20411         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
20412         in the modules files.
20413
20414 2007-07-11  Karl Berry  <karl@gnu.org>
20415
20416         * MODULES.html.sh (func_module): use
20417          sed -e '\|^'"${includefile}"'$|d'
20418          instead of /.../d, to avoid errors on $includefile's containing /.
20419
20420 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
20421
20422         * gnulib-tool (func_import): Avoid duplication of --avoid
20423         statements
20424         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
20425         names to `_' in variable names.
20426
20427 2007-07-10  Eric Blake  <ebb9@byu.net>
20428
20429         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
20430         * NEWS: Document this change.
20431
20432 2007-07-08  Bruno Haible  <bruno@clisp.org>
20433
20434         Update to Unicode 5.0.
20435         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
20436         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
20437         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
20438         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
20439         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
20440         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
20441         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
20442         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
20443         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
20444         U+10A3F, U+1D242..U+1D244.
20445         (nonspacing_table_ind): Update.
20446         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
20447         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
20448
20449 2007-07-08  Bruno Haible  <bruno@clisp.org>
20450
20451         Update to Unicode 5.0.
20452         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
20453         code transform. Extend the name index field of unicode_name_to_code and
20454         unicode_code_to_name from 16 to 24 bits.
20455         * lib/uniname/uniname.c (unicode_character_name,
20456         unicode_name_character): Add the range 0x12xxx to the code transform.
20457         * lib/uniname/uninames.h: Regenerated.
20458         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
20459
20460 2007-07-07  Bruno Haible  <bruno@clisp.org>
20461
20462         * modules/wcwidth-tests: New file.
20463         * tests/test-wcwidth.c: New file.
20464
20465         Work around MacOS X wcwidth() bug.
20466         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
20467         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
20468         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
20469         original wcwidth in non-UTF-8 locales.
20470         * modules/wcwidth (Depends-on): Add localcharset, streq,
20471         uniwidth/width.
20472         * doc/functions/wcwidth.texi: Update.
20473
20474 2007-07-07  Bruno Haible  <bruno@clisp.org>
20475
20476         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
20477         (wcwidth): New declaration.
20478         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
20479         macros.
20480         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
20481         here. Prepare for creating <wchar.h> unconditionally.
20482         * modules/wchar (Depends-on): Add link-warning.
20483         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
20484         REPLACE_WCWIDTH, and GL_LINK_WARNING.
20485         * lib/wcwidth.h: Remove file.
20486         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
20487         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
20488         * modules/wcwidth (Files): Remove lib/wcwidth.h.
20489         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
20490         (Include): Replace wcwidth.h with <wchar.h>.
20491         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
20492         * lib/mbchar.h: Don't include wcwidth.h.
20493         * lib/mbswidth.c: Likewise.
20494         * NEWS: Mention the change.
20495
20496 2007-07-07  Bruno Haible  <bruno@clisp.org>
20497
20498         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
20499         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
20500         definition with an external declaration.
20501         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
20502         defined as a function. Remove AC_C_INLINE requirement.
20503         * modules/wcwidth (Files): Add lib/wcwidth.c.
20504         (Makefile.am): Remove redundant statement.
20505
20506 2007-07-07  Bruno Haible  <bruno@clisp.org>
20507
20508         * MODULES.html.sh (Unicode string functions): Add the new modules.
20509
20510         * tests/uniwidth/test-u32-strwidth.c: New file.
20511         * modules/uniwidth/u32-strwidth-tests: New file.
20512
20513         * lib/uniwidth/u32-strwidth.c: New file.
20514         * modules/uniwidth/u32-strwidth: New file.
20515
20516         * tests/uniwidth/test-u16-strwidth.c: New file.
20517         * modules/uniwidth/u16-strwidth-tests: New file.
20518
20519         * lib/uniwidth/u16-strwidth.c: New file.
20520         * modules/uniwidth/u16-strwidth: New file.
20521
20522         * tests/uniwidth/test-u8-strwidth.c: New file.
20523         * modules/uniwidth/u8-strwidth-tests: New file.
20524
20525         * lib/uniwidth/u8-strwidth.c: New file.
20526         * modules/uniwidth/u8-strwidth: New file.
20527
20528         * tests/uniwidth/test-u32-width.c: New file.
20529         * modules/uniwidth/u32-width-tests: New file.
20530
20531         * lib/uniwidth/u32-width.c: New file.
20532         * modules/uniwidth/u32-width: New file.
20533
20534         * tests/uniwidth/test-u16-width.c: New file.
20535         * modules/uniwidth/u16-width-tests: New file.
20536
20537         * lib/uniwidth/u16-width.c: New file.
20538         * modules/uniwidth/u16-width: New file.
20539
20540         * tests/uniwidth/test-u8-width.c: New file.
20541         * modules/uniwidth/u8-width-tests: New file.
20542
20543         * lib/uniwidth/u8-width.c: New file.
20544         * modules/uniwidth/u8-width: New file.
20545
20546         * tests/uniwidth/test-uc_width.c: New file.
20547         * modules/uniwidth/width-tests: New file.
20548
20549         * lib/uniwidth/width.c: New file, from GNU libiconv.
20550         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
20551         * modules/uniwidth/width: New file.
20552
20553         * lib/uniwidth.h: New file, from GNU libiconv.
20554         * modules/uniwidth/base: New file.
20555
20556 2007-07-07  Bruno Haible  <bruno@clisp.org>
20557
20558         * lib/uniname.h: New file, from GNU gettext.
20559         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
20560         * lib/uniname/uninames.h: New file, from GNU gettext.
20561         * lib/uniname/uniname.c: New file, from GNU gettext.
20562         * tests/uniname/test-uninames.sh: New file.
20563         * tests/uniname/test-uninames.c: New file, from GNU gettext.
20564         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
20565         * modules/uniname/base: New file.
20566         * modules/uniname/uniname: New file.
20567         * modules/uniname/uniname-tests: New file.
20568         * MODULES.html.sh (Unicode string functions): Add the new modules.
20569
20570 2007-07-06  Bruno Haible  <bruno@clisp.org>
20571
20572         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
20573
20574 2007-07-06  Bruno Haible  <bruno@clisp.org>
20575
20576         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
20577         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
20578         includes <cygwin/sys_time.h> which includes <sys/select.h> which
20579         include <sys/time.h>.
20580         Reported by Eric Blake.
20581
20582 2007-07-06  Eric Blake  <ebb9@byu.net>
20583
20584         Fix testing canonicalize on cygwin.
20585         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
20586         Revert patch from 2007-06-19.
20587         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
20588         canonicalize module is also in use.
20589         * tests/test-canonicalize.c: New file.
20590         * tests/test-canonicalize.sh: Likewise.
20591         * modules/canonicalize-tests: Likewise.
20592
20593 2007-07-06  Jim Meyering  <jim@meyering.net>
20594
20595         * lib/getugroups.c (getugroups): Detect getgrent failure.
20596         Adjust comment to reflect reality: this function may return -1.
20597
20598 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
20599
20600         * build-aux/bootstrap (TP_URL,get_translations): Update to use
20601         the new TP address.
20602         (usage): Fix typo
20603         (gnulib_mk): New variable.
20604
20605 2007-07-05  Jim Meyering  <jim@meyering.net>
20606
20607         Don't let endgrent clobber errno, no matter how improbable.
20608         * lib/getugroups.c (getugroups): Save and restore errno around
20609         endgrent call.
20610
20611         Close the group DB even when failing with 2^31 or more members.
20612         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
20613
20614 2007-07-04  Jim Meyering  <jim@meyering.net>
20615
20616         * lib/getugroups.h: New file.
20617         * lib/getugroups.c: Include "getugroups.h".
20618         Remove uses of "register" keyword.
20619         Move local variable, "cp", down into scope where used.
20620         Give "username" parameter the "const" attribute.
20621         * modules/getugroups (Files): Add lib/getugroups.h
20622
20623 2007-07-04  Karl Berry  <karl@gnu.org>
20624
20625         * MODULES.html.sh (func_all_modules): Complete rename of
20626         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
20627
20628 2007-07-02  Bruno Haible  <bruno@clisp.org>
20629
20630         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
20631         mode, when inttypes.h comes from gnulib.
20632         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
20633
20634 2007-07-02  Simon Josefsson  <simon@josefsson.org>
20635
20636         * NEWS: Mention lgpl module name change.
20637
20638         * modules/lgpl-2.1: Renamed from lgpl.
20639
20640         * NEWS: Mention gpl module name change.
20641
20642         * modules/gpl-3.0: New file, based on gpl-2.0.
20643
20644         * modules/gpl-2.0: Renamed from gpl.
20645
20646         * modules/gpl: Fix filename, doc/gpl.texi is now found at
20647         doc/gpl-2.0.texi.
20648
20649 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
20650
20651         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
20652         #define __STDC_LIMIT_MACROS temporarily while including
20653         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
20654         Problem reported by Joel E. Denny in
20655         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
20656
20657 2007-07-01  Bruno Haible  <bruno@clisp.org>
20658
20659         * lib/unistdio.h: New file.
20660         * lib/unistdio/u-asnprintf.h: New file.
20661         * lib/unistdio/u-asprintf.h: New file.
20662         * lib/unistdio/u-printf-args.c: New file.
20663         * lib/unistdio/u-printf-args.h: New file.
20664         * lib/unistdio/u-printf-parse.h: New file.
20665         * lib/unistdio/u-snprintf.h: New file.
20666         * lib/unistdio/u-sprintf.h: New file.
20667         * lib/unistdio/u-vasprintf.h: New file.
20668         * lib/unistdio/u-vsnprintf.h: New file.
20669         * lib/unistdio/u-vsprintf.h: New file.
20670         * lib/unistdio/ulc-asnprintf.c: New file.
20671         * lib/unistdio/ulc-asprintf.c: New file.
20672         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
20673         * lib/unistdio/ulc-printf-parse.c: New file.
20674         * lib/unistdio/ulc-snprintf.c: New file.
20675         * lib/unistdio/ulc-sprintf.c: New file.
20676         * lib/unistdio/ulc-vasnprintf.c: New file.
20677         * lib/unistdio/ulc-vasprintf.c: New file.
20678         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
20679         * lib/unistdio/ulc-vsnprintf.c: New file.
20680         * lib/unistdio/ulc-vsprintf.c: New file.
20681         * lib/unistdio/u8-asnprintf.c: New file.
20682         * lib/unistdio/u8-asprintf.c: New file.
20683         * lib/unistdio/u8-printf-parse.c: New file.
20684         * lib/unistdio/u8-snprintf.c: New file.
20685         * lib/unistdio/u8-sprintf.c: New file.
20686         * lib/unistdio/u8-vasnprintf.c: New file.
20687         * lib/unistdio/u8-vasprintf.c: New file.
20688         * lib/unistdio/u8-vsnprintf.c: New file.
20689         * lib/unistdio/u8-vsprintf.c: New file.
20690         * lib/unistdio/u8-u8-asnprintf.c: New file.
20691         * lib/unistdio/u8-u8-asprintf.c: New file.
20692         * lib/unistdio/u8-u8-snprintf.c: New file.
20693         * lib/unistdio/u8-u8-sprintf.c: New file.
20694         * lib/unistdio/u8-u8-vasnprintf.c: New file.
20695         * lib/unistdio/u8-u8-vasprintf.c: New file.
20696         * lib/unistdio/u8-u8-vsnprintf.c: New file.
20697         * lib/unistdio/u8-u8-vsprintf.c: New file.
20698         * lib/unistdio/u16-asnprintf.c: New file.
20699         * lib/unistdio/u16-asprintf.c: New file.
20700         * lib/unistdio/u16-printf-parse.c: New file.
20701         * lib/unistdio/u16-snprintf.c: New file.
20702         * lib/unistdio/u16-sprintf.c: New file.
20703         * lib/unistdio/u16-vasnprintf.c: New file.
20704         * lib/unistdio/u16-vasprintf.c: New file.
20705         * lib/unistdio/u16-vsnprintf.c: New file.
20706         * lib/unistdio/u16-vsprintf.c: New file.
20707         * lib/unistdio/u16-u16-asnprintf.c: New file.
20708         * lib/unistdio/u16-u16-asprintf.c: New file.
20709         * lib/unistdio/u16-u16-snprintf.c: New file.
20710         * lib/unistdio/u16-u16-sprintf.c: New file.
20711         * lib/unistdio/u16-u16-vasnprintf.c: New file.
20712         * lib/unistdio/u16-u16-vasprintf.c: New file.
20713         * lib/unistdio/u16-u16-vsnprintf.c: New file.
20714         * lib/unistdio/u16-u16-vsprintf.c: New file.
20715         * lib/unistdio/u32-asnprintf.c: New file.
20716         * lib/unistdio/u32-asprintf.c: New file.
20717         * lib/unistdio/u32-printf-parse.c: New file.
20718         * lib/unistdio/u32-snprintf.c: New file.
20719         * lib/unistdio/u32-sprintf.c: New file.
20720         * lib/unistdio/u32-vasnprintf.c: New file.
20721         * lib/unistdio/u32-vasprintf.c: New file.
20722         * lib/unistdio/u32-vsnprintf.c: New file.
20723         * lib/unistdio/u32-vsprintf.c: New file.
20724         * lib/unistdio/u32-u32-asnprintf.c: New file.
20725         * lib/unistdio/u32-u32-asprintf.c: New file.
20726         * lib/unistdio/u32-u32-snprintf.c: New file.
20727         * lib/unistdio/u32-u32-sprintf.c: New file.
20728         * lib/unistdio/u32-u32-vasnprintf.c: New file.
20729         * lib/unistdio/u32-u32-vasprintf.c: New file.
20730         * lib/unistdio/u32-u32-vsnprintf.c: New file.
20731         * lib/unistdio/u32-u32-vsprintf.c: New file.
20732         * tests/unistdio/test-ulc-asnprintf1.c: New file.
20733         * tests/unistdio/test-ulc-asnprintf1.h: New file.
20734         * tests/unistdio/test-ulc-printf1.h: New file.
20735         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
20736         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
20737         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
20738         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
20739         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
20740         * tests/unistdio/test-ulc-vasprintf1.c: New file.
20741         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
20742         * tests/unistdio/test-ulc-vsprintf1.c: New file.
20743         * tests/unistdio/test-u8-asnprintf1.c: New file.
20744         * tests/unistdio/test-u8-asnprintf1.h: New file.
20745         * tests/unistdio/test-u8-printf1.h: New file.
20746         * tests/unistdio/test-u8-vasnprintf1.c: New file.
20747         * tests/unistdio/test-u8-vasnprintf2.c: New file.
20748         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
20749         * tests/unistdio/test-u8-vasnprintf3.c: New file.
20750         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
20751         * tests/unistdio/test-u8-vasprintf1.c: New file.
20752         * tests/unistdio/test-u8-vsnprintf1.c: New file.
20753         * tests/unistdio/test-u8-vsprintf1.c: New file.
20754         * tests/unistdio/test-u16-asnprintf1.c: New file.
20755         * tests/unistdio/test-u16-asnprintf1.h: New file.
20756         * tests/unistdio/test-u16-printf1.h: New file.
20757         * tests/unistdio/test-u16-vasnprintf1.c: New file.
20758         * tests/unistdio/test-u16-vasnprintf2.c: New file.
20759         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
20760         * tests/unistdio/test-u16-vasnprintf3.c: New file.
20761         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
20762         * tests/unistdio/test-u16-vasprintf1.c: New file.
20763         * tests/unistdio/test-u16-vsnprintf1.c: New file.
20764         * tests/unistdio/test-u16-vsprintf1.c: New file.
20765         * tests/unistdio/test-u32-asnprintf1.c: New file.
20766         * tests/unistdio/test-u32-asnprintf1.h: New file.
20767         * tests/unistdio/test-u32-printf1.h: New file.
20768         * tests/unistdio/test-u32-vasnprintf1.c: New file.
20769         * tests/unistdio/test-u32-vasnprintf2.c: New file.
20770         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
20771         * tests/unistdio/test-u32-vasnprintf3.c: New file.
20772         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
20773         * tests/unistdio/test-u32-vasprintf1.c: New file.
20774         * tests/unistdio/test-u32-vsnprintf1.c: New file.
20775         * tests/unistdio/test-u32-vsprintf1.c: New file.
20776         * modules/unistdio/base: New file.
20777         * modules/unistdio/u-printf-args: New file.
20778         * modules/unistdio/ulc-asnprintf: New file.
20779         * modules/unistdio/ulc-asprintf: New file.
20780         * modules/unistdio/ulc-fprintf: New file.
20781         * modules/unistdio/ulc-printf-parse: New file.
20782         * modules/unistdio/ulc-snprintf: New file.
20783         * modules/unistdio/ulc-sprintf: New file.
20784         * modules/unistdio/ulc-vasnprintf: New file.
20785         * modules/unistdio/ulc-vasprintf: New file.
20786         * modules/unistdio/ulc-vfprintf: New file.
20787         * modules/unistdio/ulc-vsnprintf: New file.
20788         * modules/unistdio/ulc-vsprintf: New file.
20789         * modules/unistdio/u8-asnprintf: New file.
20790         * modules/unistdio/u8-asprintf: New file.
20791         * modules/unistdio/u8-printf-parse: New file.
20792         * modules/unistdio/u8-snprintf: New file.
20793         * modules/unistdio/u8-sprintf: New file.
20794         * modules/unistdio/u8-vasnprintf: New file.
20795         * modules/unistdio/u8-vasprintf: New file.
20796         * modules/unistdio/u8-vsnprintf: New file.
20797         * modules/unistdio/u8-vsprintf: New file.
20798         * modules/unistdio/u8-u8-asnprintf: New file.
20799         * modules/unistdio/u8-u8-asprintf: New file.
20800         * modules/unistdio/u8-u8-snprintf: New file.
20801         * modules/unistdio/u8-u8-sprintf: New file.
20802         * modules/unistdio/u8-u8-vasnprintf: New file.
20803         * modules/unistdio/u8-u8-vasprintf: New file.
20804         * modules/unistdio/u8-u8-vsnprintf: New file.
20805         * modules/unistdio/u8-u8-vsprintf: New file.
20806         * modules/unistdio/u16-asnprintf: New file.
20807         * modules/unistdio/u16-asprintf: New file.
20808         * modules/unistdio/u16-printf-parse: New file.
20809         * modules/unistdio/u16-snprintf: New file.
20810         * modules/unistdio/u16-sprintf: New file.
20811         * modules/unistdio/u16-vasnprintf: New file.
20812         * modules/unistdio/u16-vasprintf: New file.
20813         * modules/unistdio/u16-vsnprintf: New file.
20814         * modules/unistdio/u16-vsprintf: New file.
20815         * modules/unistdio/u16-u16-asnprintf: New file.
20816         * modules/unistdio/u16-u16-asprintf: New file.
20817         * modules/unistdio/u16-u16-snprintf: New file.
20818         * modules/unistdio/u16-u16-sprintf: New file.
20819         * modules/unistdio/u16-u16-vasnprintf: New file.
20820         * modules/unistdio/u16-u16-vasprintf: New file.
20821         * modules/unistdio/u16-u16-vsnprintf: New file.
20822         * modules/unistdio/u16-u16-vsprintf: New file.
20823         * modules/unistdio/u32-asnprintf: New file.
20824         * modules/unistdio/u32-asprintf: New file.
20825         * modules/unistdio/u32-printf-parse: New file.
20826         * modules/unistdio/u32-snprintf: New file.
20827         * modules/unistdio/u32-sprintf: New file.
20828         * modules/unistdio/u32-vasnprintf: New file.
20829         * modules/unistdio/u32-vasprintf: New file.
20830         * modules/unistdio/u32-vsnprintf: New file.
20831         * modules/unistdio/u32-vsprintf: New file.
20832         * modules/unistdio/u32-u32-asnprintf: New file.
20833         * modules/unistdio/u32-u32-asprintf: New file.
20834         * modules/unistdio/u32-u32-snprintf: New file.
20835         * modules/unistdio/u32-u32-sprintf: New file.
20836         * modules/unistdio/u32-u32-vasnprintf: New file.
20837         * modules/unistdio/u32-u32-vasprintf: New file.
20838         * modules/unistdio/u32-u32-vsnprintf: New file.
20839         * modules/unistdio/u32-u32-vsprintf: New file.
20840         * modules/unistdio/ulc-asnprintf-tests: New file.
20841         * modules/unistdio/ulc-vasnprintf-tests: New file.
20842         * modules/unistdio/ulc-vasprintf-tests: New file.
20843         * modules/unistdio/ulc-vsnprintf-tests: New file.
20844         * modules/unistdio/ulc-vsprintf-tests: New file.
20845         * modules/unistdio/u8-asnprintf-tests: New file.
20846         * modules/unistdio/u8-vasnprintf-tests: New file.
20847         * modules/unistdio/u8-vasprintf-tests: New file.
20848         * modules/unistdio/u8-vsnprintf-tests: New file.
20849         * modules/unistdio/u8-vsprintf-tests: New file.
20850         * modules/unistdio/u16-asnprintf-tests: New file.
20851         * modules/unistdio/u16-vasnprintf-tests: New file.
20852         * modules/unistdio/u16-vasprintf-tests: New file.
20853         * modules/unistdio/u16-vsnprintf-tests: New file.
20854         * modules/unistdio/u16-vsprintf-tests: New file.
20855         * modules/unistdio/u32-asnprintf-tests: New file.
20856         * modules/unistdio/u32-vasnprintf-tests: New file.
20857         * modules/unistdio/u32-vasprintf-tests: New file.
20858         * modules/unistdio/u32-vsnprintf-tests: New file.
20859         * modules/unistdio/u32-vsprintf-tests: New file.
20860         * MODULES.html.sh (Unicode string functions): Add the new modules.
20861
20862 2007-07-01  Bruno Haible  <bruno@clisp.org>
20863
20864         * lib/sprintf.c (sprintf): Limit the available length estimation,
20865         to avoid address wraparound.
20866         * lib/vsprintf.c (vsprintf): Likewise.
20867         * modules/sprintf-posix (Dependencies): Add stdint.
20868         * modules/vsprintf-posix (Dependencies): Likewise.
20869
20870 2007-07-01  Bruno Haible  <bruno@clisp.org>
20871
20872         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
20873         Windows PATH as well. Conservative double-quoting. Comments.
20874
20875 2007-07-01  Bruno Haible  <bruno@clisp.org>
20876             Eric Blake  <ebb9@byu.net>
20877             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20878
20879         * gnulib-tool (self_abspathname): Fix algorithm to cope with
20880         empty components in $PATH, denoting '.'.
20881
20882 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20883
20884         * gnulib-tool: Fix indentation.
20885         (func_create_megatestdir): Likewise.
20886         Report by Bruno Haible.
20887
20888 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20889
20890         Sync from Automake.
20891         * build-aux/gnupload: Fix shell portability issues with for loops.
20892         Report by Karl Berry.
20893
20894 2007-06-29  Simon Josefsson  <simon@josefsson.org>
20895
20896         * build-aux/maint.mk (POURL): Use translationproject.org.
20897
20898 2007-06-27  Simon Josefsson  <simon@josefsson.org>
20899             Bruno Haible  <bruno@clisp.org>
20900
20901         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
20902         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
20903         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
20904         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
20905         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
20906
20907 2007-06-27  Bruno Haible  <bruno@clisp.org>
20908
20909         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
20910         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
20911
20912 2007-06-26  Karl Berry  <karl@gnu.org>
20913
20914         * MODULES.html.sh: remove xreadlink-with-size.
20915
20916 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
20917
20918         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
20919         method that I hope also handles the double-include problem noted
20920         by Bruno Haible in
20921         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
20922
20923 2007-06-23  Bruno Haible  <bruno@clisp.org>
20924
20925         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20926         Don't let the 'mostlyclean' target fail if the last subdirectory could
20927         not be removed.
20928         Reported by Karl Berry.
20929
20930 2007-06-23  Bruno Haible  <bruno@clisp.org>
20931
20932         * gnulib-tool (echo): Add a speedier workaround for ksh.
20933         * tests/test-echo.sh: Likewise.
20934
20935 2007-06-23  Bruno Haible  <bruno@clisp.org>
20936
20937         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
20938         * tests/test-echo.sh: Likewise.
20939
20940 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20941
20942         * gnulib-tool (IFS): Initialize early, so we don't set it to
20943         empty later.
20944         (self_abspathname): Rewrite algorithm to set it, reindent.
20945         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
20946         (func_create_megatestdir): Merge some sed scripts.
20947
20948 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
20949
20950         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
20951         exposed by Sun Studio 11 cc on Solaris 8.
20952
20953 2007-06-22  Bruno Haible  <bruno@clisp.org>
20954
20955         * gnulib-tool (echo): Ensure the echo primitive does not interpret
20956         backslashes.
20957         * tests/test-echo.sh: New file.
20958
20959 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20960
20961         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
20962         simplify `sed_replace_build_aux' scripts, they are portable but
20963         echoing them with `echo' is not.
20964         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
20965
20966 2007-06-21  Karl Berry  <karl@gnu.org>
20967
20968         * config/srclist.txt: guess we can't handle the licenses via
20969         srclist at the moment.
20970
20971 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
20972
20973         * MODULES.html.sh: Add include_next.
20974         * modules/include_next: New file.
20975
20976 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
20977
20978         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
20979         INCLUDE_NEXT.
20980         (gl_CHECK_NEXT_HEADERS): New macro.
20981         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
20982         the obsolescent gl_ABSOLUTE_HEADER.
20983         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
20984         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
20985         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
20986         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
20987         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
20988         * m4/math_h.m4 (gl_MATH_H): Likewise.
20989         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
20990         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
20991         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
20992         * m4/stdint.m4 (gl_STDINT_H): Likewise.
20993         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
20994         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
20995         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
20996         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
20997         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
20998         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
20999         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
21000         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
21001         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
21002         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
21003         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
21004         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
21005         * m4/inttypes.m4 (gl_INTTYPES_H): Define
21006         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
21007         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
21008         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
21009         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
21010         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
21011         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
21012         * lib/float_.h: Likewise.
21013         * lib/inttypes_.h: Likewise.
21014         * lib/math_.h: Likewise.
21015         * lib/search_.h: Likewise.
21016         * lib/signal_.h: Likewise.
21017         * lib/stdint_.h: Likewise.
21018         * lib/stdio_.h: Likewise.
21019         * lib/stdlib_.h: Likewise.
21020         * lib/string_.h: Likewise.
21021         * lib/sys_stat_.h: Likewise.
21022         * lib/sys_time_.h: Likewise.
21023         * lib/time_.h: Likewise.
21024         * lib/unistd_.h: Likewise.
21025         * lib/wchar_.h: Likewise.
21026         * lib/wctype_.h: Likewise.
21027         * lib/dirent_.h: Likewise.
21028         * lib/iconv_.h: Likewise.
21029         * lib/locale_.h: Likewise.
21030         * lib/netinet_in_.h: Likewise.
21031         * lib/sys_select_.h: Likewise.
21032         * lib/sys_socket_.h: Likewise.
21033         * lib/sysexits_.h: Likewise.
21034         * modules/fcntl (Depends-on): Depend on include_next, not
21035         absolute_header.
21036         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
21037         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
21038         * modules/fchdir: Likewise.
21039         * modules/float: Likewise.
21040         * modules/iconv_open: Likewise.
21041         * modules/inttypes: Likewise.
21042         * modules/locale: Likewise.
21043         * modules/math: Likewise.
21044         * modules/netinet_in: Likewise.
21045         * modules/search: Likewise.
21046         * modules/signal: Likewise.
21047         * modules/stdint: Likewise.
21048         * modules/stdio: Likewise.
21049         * modules/stdlib: Likewise.
21050         * modules/string: Likewise.
21051         * modules/sys_select: Likewise.
21052         * modules/sys_socket: Likewise.
21053         * modules/sys_stat: Likewise.
21054         * modules/sys_time: Likewise.
21055         * modules/sysexits: Likewise.
21056         * modules/time: Likewise.
21057         * modules/unistd: Likewise.
21058         * modules/wchar: Likewise.
21059         * modules/wctype: Likewise.
21060         * modules/sys_stat: Change maintainer to "all".
21061         * modules/unistd: Likewise.
21062
21063 2007-06-20  Karl Berry  <karl@gnu.org>
21064
21065         * config/srclist.txt: track www changes in license files.
21066
21067 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
21068
21069         * build-aux/bootstrap: Remove stray dot.
21070         Make sure build_aux settings are honored when linking
21071         gnulib_extra_files.
21072
21073 2007-06-19  Eric Blake  <ebb9@byu.net>
21074
21075         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
21076         Allow compilation on cygwin.
21077
21078 2007-06-19  Jim Meyering  <jim@meyering.net>
21079
21080         xreadlink-with-size: Remove module.  No longer used.
21081         Ex-callers now use xreadlink or mreadlink-with-size.
21082         * modules/xreadlink-with-size: Remove module.
21083         * lib/xreadlink-with-size.c: Remove file.
21084         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
21085         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
21086         just before the function definition *is* accurate.
21087
21088         Eliminate one way canonicalize_filename_mode could exit.
21089         * lib/canonicalize.c (canonicalize_filename_mode):
21090         Use mreadlink_with_size, not xreadlink_with_size.
21091
21092 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
21093
21094         Detect porting problems to FreeBSD/arm, which has time_t wider than
21095         long int.  Original problem reported for GNU diff by Xin Li in
21096         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
21097         * modules/getdate (Depends-on): Add intprops, verify.
21098         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
21099         is an integer type no wider than long int.
21100
21101 2007-06-18  Jim Meyering  <jim@meyering.net>
21102
21103         New module: mreadlink-with-size.
21104         * MODULES.html.sh: Add mreadlink-with-size.
21105         * modules/mreadlink-with-size: New module
21106         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
21107         not xreadlink-with-size.
21108         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
21109
21110 2007-06-16  Bruno Haible  <bruno@clisp.org>
21111
21112         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
21113         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
21114         Reported by Gary V. Vaughan <gary@gnu.org>.
21115
21116 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
21117
21118         Revamp lchown so that it lives in unistd.h where it belongs.
21119         * lib/lchown.h: Remove.
21120         * lib/dirchownmod.c: Don't include lib/lchown.h.
21121         * lib/fchownat.c: Likewise.
21122         * lib/openat.c: Likewise.
21123         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
21124         does not follow symlinks.
21125         (EOPNOTSUPP): Define if not defined.
21126         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
21127         is defined to 0.
21128         (lchown): New decl.
21129         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
21130         Do not check for lchown decl.
21131         Set REPLACE_LCHOWN.
21132         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
21133         REPLACE_LCHOWN.
21134         * modules/chown: Make it clear it follows symlinks.
21135         * modules/lchown: Make it clear it doesn't follow symlinks.
21136         (Files): Remove lib/lchown.h
21137         (Depends-on): Add unistd.
21138         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
21139         (Include): Include <unistd.h>, not "lchown.h".
21140         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
21141         REPLACE_LCHOWN.
21142
21143 2007-06-15  Jim Meyering  <jim@meyering.net>
21144
21145         Change license (GPL to LGPL) of fsusage and dependents.
21146         * modules/fsusage (License): Change to LGPL.
21147         * modules/full-read (License): Likewise.
21148         * modules/full-write (License): Likewise.
21149         * modules/safe-read (License): Likewise.
21150         * modules/safe-write (License): Likewise.
21151
21152 2007-06-14  Ben Pfaff  <blp@gnu.org>
21153
21154         Missing part of allocsa -> malloca transition.
21155         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
21156         gl_MALLOCA.
21157
21158 2007-06-12  Bruno Haible  <bruno@clisp.org>
21159
21160         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
21161         to ia64, x86_64, i386.
21162         Reported by Eric Blake.
21163
21164 2007-06-12  Bruno Haible  <bruno@clisp.org>
21165
21166         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
21167         cross-compiling to x86_64.
21168
21169 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
21170
21171         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
21172         glitch reported by Ralf Wildenhues in
21173         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
21174
21175         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
21176         Vin Shelton.
21177
21178 2007-06-11  Bruno Haible  <bruno@clisp.org>
21179
21180         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
21181         replacement string.
21182         Reported by Eric Blake.
21183
21184 2007-06-10  Bruno Haible  <bruno@clisp.org>
21185
21186         Prepare vasnprintf code for use with Unicode strings.
21187         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
21188         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
21189         TYPE_U32_STRING.
21190         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
21191         a_u32_string variants.
21192         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
21193         * lib/printf-args.c: Don't include config.h and the specification
21194         header if PRINTF_FETCHARGS is already defined.
21195         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
21196         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
21197         TYPE_U16_STRING, TYPE_U32_STRING.
21198         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
21199         u16_directive, u16_directives, u32_directive, u32_directives): New
21200         types.
21201         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
21202         New declarations.
21203         * lib/printf-parse.c: Don't include config.h and the specification
21204         header if PRINTF_PARSE is already defined. Eliminate the set of
21205         parameters for WIDE_CHAR_VERSION; the user of this file must provide
21206         them now. Include c-ctype.h.
21207         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
21208         directive and CHAR_T_ONLY_ASCII.
21209         * lib/vasnprintf.c: Don't include config.h and the specification header
21210         if VASNPRINTF is already defined.
21211         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
21212         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
21213         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
21214         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
21215         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
21216         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
21217         code accordingly.
21218         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
21219         pad_ourselves also in this case, with the 'c' and 's' directives, and
21220         with a different notion of "width".
21221         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
21222
21223 2007-06-10  Bruno Haible  <bruno@clisp.org>
21224
21225         * modules/unistr/u32-mbsnlen: New file.
21226         * lib/unistr/u32-mbsnlen.c: New file.
21227
21228         * modules/unistr/u16-mbsnlen: New file.
21229         * lib/unistr/u16-mbsnlen.c: New file.
21230
21231         * modules/unistr/u8-mbsnlen: New file.
21232         * lib/unistr/u8-mbsnlen.c: New file.
21233
21234         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
21235         declarations.
21236
21237 2007-06-10  Bruno Haible  <bruno@clisp.org>
21238
21239         * lib/string_.h (mbsnlen): New declaration.
21240         * lib/mbsnlen.c: New file.
21241         * m4/mbsnlen.m4: New file.
21242         * modules/mbsnlen: New file.
21243         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
21244         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
21245         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
21246
21247 2007-06-10  Bruno Haible  <bruno@clisp.org>
21248
21249         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
21250
21251 2007-06-10  Bruno Haible  <bruno@clisp.org>
21252
21253         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
21254         * lib/mbuiter.h: Likewise.
21255
21256 2007-06-10  Bruno Haible  <bruno@clisp.org>
21257
21258         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
21259         declaration.
21260
21261 2007-06-10  Karl Berry  <karl@gnu.org>
21262
21263         * config/srclist.txt: remove gettext entries, Bruno prefers
21264         to update individually.
21265
21266 2007-06-10  Bruno Haible  <bruno@clisp.org>
21267
21268         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
21269         'maxlen'. Ensure only length + width bytes are allocated, not
21270         length + 1 + width.
21271
21272 2007-06-09  Bruno Haible  <bruno@clisp.org>
21273
21274         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
21275         (CHAR_T): Remove macro.
21276         (VASNPRINTF): Update.
21277
21278 2007-06-09  Bruno Haible  <bruno@clisp.org>
21279
21280         * MODULES.html.sh (Unicode string functions): Add the new modules.
21281
21282         * modules/uniconv/u32-conv-to-enc: New file.
21283         * lib/uniconv/u32-conv-to-enc.c: New file.
21284         * modules/uniconv/u32-conv-to-enc-tests: New file.
21285         * tests/uniconv/test-u32-conv-to-enc.c: New file.
21286
21287         * modules/uniconv/u16-conv-to-enc: New file.
21288         * lib/uniconv/u16-conv-to-enc.c: New file.
21289         * lib/uniconv/u-conv-to-enc.h: New file.
21290         * modules/uniconv/u16-conv-to-enc-tests: New file.
21291         * tests/uniconv/test-u16-conv-to-enc.c: New file.
21292
21293         * modules/uniconv/u8-conv-to-enc: New file.
21294         * lib/uniconv/u8-conv-to-enc.c: New file.
21295         * modules/uniconv/u8-conv-to-enc-tests: New file.
21296         * tests/uniconv/test-u8-conv-to-enc.c: New file.
21297
21298         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
21299         u32_conv_to_encoding): New declarations.
21300
21301 2007-06-09  Bruno Haible  <bruno@clisp.org>
21302
21303         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
21304
21305 2007-06-09  Bruno Haible  <bruno@clisp.org>
21306
21307         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
21308         * modules/malloca: Renamed from modules/allocsa, updated.
21309         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
21310         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
21311         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
21312         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
21313         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
21314         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
21315         * modules/xmalloca: Renamed from modules/xallocsa, updated.
21316         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
21317         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
21318         * modules/c-strcasestr (Depends-on): Update.
21319         * lib/c-strcasestr.c: Update.
21320         * modules/c-strstr (Depends-on): Update.
21321         * lib/c-strstr.c: Update.
21322         * modules/canonicalize-lgpl (Depends-on): Update.
21323         * lib/canonicalize-lgpl.c: Update.
21324         * modules/clean-temp (Depends-on): Update.
21325         * lib/clean-temp.c: Update.
21326         * modules/csharpcomp (Depends-on): Update.
21327         * lib/csharpcomp.c: Update.
21328         * modules/csharpexec (Depends-on): Update.
21329         * lib/csharpexec.c: Update.
21330         * modules/javacomp (Depends-on): Update.
21331         * lib/javacomp.c: Update.
21332         * modules/javaexec (Depends-on): Update.
21333         * lib/javaexec.c: Update.
21334         * modules/mbscasestr (Depends-on): Update.
21335         * lib/mbscasestr.c: Update.
21336         * modules/mbsstr (Depends-on): Update.
21337         * lib/mbsstr.c: Update.
21338         * modules/setenv (Depends-on): Update.
21339         * lib/setenv.c: Update.
21340         * modules/strcasestr (Depends-on): Update.
21341         * lib/strcasestr.c: Update.
21342         * modules/striconveha (Depends-on): Update.
21343         * lib/striconveha.c: Update.
21344         * modules/relocatable-prog-wrapper (Files): Update.
21345         * lib/relocwrapper.c: Update.
21346         * build-aux/install-reloc: Update.
21347         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
21348
21349 2007-06-08  Bruno Haible  <bruno@clisp.org>
21350
21351         Port to uClibc.
21352         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
21353         * lib/fpurge.c (fpurge): Likewise.
21354         * lib/freading.c (freading): Likewise.
21355         * lib/fseeko.c (rpl_fseeko): Likewise.
21356         * lib/fseterr.c (fseterr): Likewise.
21357         * lib/fwriting.c (fwriting): Likewise.
21358         * tests/test-fflush.c (main): Avoid a failure on uClibc.
21359
21360 2007-06-08  Bruno Haible  <bruno@clisp.org>
21361
21362         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
21363         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
21364         * modules/gettext (Files): Add m4/intlmacosx.m4.
21365
21366 2007-06-07  Bruno Haible  <bruno@clisp.org>
21367
21368         * modules/localename-tests: New file.
21369         * tests/test-localename.c: New file.
21370
21371         New module 'localename'.
21372         * lib/localename.h: New file.
21373         * lib/localename.c: New file, from GNU gettext.
21374         * m4/localename.m4: New file.
21375         * modules/localename: New file.
21376
21377 2007-06-07  Bruno Haible  <bruno@clisp.org>
21378
21379         Work around the lack of <wchar.h> on some builds of uClibc.
21380         * doc/headers/wchar.texi: Update.
21381         * lib/wchar_.h: Include <wchar.h> only if it exists.
21382         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
21383         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
21384         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
21385         doesn't exist.
21386         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
21387         * modules/mbfile (Depends-on): Add wchar.
21388         * modules/mbiter (Depends-on): Likewise.
21389         * modules/mbuiter (Depends-on): Likewise.
21390         Reported by Simon Josefsson.
21391
21392 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
21393
21394         Work around problem reported by Steven M. Schweda in
21395         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
21396         Tru64 5.1B with the Compaq compiler environment installed declares
21397         an 'isblank' function but does not define it in the C library.
21398         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
21399         * lib/regex_internal.h (isblank): Likewise.
21400         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
21401         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
21402
21403 2007-06-05  Bruno Haible  <bruno@clisp.org>
21404
21405         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
21406         ia64.
21407         * modules/printf-safe: New file.
21408         * modules/fprintf-posix (Depends-on): Add printf-safe.
21409         * modules/printf-posix (Depends-on): Likewise.
21410         * modules/snprintf-posix (Depends-on): Likewise.
21411         * modules/sprintf-posix (Depends-on): Likewise.
21412         * modules/vasnprintf-posix (Depends-on): Likewise.
21413         * modules/vasprintf-posix (Depends-on): Likewise.
21414         * modules/vfprintf-posix (Depends-on): Likewise.
21415         * modules/vprintf-posix (Depends-on): Likewise.
21416         * modules/vsnprintf-posix (Depends-on): Likewise.
21417         * modules/vsprintf-posix (Depends-on): Likewise.
21418         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
21419         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
21420         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
21421         "no" on i386, x86_64, ia64.
21422         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
21423         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21424         on i386, x86_64, ia64.
21425         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
21426         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21427         on i386, x86_64, ia64.
21428         * tests/test-vasnprintf-posix.c: Include float.h.
21429         (LDBL80_WORDS): New macro.
21430         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21431         on i386, x86_64, ia64.
21432         * tests/test-vasprintf-posix.c: Include float.h.
21433         (LDBL80_WORDS): New macro.
21434         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21435         on i386, x86_64, ia64.
21436         * tests/test-snprintf-posix.c: Include float.h.
21437         * tests/test-sprintf-posix.c: Likewise.
21438         * tests/test-vsnprintf-posix.c: Likewise.
21439         * tests/test-vsprintf-posix.c: Likewise.
21440
21441 2007-06-05  Bruno Haible  <bruno@clisp.org>
21442
21443         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
21444         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
21445         non-IEEE numbers on i386, x86_64, ia64.
21446         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
21447         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
21448         * tests/test-isnanl.h: Include float.h.
21449         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
21450
21451 2007-06-05  Bruno Haible  <bruno@clisp.org>
21452
21453         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
21454         also the %a / %A. Handle the %a / %A code before this extra handling.
21455
21456 2007-06-05  Bruno Haible  <bruno@clisp.org>
21457
21458         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
21459         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
21460
21461 2007-06-05  Bruno Haible  <bruno@clisp.org>
21462
21463         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
21464         typo in variable name.
21465
21466 2007-06-05  Eric Blake  <ebb9@byu.net>
21467
21468         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
21469         Reported by Simon Josefsson.
21470
21471 2007-06-04  Bruno Haible  <bruno@clisp.org>
21472
21473         Avoid test failures on some PowerPC platforms.
21474         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
21475         Define differently for PowerPC.
21476         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
21477         Reported by Gary V. Vaughan <gary@gnu.org>.
21478
21479 2007-06-02  Bruno Haible  <bruno@clisp.org>
21480
21481         Fix test-stdint failure on FreeBSD/ia64.
21482         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
21483         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
21484         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
21485         * doc/headers/stdint.texi: Update.
21486
21487 2007-06-01  Bruno Haible  <bruno@clisp.org>
21488
21489         * tests/test-binary-io.c (main): Pass a third argument to open().
21490         Reported by Gary V. Vaughan <gary@gnu.org>.
21491
21492 2007-06-01  Bruno Haible  <bruno@clisp.org>
21493
21494         * doc/functions/frexpl.texi: Update for mingw.
21495
21496 2007-06-01  Bruno Haible  <bruno@clisp.org>
21497
21498         * tests/test-lseek.c (main): Disable test of errno for invalid third
21499         argument.
21500         * doc/functions/lseek.texi: Update.
21501         Reported by Gary V. Vaughan <gary@gnu.org>.
21502
21503 2007-05-28  Bruno Haible  <bruno@clisp.org>
21504
21505         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
21506
21507 2007-05-31  Eric Blake  <ebb9@byu.net>
21508
21509         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
21510         cross compiling.
21511
21512 2007-05-30  Eric Blake  <ebb9@byu.net>
21513         and Bruno Haible  <bruno@clisp.org>
21514
21515         Work around mingw test failures exposed by m4-1.4.9b.
21516         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
21517         * tests/test-unistd.c: Disable uid_t and git_t tests for the
21518         moment.
21519
21520 2007-05-30  Bruno Haible  <bruno@clisp.org>
21521
21522         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
21523         assuming that they are closed. Needed on HP-UX 11.
21524
21525 2007-05-29  Bruno Haible  <bruno@clisp.org>
21526
21527         Fix a problem with #include_next.
21528         * lib/dirent_.h: Split the double-inclusion guard.
21529         * lib/fcntl_.h: Likewise.
21530         * lib/float_.h: Likewise.
21531         * lib/iconv_.h: Likewise.
21532         * lib/inttypes_.h: Likewise.
21533         * lib/locale_.h: Likewise.
21534         * lib/math_.h: Likewise.
21535         * lib/netinet_in_.h: Likewise.
21536         * lib/search_.h: Likewise.
21537         * lib/signal_.h: Likewise.
21538         * lib/stdint_.h: Likewise.
21539         * lib/stdio_.h: Likewise.
21540         * lib/stdlib_.h: Likewise.
21541         * lib/string_.h: Likewise.
21542         * lib/sys_select_.h: Likewise.
21543         * lib/sys_socket_.h: Likewise.
21544         * lib/sys_stat_.h: Likewise.
21545         * lib/sys_time_.h: Likewise.
21546         * lib/sysexits_.h: Likewise.
21547         * lib/time_.h: Likewise.
21548         * lib/unistd_.h: Likewise.
21549         * lib/wchar_.h: Likewise.
21550         * lib/wctype_.h: Likewise.
21551
21552 2007-05-29  Bruno Haible  <bruno@clisp.org>
21553
21554         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
21555         for the moment.
21556
21557 2007-05-29  Bruno Haible  <bruno@clisp.org>
21558
21559         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
21560         invocation.
21561         Reported by Eric Blake.
21562
21563 2007-05-29  Bruno Haible  <bruno@clisp.org>
21564
21565         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
21566         compiling case.
21567
21568 2007-05-29  Eric Blake  <ebb9@byu.net>
21569             Bruno Haible  <bruno@clisp.org>
21570
21571         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
21572         cross compiles.
21573
21574 2007-05-28  Eric Blake  <ebb9@byu.net>
21575
21576         * modules/closein-tests (test_closein_LDADD): Support test on
21577         cygwin with libtool.
21578
21579 2007-05-28  Bruno Haible  <bruno@clisp.org>
21580
21581         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
21582         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
21583         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
21584         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
21585         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
21586         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
21587         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
21588         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
21589         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
21590
21591 2007-05-28  Eric Blake  <ebb9@byu.net>
21592
21593         Unconditionally include <config.h> in unit tests.
21594         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
21595         * tests/test-allocsa.c, tests/test-arcfour.c,
21596         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
21597         tests/test-array_list.c, tests/test-array_oset.c,
21598         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
21599         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
21600         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
21601         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
21602         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
21603         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
21604         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
21605         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
21606         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
21607         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
21608         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
21609         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
21610         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
21611         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
21612         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
21613         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
21614         test-md5.c, test-memmem.c, test-printf-posix.c,
21615         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
21616         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
21617         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
21618         test-strcasestr.c, test-striconv.c, test-striconveh.c,
21619         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
21620         test-vasnprintf-posix2.c, test-vasnprintf.c,
21621         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
21622         test-vfprintf-posix.c, test-vprintf-posix.c,
21623         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
21624         test-xvasprintf.c: Likewise.
21625
21626 2007-05-28  Bruno Haible  <bruno@clisp.org>
21627
21628         * gnulib-tool (func_import): Remember the --with-tests command-line
21629         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
21630         Reported by Eric Blake.
21631
21632 2007-05-28  Bruno Haible  <bruno@clisp.org>
21633
21634         * modules/ftell-tests: New file.
21635         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
21636         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
21637
21638         * lib/ftell.c: New file.
21639         * modules/ftell: New file.
21640         * m4/ftell.m4: New file.
21641         * doc/functions/ftell.texi: Update.
21642         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
21643         REPLACE_FTELL.
21644         * lib/stdio_.h (rpl_ftell): New declaration.
21645         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
21646         REPLACE_FTELL.
21647
21648 2007-05-28  Eric Blake  <ebb9@byu.net>
21649
21650         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
21651
21652 2007-05-28  Bruno Haible  <bruno@clisp.org>
21653
21654         * modules/fseek-tests: New file.
21655         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
21656         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
21657
21658         * lib/fseek.c: New file.
21659         * modules/fseek: New file.
21660         * m4/fseek.m4: New file.
21661         * doc/functions/fseek.texi: Update.
21662         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
21663         REPLACE_FSEEK.
21664         * lib/stdio_.h (rpl_fseek): New declaration.
21665         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
21666         REPLACE_FSEEK.
21667
21668 2007-05-28  Bruno Haible  <bruno@clisp.org>
21669
21670         * lib/stdio_.h (fflush): More comments.
21671
21672 2007-05-28  Bruno Haible  <bruno@clisp.org>
21673
21674         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
21675         runtime test.
21676
21677 2007-05-28  Eric Blake  <ebb9@byu.net>
21678
21679         Improve lseek module.
21680         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
21681         * lib/unistd_.h (lseek): Scale back link warning message.
21682         * tests/test-lseek.c: Beef up test.
21683         * tests/test-lseek.sh: Exercise more facets of lseek.
21684         Reported by Bruno Haible.
21685
21686 2007-05-28  Bruno Haible  <bruno@clisp.org>
21687
21688         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
21689         to define.
21690
21691 2007-05-27  Bruno Haible  <bruno@clisp.org>
21692
21693         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
21694
21695 2007-05-27  Bruno Haible  <bruno@clisp.org>
21696
21697         * modules/openmp: New file.
21698         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
21699         Noah Misch.
21700
21701 2007-05-26  Bruno Haible  <bruno@clisp.org>
21702
21703         * modules/chdir-long (Depends-on): Add fchdir.
21704         * modules/chdir-safer (Depends-on): Likewise.
21705         * modules/fts (Depends-on): Likewise.
21706         * modules/fts-lgpl (Depends-on): Likewise.
21707         * modules/openat (Depends-on): Likewise.
21708         * modules/savewd (Depends-on): Likewise.
21709
21710 2007-05-24  Eric Blake  <ebb9@byu.net>
21711
21712         Fix lseek on mingw.
21713         * modules/lseek: New module.
21714         * m4/lseek.m4: New file.
21715         * lib/lseek.c: New file.
21716         * modules/lseek-tests: New file.
21717         * tests/test-lseek.c: New file.
21718         * tests/test-lseek.sh: New file.
21719         * MODULES.html.sh: Document lseek module.
21720         * modules/fflush (Depends-on): Add lseek, fseeko.
21721         * modules/fseeko (Depends-on): Likewise.
21722         * modules/ftello (Depends-on): Likewise.
21723         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
21724         broken.
21725         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
21726         broken.
21727         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
21728         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
21729         * lib/ftello.c (rpl_ftello): Likewise.
21730         * tests/test-fseeko.c (main): Test this.
21731         * tests/test-fseeko.sh: Likewise.
21732         * tests/test-ftello.c (main): Likewise.
21733         * tests/test-ftello.sh: Likewise.
21734         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
21735         implies replacing fseek.
21736         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
21737         HAVE_FTELLO.
21738         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
21739         * modules/unistd (Makefile.am): Likewise.
21740         * lib/unistd_.h (lseek): Declare a replacement.
21741         * doc/functions/lseek.texi (lseek): Document this fix.
21742         * doc/functions/fseek.texi (fseek): Likewise.
21743         * doc/functions/ftell.texi (ftell): Likewise.
21744
21745 2007-05-24  Bruno Haible  <bruno@clisp.org>
21746
21747         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
21748         in the printed representation of a NaN.
21749         * tests/test-vasprintf-posix.c (test_function): Likewise.
21750         * tests/test-snprintf-posix.h (test_function): Likewise.
21751         * tests/test-sprintf-posix.h (test_function): Likewise.
21752         Reported by Eric Blake.
21753
21754 2007-05-23  Eric Blake  <ebb9@byu.net>
21755
21756         Fix fseeko/ftello on cygwin 1.5.24.
21757         * doc/functions/fseeko.texi (fseeko): Document the fix.
21758         * doc/functions/ftello.texi (ftello): Document the fix.
21759         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
21760         * doc/functions/stdout.text (stdout): New file.
21761         * doc/functions/stderr.text (stderr): New file.
21762         * doc/gnulib.texi (Function Substitutes): Use new files.
21763         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
21764         prior to 1.7.0.
21765         * tests/test-ftello.c (main): Likewise for ftello.
21766         * tests/test-fseeko.sh: New file.
21767         * tests/test-ftello.sh: New file.
21768         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
21769         with seekable stdin.
21770         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
21771         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
21772         (gl_REPLACE_FSEEKO): New macro.
21773         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
21774         * modules/fseeko (Files): Distribute fseeko.c.
21775         * modules/ftello (Files): Distribute ftello.c.
21776         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
21777         mode.
21778         * lib/ftello.c (rpl_ftello): New file.
21779         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
21780         fseeko, ftello.
21781         (gl_STDIN_LARGE_OFFSET): New macro.
21782         * modules/stdio (Makefile.am): Perform the replacement.
21783         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
21784
21785 2007-05-23  Bruno Haible  <bruno@clisp.org>
21786
21787         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
21788         GNULIB_POSIXCHECK is defined.
21789
21790 2007-05-21  Bruno Haible  <bruno@clisp.org>
21791
21792         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
21793         Check also the output for NaN arguments. When cross-compiling, guess
21794         no on IRIX.
21795         * lib/vasnprintf.c: Update comments.
21796         * tests/test-vasnprintf-posix.c (strisnan): New function.
21797         (test_function): Use it.
21798         * tests/test-vasprintf-posix.c (strisnan): New function.
21799         (test_function): Use it.
21800         * tests/test-snprintf-posix.h (strisnan): New function.
21801         (test_function): Use it.
21802         * tests/test-sprintf-posix.h (strisnan): New function.
21803         (test_function): Use it.
21804         Reported by Eric Blake.
21805
21806 2007-05-20  Bruno Haible  <bruno@clisp.org>
21807
21808         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
21809         numbers that fails on BeOS.
21810         * doc/functions/frexpl.texi: Update.
21811
21812 2007-05-20  Jim Meyering  <jim@meyering.net>
21813
21814         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
21815         forced upon us by glibc-2.6.
21816
21817 2007-05-20  Bruno Haible  <bruno@clisp.org>
21818
21819         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
21820         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
21821         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
21822         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
21823         NEED_PRINTF_INFINITE.
21824         (is_infinitel): New function.
21825         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
21826         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
21827         gl_PREREQ_VASNPRINTF_INFINITE.
21828         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
21829         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21830         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
21831         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
21832         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
21833         gl_PREREQ_VASNPRINTF_INFINITE.
21834         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21835         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21836         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21837         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21838         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21839         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21840         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21841         * doc/functions/fprintf.texi: Update.
21842         * doc/functions/printf.texi: Update.
21843         * doc/functions/snprintf.texi: Update.
21844         * doc/functions/sprintf.texi: Update.
21845         * doc/functions/vfprintf.texi: Update.
21846         * doc/functions/vprintf.texi: Update.
21847         * doc/functions/vsnprintf.texi: Update.
21848         * doc/functions/vsprintf.texi: Update.
21849
21850 2007-05-20  Bruno Haible  <bruno@clisp.org>
21851
21852         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
21853         was not found in libc.
21854         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
21855
21856 2007-05-20  Bruno Haible  <bruno@clisp.org>
21857
21858         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
21859         printed as "-nan" instead of "nan".
21860         * tests/test-vasprintf-posix.c (test_function): Likewise.
21861         * tests/test-snprintf-posix.h (test_function): Likewise.
21862         * tests/test-sprintf-posix.h (test_function): Likewise.
21863         Needed for HP-UX 11.
21864
21865 2007-05-20  Jim Meyering  <jim@meyering.net>
21866
21867         Fix buggy test for the fchownat-deref bug.
21868         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
21869         symlink required for the run-test.  Without it, this test would
21870         always declare that fchownat doesn't work, and client code would
21871         unnecessarily use the replacement function with fixed libc.
21872         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
21873         Reported by Greg Schafer.
21874
21875 2007-05-19  Bruno Haible  <bruno@clisp.org>
21876
21877         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
21878         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
21879         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
21880         Needed for IRIX 6.5 and Solaris 2.5.1.
21881
21882 2007-05-19  Bruno Haible  <bruno@clisp.org>
21883
21884         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
21885         (test_function): Skip tests involving -0.0 on platforms where
21886         -0.0 = 0.0.
21887         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
21888         (test_function): Skip tests involving -0.0 on platforms where
21889         -0.0 = 0.0.
21890         * tests/test-snprintf-posix.h (have_minus_zero): New function.
21891         (test_function): Skip tests involving -0.0 on platforms where
21892         -0.0 = 0.0.
21893         * tests/test-sprintf-posix.h (have_minus_zero): New function.
21894         (test_function): Skip tests involving -0.0 on platforms where
21895         -0.0 = 0.0.
21896         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
21897         tests.
21898         * tests/test-printf-posix.h (test_function): Likewise.
21899         * tests/test-printf-posix.output: Remove all -0.0 related results.
21900         Needed for IRIX 6.5.
21901
21902 2007-05-19  Bruno Haible  <bruno@clisp.org>
21903
21904         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
21905         printed as "nan0x7fffffff" instead of "nan".
21906         * tests/test-vasprintf-posix.c (test_function): Likewise.
21907         * tests/test-snprintf-posix.h (test_function): Likewise.
21908         * tests/test-sprintf-posix.h (test_function): Likewise.
21909         * tests/test-fprintf-posix.h (NaN): Remove macro.
21910         (test_function): Remove all NaN related tests.
21911         * tests/test-printf-posix.h (NaN): Remove macro.
21912         (test_function): Remove all NaN related tests.
21913         * tests/test-printf-posix.output: Remove all NaN related results.
21914         Needed for IRIX 6.5.
21915
21916 2007-05-19  Bruno Haible  <bruno@clisp.org>
21917
21918         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
21919         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
21920
21921 2007-05-19  Bruno Haible  <bruno@clisp.org>
21922
21923         * lib/float_.h: New file.
21924         * m4/float_h.m4: New file.
21925         * modules/float: New file.
21926         * modules/isnanl (Dependencies): Add float.
21927         * modules/isnanl-nolibm (Dependencies): Likewise.
21928         * modules/mathl (Dependencies): Likewise.
21929         * modules/printf-frexpl (Dependencies): Likewise.
21930         * modules/signbit (Dependencies): Likewise.
21931         * modules/vasnprintf (Dependencies): Likewise.
21932         * doc/headers/float.texi: Update.
21933
21934 2007-05-19  Jim Meyering  <jim@meyering.net>
21935
21936         * lib/utimens.c (gl_futimens): Rename from futimens,
21937         now that glibc-2.6 declares futimens.
21938         * lib/utimens.h: Likewise.
21939
21940 2007-05-19  Bruno Haible  <bruno@clisp.org>
21941
21942         Avoid test failures on mingw.
21943         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
21944         * tests/test-printf-posix.sh: Likewise.
21945         * tests/test-vfprintf-posix.sh: Likewise.
21946         * tests/test-vprintf-posix.sh: Likewise.
21947
21948 2007-05-19  Bruno Haible  <bruno@clisp.org>
21949
21950         Fix *printf result for NaN, Inf, -0.0 on mingw.
21951         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
21952         * lib/vasnprintf.c: Include math.h and isnan.h.
21953         (is_infinite_or_zero): New function.
21954         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
21955         values in the %f, %F, %e, %E, %g, %G directives.
21956         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
21957         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21958         gl_PRINTF_INFINITE and test its result. Invoke
21959         gl_PREREQ_VASNPRINTF_INFINITE.
21960         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21961         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21962         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21963         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21964         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21965         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21966         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21967         * doc/functions/fprintf.texi: Update.
21968         * doc/functions/printf.texi: Update.
21969         * doc/functions/snprintf.texi: Update.
21970         * doc/functions/sprintf.texi: Update.
21971         * doc/functions/vfprintf.texi: Update.
21972         * doc/functions/vprintf.texi: Update.
21973         * doc/functions/vsnprintf.texi: Update.
21974         * doc/functions/vsprintf.texi: Update.
21975
21976 2007-05-19  Bruno Haible  <bruno@clisp.org>
21977
21978         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
21979         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
21980         Instead of multiplying with 10^k, set extra_zeroes to k.
21981         (scale10_round_long_double): Remove function.
21982
21983 2007-05-18  Bruno Haible  <bruno@clisp.org>
21984
21985         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
21986         introduced on 2007-05-06.
21987
21988 2007-05-18  Bruno Haible  <bruno@clisp.org>
21989
21990         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
21991         %g directives.
21992         * tests/test-vasprintf-posix.c (test_function): Likewise.
21993         * tests/test-snprintf-posix.h (test_function): Likewise.
21994         * tests/test-sprintf-posix.h (test_function): Likewise.
21995
21996 2007-05-18  Bruno Haible  <bruno@clisp.org>
21997
21998         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
21999         (strmatch): New function.
22000         (test_function): Test the %f directive on numbers of various exponents.
22001         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
22002         (strmatch): New function.
22003         (test_function): Test the %f directive on numbers of various exponents.
22004         * tests/test-snprintf-posix.h (strmatch): New function.
22005         (test_function): Test the %f directive on numbers of various exponents.
22006         * tests/test-sprintf-posix.h (strmatch): New function.
22007         (test_function): Test the %f directive on numbers of various exponents.
22008         * tests/test-snprintf-posix.c (SIZEOF): New macro.
22009         * tests/test-sprintf-posix.c (SIZEOF): New macro.
22010         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
22011         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
22012
22013 2007-05-18  Bruno Haible  <bruno@clisp.org>
22014
22015         Add support for 'long double' number output.
22016         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
22017         * lib/vasnprintf.c: Include math.h and float+.h.
22018         (mp_limb_t): New type.
22019         (GMP_LIMB_BITS): New macro.
22020         (mp_twolimb_t): New type.
22021         (GMP_TWOLIMB_BITS): New macro.
22022         (mpn_t): New type.
22023         (multiply, divide, convert_to_decimal, decode_long_double,
22024         scale10_round_long_double, scale10_round_decimal_long_double,
22025         floorlog10l): New functions.
22026         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
22027         for the %f, %F, %e, %E, %g, %G directives.
22028         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
22029         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22030         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
22031         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
22032         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22033         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22034         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22035         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22036         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22037         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22038         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22039         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
22040         * modules/snprintf-posix (Depends-on): Likewise.
22041         * modules/sprintf-posix (Depends-on): Likewise.
22042         * modules/vasnprintf-posix (Depends-on): Likewise.
22043         * modules/vasprintf-posix (Depends-on): Likewise.
22044         * modules/vfprintf-posix (Depends-on): Likewise.
22045         * modules/vsnprintf-posix (Depends-on): Likewise.
22046         * modules/vsprintf-posix (Depends-on): Likewise.
22047         * modules/vasnprintf (Files): Add lib/float+.h.
22048         * doc/functions/fprintf.texi: Update.
22049         * doc/functions/printf.texi: Update.
22050         * doc/functions/snprintf.texi: Update.
22051         * doc/functions/sprintf.texi: Update.
22052         * doc/functions/vfprintf.texi: Update.
22053         * doc/functions/vprintf.texi: Update.
22054         * doc/functions/vsnprintf.texi: Update.
22055         * doc/functions/vsprintf.texi: Update.
22056
22057 2007-05-18  Bruno Haible  <bruno@clisp.org>
22058
22059         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
22060
22061 2007-05-18  Bruno Haible  <bruno@clisp.org>
22062
22063         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
22064         for printing 64-bit integers. Needed for mingw.
22065
22066 2007-05-18  Bruno Haible  <bruno@clisp.org>
22067
22068         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
22069         gl_FUNC_FREXPL_WORKS.
22070         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
22071
22072 2007-05-18  Bruno Haible  <bruno@clisp.org>
22073
22074         * modules/frexpl-nolibm-tests: New file.
22075
22076         * modules/frexpl-nolibm: New file.
22077         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
22078
22079 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22080
22081         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
22082         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
22083         GCC 4.2, which otherwise issues a lot of warnings.
22084         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
22085         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
22086         Likewise.
22087         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
22088         * modules/iconv_open (iconv.h): Likewise.
22089         * modules/locale (locale.h): Likewise.
22090         * modules/netinet_in (netinet/in.h): Likewise.
22091         * modules/sys_select (sys_select.h): Likewise.
22092         * modules/sys_socket (sys/socket.h): Likewise.
22093         * modules/sys_stat (sys/stat.h): Likewise.
22094         * modules/sysexits (sysexits.h): Likewise.
22095         * modules/unistd (unistd.h): Likewise.
22096
22097 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22098
22099         * modules/closein-tests (Makefile.am): Distribute
22100         `test-closein.sh'.
22101
22102 2007-05-17  Bruno Haible  <bruno@clisp.org>
22103
22104         * tests/test-printf-posix.output: Renamed from
22105         tests/test-fprintf-posix.out.
22106         * modules/fprintf-posix-tests: Update.
22107         * modules/printf-posix-tests: Update.
22108         * modules/vfprintf-posix-tests: Update.
22109         * modules/vprintf-posix-tests: Update.
22110         * tests/test-fprintf-posix.sh: Update.
22111         * tests/test-printf-posix.sh: Update.
22112         * tests/test-vfprintf-posix.sh: Update.
22113         * tests/test-vprintf-posix.sh: Update.
22114         Reported by Ralf Wildenhues.
22115
22116 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
22117
22118         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
22119         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
22120         GCC 4.2, which otherwise issues a lot of warnings.
22121         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
22122         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
22123         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
22124         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
22125         it should no longer be needed.
22126         * lib/string_.h: Likewise.
22127         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
22128         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
22129         * modules/inttypes (inttypes.h): Likewise.
22130         * modules/math (math.h): Likewise.
22131         * modules/search (search.h): Likewise.
22132         * modules/signal (signal.h): Likewise.
22133         * modules/stdint (stdint.h): Likewise.
22134         * modules/stdio (stdio.h): Likewise.
22135         * modules/stdlib (stdlib.h): Likewise.
22136         * modules/string (string.h): Likewise.
22137         * modules/sys_time (sys/time.h): Likewise.
22138         * modules/time (time.h): Likewise.
22139         * modules/wchar (wchar.h): Likewise.
22140         * modules/wctype (wtype.h): Likewise.
22141
22142 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
22143
22144         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
22145
22146 2007-05-13  Bruno Haible  <bruno@clisp.org>
22147
22148         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
22149         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
22150         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
22151         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
22152         (gl_PREREQ_STRTOK_R): Don't require it here.
22153
22154 2007-05-13  Bruno Haible  <bruno@clisp.org>
22155
22156         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
22157         when used in C++ mode.
22158
22159 2007-05-12  Bruno Haible  <bruno@clisp.org>
22160
22161         * lib/linebuffer.h: Tweak doc.
22162         * lib/linebuffer.c: Likewise.
22163
22164 2007-05-12  James Youngman  <jay@gnu.org>
22165
22166         * lib/linebuffer.c (readlinebuffer_delim): New function,
22167         like readlinebuffer, but use a caller-specified delimiter.
22168         (readlinebuffer): Just call readlinebuffer_delim with '\n'
22169         as the delimiter.
22170         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
22171
22172 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
22173
22174         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
22175         * modules/openat (Files): Remove openat-die.c.
22176         (Depends-on): Add openat-die.
22177         * modules/openat-die: New module.
22178
22179 2007-05-06  Bruno Haible  <bruno@clisp.org>
22180
22181         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
22182         Update with info about Cygwin.
22183         * doc/functions/fprintf.texi: Update.
22184         * doc/functions/printf.texi: Update.
22185         * doc/functions/snprintf.texi: Update.
22186         * doc/functions/sprintf.texi: Update.
22187         * doc/functions/vfprintf.texi: Update.
22188         * doc/functions/vprintf.texi: Update.
22189         * doc/functions/vsnprintf.texi: Update.
22190         * doc/functions/vsprintf.texi: Update.
22191         Reported by Eric Blake.
22192
22193 2007-05-06  Bruno Haible  <bruno@clisp.org>
22194
22195         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
22196         padding ourselves for the floating-point directives.
22197         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
22198         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
22199         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22200         gl_PRINTF_FLAG_ZERO and test its result. Invoke
22201         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
22202         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22203         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
22204         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22205         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22206         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22207         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22208         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22209         * tests/test-snprintf-posix.h (test_function): Also check the width
22210         and some flags in the %f directive.
22211         * tests/test-sprintf-posix.h (test_function): Likewise.
22212         * tests/test-vasnprintf-posix.c (test_function): Likewise.
22213         * tests/test-vasprintf-posix.c (test_function): Likewise.
22214         * doc/functions/fprintf.texi: Update.
22215         * doc/functions/printf.texi: Update.
22216         * doc/functions/snprintf.texi: Update.
22217         * doc/functions/sprintf.texi: Update.
22218         * doc/functions/vfprintf.texi: Update.
22219         * doc/functions/vprintf.texi: Update.
22220         * doc/functions/vsnprintf.texi: Update.
22221         * doc/functions/vsprintf.texi: Update.
22222
22223 2007-05-06  Bruno Haible  <bruno@clisp.org>
22224
22225         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
22226         pass the ' flag character to sprintf or snprintf.
22227         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
22228         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
22229         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22230         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
22231         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
22232         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22233         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
22234         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22235         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22236         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22237         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22238         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22239         * tests/test-snprintf-posix.h (test_function): Also check the grouping
22240         flag.
22241         * tests/test-sprintf-posix.h (test_function): Likewise.
22242         * tests/test-vasnprintf-posix.c (test_function): Likewise.
22243         * tests/test-vasprintf-posix.c (test_function): Likewise.
22244         * doc/functions/fprintf.texi: Update.
22245         * doc/functions/printf.texi: Update.
22246         * doc/functions/snprintf.texi: Update.
22247         * doc/functions/sprintf.texi: Update.
22248         * doc/functions/vfprintf.texi: Update.
22249         * doc/functions/vprintf.texi: Update.
22250         * doc/functions/vsnprintf.texi: Update.
22251         * doc/functions/vsprintf.texi: Update.
22252
22253 2007-05-01  Bruno Haible  <bruno@clisp.org>
22254
22255         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
22256
22257 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
22258
22259         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
22260         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
22261
22262 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
22263
22264         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
22265         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
22266         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
22267
22268 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
22269
22270         * lib/argp-help.c (struct hol_entry): New member `ord'.
22271         (HOL_ENTRY_PTRCMP): Use ord for comparison
22272         (hol_sort): Initialize ord.
22273
22274 2007-05-01  Bruno Haible  <bruno@clisp.org>
22275
22276         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
22277         Reported by Eric Blake.
22278         * doc/gnulib.texi (Function Substitutes): Update.
22279
22280 2007-05-01  Bruno Haible  <bruno@clisp.org>
22281
22282         * doc/functions.texi: Remove file, now redundant through
22283         doc/functions/*.texi.
22284
22285 2007-05-01  Bruno Haible  <bruno@clisp.org>
22286
22287         * modules/argp (Depends-on): Add sleep.
22288
22289 2007-05-01  Bruno Haible  <bruno@clisp.org>
22290
22291         * modules/sleep-tests: New file.
22292         * tests/test-sleep.c: New file.
22293
22294         * modules/sleep: New file.
22295         * lib/sleep.c: New file.
22296         * m4/sleep.m4: New file.
22297         * lib/unistd_.h (sleep): New declaration.
22298         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
22299         HAVE_SLEEP.
22300         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
22301         * doc/functions/sleep.texi: Document the sleep module.
22302
22303 2007-05-01  Bruno Haible  <bruno@clisp.org>
22304
22305         * lib/sigprocmask.h: Remove file.
22306         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
22307         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
22308         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
22309         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
22310         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
22311         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
22312         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
22313         HAVE_SIGSET_T as a shell variable.
22314         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
22315         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
22316         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
22317         (Depends-on): Add signal. Remove verify.
22318         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
22319         (Include): Mention <signal.h> instead of sigprocmask.h.
22320         * NEWS: Mention the change.
22321         * lib/fatal-signal.c: Don't include sigprocmask.h.
22322
22323 2007-05-01  Bruno Haible  <bruno@clisp.org>
22324
22325         * modules/signal: New file.
22326         * lib/signal_.h: New file.
22327         * m4/signal_h.m4: New file.
22328
22329 2007-05-01  Bruno Haible  <bruno@clisp.org>
22330
22331         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
22332         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
22333         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
22334         HAVE_WCTYPE_CTMP_BUG into wctype.h.
22335
22336 2007-05-01  Bruno Haible  <bruno@clisp.org>
22337
22338         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
22339         configure time.
22340         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
22341         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
22342         * modules/sys_stat (Makefile.am): Substitute their values into
22343         sys/stat.h.
22344
22345 2007-05-01  Bruno Haible  <bruno@clisp.org>
22346
22347         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
22348         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
22349         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
22350
22351 2007-05-01  Bruno Haible  <bruno@clisp.org>
22352
22353         * doc/header/assert.texi: Undo last change: don't mention the gnulib
22354         'assert' module here.
22355
22356 2007-05-01  Bruno Haible  <bruno@clisp.org>
22357
22358         * doc/functions/*.texi: New files.
22359         * doc/functions/google-ranking.txt: New file.
22360         * doc/gnulib.texi (Function Substitutes): New chapter.
22361         (ctime, inet_ntoa): Remove sections.
22362         * doc/ctime.texi: Remove file.
22363         * doc/inet_ntoa.texi: Remove file.
22364         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
22365         dependencies.
22366         (%.info): New rule, specifying a --reference-limit.
22367
22368 2007-05-01  Bruno Haible  <bruno@clisp.org>
22369
22370         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
22371
22372 2007-05-01  Bruno Haible  <bruno@clisp.org>
22373
22374         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
22375         the portability of 'mkdir' to mingw systems.
22376
22377 2007-05-01  Bruno Haible  <bruno@clisp.org>
22378
22379         * doc/headers/google-ranking.txt: New file.
22380
22381 2007-04-30  Eric Blake  <ebb9@byu.net>
22382
22383         Prefer fseeko to fseek.
22384         * modules/getpass (Depends-on): Add fseeko.
22385         * lib/getpass.c (getpass): Use fseeko, not fseek.
22386
22387 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
22388
22389         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
22390         assumes the sorting is stable, while most qsort implementations
22391         are not.  Use argument addresses to ensure they never compare as
22392         equal.
22393
22394         * tests/test-argp-2.sh (usage-indent test): Fix output
22395         (func_compare): Restore diff options
22396         * tests/test-argp.c: Restore #include "progname.h"
22397
22398 2007-04-29  Bruno Haible  <bruno@clisp.org>
22399
22400         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
22401         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22402         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
22403         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22404         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
22405         (configure.ac): Define CHECK_SNPRINTF_POSIX.
22406         (TESTS, check_PROGRAMS): Add test-snprintf.
22407         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
22408         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
22409         (TESTS, check_PROGRAMS): Add test-vsnprintf.
22410         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
22411         assertions that fail on HP-UX, OSF/1, or IRIX.
22412         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
22413
22414 2007-04-29  Bruno Haible  <bruno@clisp.org>
22415
22416         * MODULES.html.sh (posix_functions): Remove 'contents'.
22417
22418 2007-04-29  Karl Berry  <karl@gnu.org>
22419
22420         * config/srclist.txt (gendocs_template_min): new entry.
22421
22422 2007-04-29  Bruno Haible  <bruno@clisp.org>
22423
22424         Work around fpurge bug on BSD systems.
22425         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
22426         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
22427         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
22428         fpurge to rpl_fpurge if the system already has this function.
22429         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
22430         the case where the system already has this function. Correct invariants
22431         on BSD systems.
22432         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
22433         BSD systems.
22434
22435 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
22436
22437         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
22438         proposed by Sven Verdoolaege.
22439
22440         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
22441         options.
22442         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
22443         (usage and help tests): Update
22444
22445 2007-04-29  Bruno Haible  <bruno@clisp.org>
22446
22447         * tests/test-fflush.c (main): Use a file of size 17, not 10.
22448         Print more information in case of failure. Disable a test on BeOS.
22449
22450 2007-04-29  Bruno Haible  <bruno@clisp.org>
22451
22452         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
22453         This helps debugging on systems on which no gdb is available.
22454
22455 2007-04-29  Bruno Haible  <bruno@clisp.org>
22456
22457         * lib/freading.h: Improve comments.
22458         * lib/fwriting.h: Likewise.
22459         * tests/test-freading.c (main): Don't check freading immediately after
22460         repositioning. Needed for glibc.
22461
22462 2007-04-29  Bruno Haible  <bruno@clisp.org>
22463
22464         * lib/freading.c (freading): Trivial simplification.
22465
22466 2007-04-28  Bruno Haible  <bruno@clisp.org>
22467
22468         * tests/test-fwriting.c (main): Also test the interaction between
22469         fflush and fwriting.
22470         * modules/fwriting-tests (Depends-on): Add fflush.
22471
22472         * tests/test-freading.c (main): Also test the interaction between
22473         fflush and freading.
22474         * modules/freading-tests (Depends-on): Add fflush.
22475
22476 2007-04-28  Bruno Haible  <bruno@clisp.org>
22477
22478         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
22479         fseeko and ftello.
22480         Suggested by Eric Blake.
22481
22482 2007-04-28  Jim Meyering  <jim@meyering.net>
22483
22484         Avoid false-negative in gl_STDINT_H's C99 conformance test.
22485         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
22486         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
22487
22488 2007-04-27  Eric Blake  <ebb9@byu.net>
22489
22490         * doc/headers/assert.texi (assert.h): Document assert module use.
22491
22492 2007-04-27  Bruno Haible  <bruno@clisp.org>
22493
22494         * doc/headers/*.texi: New files.
22495         * doc/gnulib.texi (Header File Substitutes): New chapter.
22496         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
22497         dependencies.
22498         (standards.info ,standards.html, standards.dvi): Update dependencies.
22499         (mostlyclean, clean): New targets.
22500
22501 2007-04-27  Bruno Haible  <bruno@clisp.org>
22502
22503         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
22504         * modules/sysexits (Files, Makefile.am): Update.
22505
22506         * lib/sys_socket_.h: Renamed from lib/socket_.h.
22507         * modules/sys_socket (Files, Makefile.am): Update.
22508
22509         * lib/sys_stat_.h: Renamed from lib/stat_.h.
22510         * modules/sys_stat (Files, Makefile.am): Update.
22511
22512 2007-04-27  Eric Blake  <ebb9@byu.net>
22513
22514         * lib/freading.h: Improve comments.
22515         * lib/fwriting.h: Likewise.
22516         * lib/fflush.c: Likewise.
22517
22518         Fix closein for mingw.
22519         * modules/closein-tests: Add tests for closein.
22520         * tests/test-closein.c: New file.
22521         * tests/test-closein.sh: Likewise.
22522         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
22523         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
22524
22525 2007-04-27  Bruno Haible  <bruno@clisp.org>
22526
22527         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
22528         version is < 6.
22529         * lib/math_.h [__DECC]: Likewise.
22530         * lib/stdio_.h [__DECC]: Likewise.
22531         * lib/stdlib_.h [__DECC]: Likewise.
22532         * lib/string_.h [__DECC]: Likewise.
22533         * lib/time_.h [__DECC]: Likewise.
22534         * lib/wchar_.h [__DECC]: Likewise.
22535         * lib/wctype_.h [__DECC]: Likewise.
22536
22537 2007-04-27  Bruno Haible  <bruno@clisp.org>
22538
22539         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
22540
22541 2007-04-27  Bruno Haible  <bruno@clisp.org>
22542
22543         * lib/fflush.c: Add comments.
22544         * modules/fpurge-tests (Depends-on): Add fflush.
22545         * modules/freadable-tests (Depends-on): Likewise.
22546         * modules/fwritable-tests (Depends-on): Likewise.
22547
22548 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
22549
22550         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
22551         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
22552         Report by Bruno Haible <bruno@clisp.org>.
22553
22554 2007-04-26  Eric Blake  <ebb9@byu.net>
22555
22556         Fix fflush on mingw.
22557         * modules/fflush (Depends-on): Add freading.
22558         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
22559         but unread data.
22560
22561 2007-04-26  Eric Blake  <ebb9@byu.net>
22562         and Bruno Haible  <bruno@clisp.org>
22563
22564         Implement freading and fwriting.
22565         * lib/freading.c: New file.
22566         * lib/freading.h: Likewise.
22567         * m4/freading.m4: Likewise.
22568         * modules/freading: Likewise.
22569         * modules/freading-tests: Likewise.
22570         * tests/test-freading.c: Likewise.
22571         * lib/fwriting.c: New file.
22572         * lib/fwriting.h: Likewise.
22573         * m4/fwriting.m4: Likewise.
22574         * modules/fwriting: Likewise.
22575         * modules/fwriting-tests: Likewise.
22576         * tests/test-fwriting.c: Likewise.
22577         * MODULES.html.sh (File stream based Input/Output): Mention them.
22578
22579 2007-04-26  Bruno Haible  <bruno@clisp.org>
22580
22581         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
22582         'long' when we assume it.
22583         Suggested by Eric Blake.
22584
22585 2007-04-26  Bruno Haible  <bruno@clisp.org>
22586
22587         Ensure fseeko, ftello are declared on glibc systems.
22588         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
22589         * modules/fseeko (configure.ac-early): Likewise.
22590         * modules/ftello (configure.ac-early): Likewise.
22591         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
22592         AC_FUNC_FSEEKO for this.
22593         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
22594         (gl_CHECK_FSEEKO): Remove macro.
22595
22596 2007-04-26  Bruno Haible  <bruno@clisp.org>
22597
22598         * tests/test-fflush.c (main): Also check the ftell result after
22599         fflush and fseek/fseeko.
22600         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
22601         file descriptor position cache in the stream.
22602         * lib/fseeko.c (rpl_fseeko): Likewise.
22603
22604 2007-04-26  Bruno Haible  <bruno@clisp.org>
22605
22606         * modules/fflush-tests (Depends-on): Add fseeko.
22607
22608 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
22609             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22610
22611         * lib/argz_.h: ensure error_t definition is obtained in same
22612         mechanism system argz.h would have.
22613         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
22614         argz facilities are known bad.  Err on the side of caution if
22615         cross-compiling.
22616
22617 2007-04-25  Eric Blake  <ebb9@byu.net>
22618
22619         * lib/fpurge.c (includes): Use stdlib.h for free.
22620         * tests/test-fflush.c (main): Also test fflush-fseeko.
22621
22622 2007-04-25  Bruno Haible  <bruno@clisp.org>
22623
22624         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
22625         * lib/fseeko.c: New file.
22626         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
22627         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
22628         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
22629         gl_FUNC_FSEEKO.
22630         (gl_FUNC_FSEEKO): Invoke it.
22631         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
22632         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
22633         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
22634
22635 2007-04-25  Bruno Haible  <bruno@clisp.org>
22636
22637         * modules/fflush (Depends-on): Add ftello.
22638
22639 2007-04-25  Bruno Haible  <bruno@clisp.org>
22640
22641         * modules/ftello-tests: New file.
22642         * tests/test-ftello.c: New file.
22643
22644         * modules/ftello: New file.
22645         * m4/ftello.m4: New file.
22646         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
22647         HAVE_FTELLO.
22648         * lib/stdio_.h (ftello): New declaration.
22649         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
22650         HAVE_FTELLO.
22651
22652 2007-04-25  Bruno Haible  <bruno@clisp.org>
22653
22654         * modules/fseeko-tests: New file.
22655         * tests/test-fseeko.c: New file.
22656
22657         * modules/fseeko: New file.
22658         * m4/fseeko.m4: New file.
22659         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
22660         HAVE_FSEEKO.
22661         * lib/stdio_.h (fseeko): New declaration.
22662         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
22663         HAVE_FSEEKO.
22664
22665 2007-04-25  Bruno Haible  <bruno@clisp.org>
22666
22667         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
22668
22669 2007-04-25  Bruno Haible  <bruno@clisp.org>
22670
22671         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
22672         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
22673         * tests/test-unistd.c: Likewise.
22674         * tests/test-fcntl.c: Likewise.
22675
22676 2007-04-23  Eric Blake  <ebb9@byu.net>
22677
22678         * lib/fflush.c: Fix missing include.
22679         Reported by Bruno Haible.
22680
22681 2007-04-23  Bruno Haible  <bruno@clisp.org>
22682
22683         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
22684         Reported by Eric Blake.
22685
22686 2007-04-23  Bruno Haible  <bruno@clisp.org>
22687
22688         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
22689
22690 2007-04-23  Bruno Haible  <bruno@clisp.org>
22691
22692         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
22693
22694 2007-04-23  Bruno Haible  <bruno@clisp.org>
22695
22696         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
22697         Needed on HP-UX 11.
22698
22699 2007-04-16  Eric Blake  <ebb9@byu.net>
22700
22701         Make fflush rely on fpurge.
22702         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
22703         open coding all variants.
22704         * modules/fflush (Depends-on): Add fpurge and unistd.
22705         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
22706         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
22707
22708         Fix --with-tests compilation on cygwin.
22709         * modules/argmatch-tests (Makefile.am): List gnulib library first
22710         in LDADD.
22711         * modules/argp-tests (Makefile.am): Likewise.
22712         * modules/array-list-tests (Makefile.am): Likewise.
22713         * modules/array-oset-tests (Makefile.am): Likewise.
22714         * modules/avltree-list-tests (Makefile.am): Likewise.
22715         * modules/avltree-oset-tests (Makefile.am): Likewise.
22716         * modules/avltreehash-list-tests (Makefile.am): Likewise.
22717         * modules/carray-list-tests (Makefile.am): Likewise.
22718         * modules/dirname-tests (Makefile.am): Likewise.
22719         * modules/frexp-tests (Makefile.am): Likewise.
22720         * modules/isnanl-tests (Makefile.am): Likewise.
22721         * modules/linked-list-tests (Makefile.am): Likewise.
22722         * modules/linkedhash-list-tests (Makefile.am): Likewise.
22723         * modules/lock-tests (Makefile.am): Likewise.
22724         * modules/rbtree-list-tests (Makefile.am): Likewise.
22725         * modules/rbtree-oset-tests (Makefile.am): Likewise.
22726         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
22727         * modules/tls-tests (Makefile.am): Likewise.
22728         * modules/tsearch-tests (Makefile.am): Likewise.
22729         * modules/xvasprintf-tests (Makefile.am): Likewise.
22730
22731         Fix fpurge for cygwin.
22732         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
22733         value.
22734         * modules/fpurge-tests (Depends-on): Clean up trash.
22735
22736 2007-04-16  Simon Josefsson  <simon@josefsson.org>
22737
22738         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
22739
22740         * m4/autobuild.m4: Re-indent.
22741
22742 2007-04-13  Bruno Haible  <bruno@clisp.org>
22743
22744         * modules/fpurge-tests: New file.
22745         * tests/test-fpurge.c: New file.
22746
22747         * modules/fpurge: New file.
22748         * lib/fpurge.h: New file.
22749         * lib/fpurge.c: New file.
22750         * m4/fpurge.m4: New file.
22751
22752 2007-04-13  Bruno Haible  <bruno@clisp.org>
22753
22754         * modules/fbufmode-tests: New file.
22755         * tests/test-fbufmode.c: New file.
22756
22757         * modules/fbufmode: New file.
22758         * lib/fbufmode.h: New file.
22759         * lib/fbufmode.c: New file.
22760         * m4/fbufmode.m4: New file.
22761
22762 2007-04-13  Bruno Haible  <bruno@clisp.org>
22763
22764         * modules/fwritable-tests: New file.
22765         * tests/test-fwritable.c: New file.
22766
22767         * modules/fwritable: New file.
22768         * lib/fwritable.h: New file.
22769         * lib/fwritable.c: New file.
22770         * m4/fwritable.m4: New file.
22771
22772 2007-04-13  Bruno Haible  <bruno@clisp.org>
22773
22774         * modules/freadable-tests: New file.
22775         * tests/test-freadable.c: New file.
22776
22777         * modules/freadable: New file.
22778         * lib/freadable.h: New file.
22779         * lib/freadable.c: New file.
22780         * m4/freadable.m4: New file.
22781
22782 2007-04-13  Bruno Haible  <bruno@clisp.org>
22783
22784         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
22785         MOSTLYCLEANFILES.
22786
22787 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
22788
22789         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
22790         gzip bootstrap.conf to avoid dragging in i18n machinery.
22791         (gnulib_tool_option): Use it.
22792
22793 2007-04-13  Bruno Haible  <bruno@clisp.org>
22794
22795         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
22796         %F directives.
22797         * tests/test-vasprintf-posix.c (test_function): Likewise.
22798         * tests/test-snprintf-posix.h (test_function): Likewise.
22799         * tests/test-sprintf-posix.h (test_function): Likewise.
22800         * tests/test-fprintf-posix.h (test_function): Likewise.
22801         * tests/test-printf-posix.h (test_function): Likewise.
22802         * tests/test-fprintf-posix.out: Likewise.
22803
22804 2007-04-13  Bruno Haible  <bruno@clisp.org>
22805
22806         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
22807         * modules/tls-tests (configure.ac): Likewise.
22808         Reported by Arto C. Nirkko <anirkko@insel.ch>.
22809
22810 2007-04-13  Bruno Haible  <bruno@clisp.org>
22811
22812         * lib/tls.c (glthread_tls_get): Fix return type.
22813         Patch by Arto C. Nirkko <anirkko@insel.ch>.
22814
22815 2007-04-12  Eric Blake  <ebb9@byu.net>
22816
22817         * modules/gettime (Depends-on): Remove gettime.
22818         Reported by Dmitry V. Levin.
22819
22820 2007-04-12  Bruno Haible  <bruno@clisp.org>
22821
22822         * modules/fflush (Include): Mention <stdio.h>.
22823         * modules/strtoimax (Include): Mention <inttypes.h>.
22824         * modules/strtoumax (Include): Likewise.
22825
22826 2007-04-12  Eric Blake  <ebb9@byu.net>
22827
22828         * .cvsignore: New file.
22829         * .gitignore: Likewise.
22830
22831 2007-04-12  Bruno Haible  <bruno@clisp.org>
22832
22833         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
22834         not before, since $(LDADD) often contains libgnu.a.
22835         * modules/striconv-tests (test_striconv_LDADD): Likewise.
22836         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
22837         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
22838         Needed on Cygwin.
22839
22840 2007-04-12  Eric Blake  <ebb9@byu.net>
22841
22842         Work around glibc's failure to flush stdin on fclose.
22843         * lib/closein.c (close_stdin): Flush stdin before closing.
22844
22845         Work around glibc's failure to reset seekable stdin on exit.
22846         * modules/closein: New module.
22847         * lib/closein.c: New file.
22848         * lib/closein.h: Likewise.
22849         * m4/closein.m4: Likewise.
22850         * MODULES.html.sh (File stream based Input/Output): Document it.
22851
22852 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22853
22854         * gnulib-tool: Rename generated 'autobuild' script to
22855         'do-autobuild' in --create-megatestdir output.
22856
22857         * doc/gnulib.texi (Build robot for gnulib): Fix.
22858
22859 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22860
22861         * modules/sysexits (Depends-on): Add absolute-header.
22862
22863 2007-04-12  Eric Blake  <ebb9@byu.net>
22864
22865         No need to preserve errno on success.
22866         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
22867         Reported by Bruno Haible.
22868
22869 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22870
22871         * MODULES.html.sh (Support for maintaining and releasing
22872         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
22873
22874 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22875
22876         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
22877
22878 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22879
22880         * modules/autobuild: New module.
22881
22882         * m4/autobuild.m4: New file.
22883
22884 2007-04-11  Bruno Haible  <bruno@clisp.org>
22885
22886         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
22887         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
22888         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
22889         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
22890         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22891         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22892         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22893         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22894         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22895         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22896         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
22897         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22898         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22899         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
22900         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22901         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22902         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
22903         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22904         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22905         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
22906         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22907         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22908         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
22909         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22910         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22911         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
22912         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22913         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22914         Reported by Eric Blake.
22915
22916 2007-04-11  Bruno Haible  <bruno@clisp.org>
22917
22918         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
22919
22920 2007-04-10  Bruno Haible  <bruno@clisp.org>
22921
22922         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
22923         for NaN and Infinity. Needed on FreeBSD 6.1.
22924         * tests/test-vasnprintf-posix.c (test_function): Undo last change
22925         regarding results for "%010a" of Infinity and NaN.
22926         * tests/test-vasprintf-posix.c (test_function): Likewise.
22927         * tests/test-snprintf-posix.h (test_function): Likewise.
22928         * tests/test-sprintf-posix.h (test_function): Likewise.
22929         * tests/test-fprintf-posix.h (test_function): Likewise.
22930         * tests/test-printf-posix.h (test_function): Likewise.
22931         * tests/test-fprintf-posix.out: Likewise.
22932
22933 2007-04-10  Bruno Haible  <bruno@clisp.org>
22934
22935         * modules/locale-tests: New file.
22936         * tests/test-locale.c: New file.
22937
22938         * modules/locale: New file.
22939         * lib/locale_.h: New file.
22940         * m4/locale_h.m4: New file.
22941
22942 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
22943             Bruno Haible  <bruno@clisp.org>
22944
22945         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
22946         be determined, test for availability of the copysignf, copysign,
22947         copysignl functions.
22948         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
22949         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
22950         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
22951
22952 2007-04-09  Eric Blake  <ebb9@byu.net>
22953
22954         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
22955         * modules/stdio (Makefile.am): Support fflush.
22956         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
22957         * modules/fflush: New file.
22958         * lib/fflush.c: Likewise.
22959         * m4/fflush.m4: Likewise.
22960         * modules/fflush-tests: New test.
22961         * tests/test-fflush.c: Likewise.
22962         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
22963
22964 2007-04-06  Bruno Haible  <bruno@clisp.org>
22965
22966         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
22967         (VASNPRINTF): Use signbit for faster determination whether to print a
22968         minus sign.
22969         * modules/vasnprintf (Files): Remove lib/float+.h.
22970         * modules/fprintf-posix (Depends-on): Add signbit.
22971         * modules/snprintf-posix (Depends-on): Likewise.
22972         * modules/sprintf-posix (Depends-on): Likewise.
22973         * modules/vasnprintf-posix (Depends-on): Likewise.
22974         * modules/vasprintf-posix (Depends-on): Likewise.
22975         * modules/vfprintf-posix (Depends-on): Likewise.
22976         * modules/vsnprintf-posix (Depends-on): Likewise.
22977         * modules/vsprintf-posix (Depends-on): Likewise.
22978
22979 2007-04-06  Bruno Haible  <bruno@clisp.org>
22980
22981         * tests/test-frexp.c (main): Test also the sign bit of zero results.
22982         * tests/test-frexpl.c (main): Likewise.
22983         * tests/test-ldexpl.c (main): Likewise.
22984         * modules/frexp-tests (Depends-on): Add signbit.
22985         * modules/frexpl-tests (Depdends-on): Likewise.
22986         * modules/ldexpl-tests (Depdends-on): Likewise.
22987
22988 2007-04-06  Bruno Haible  <bruno@clisp.org>
22989
22990         * modules/signbit-tests: New file.
22991         * tests/test-signbit.c: New file.
22992
22993         * modules/signbit: New file.
22994         * lib/signbitf.c: New file.
22995         * lib/signbitd.c: New file.
22996         * lib/signbitl.c: New file.
22997         * m4/signbit.m4: New file.
22998         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
22999         (signbit): New macro.
23000         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
23001         REPLACE_SIGNBIT.
23002         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
23003         REPLACE_FREXPL into math.h.
23004
23005 2007-04-06  Bruno Haible  <bruno@clisp.org>
23006
23007         * modules/isnanf-nolibm-tests: New file.
23008         * tests/test-isnanf.c: New file.
23009
23010         * modules/isnanf-nolibm: New file.
23011         * lib/isnanf.h: New file.
23012         * lib/isnanf.c: New file.
23013         * lib/isnan.c: Consider the USE_FLOAT macro.
23014         * m4/isnanf.m4: New file.
23015
23016 2007-04-06  Bruno Haible  <bruno@clisp.org>
23017
23018         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
23019         (Link): New section.
23020
23021         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
23022
23023 2007-04-06  Bruno Haible  <bruno@clisp.org>
23024
23025         Assume the 'long double' type.
23026         * m4/longdouble.m4: Remove file.
23027         * config/srclist.txt: Don't mention longdouble.m4.
23028         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
23029         * lib/float+.h: Likewise.
23030         * lib/frexp.c: Likewise.
23031         * lib/printf-args.h: Likewise.
23032         * lib/printf-args.c: Likewise.
23033         * lib/printf-frexp.c: Likewise.
23034         * lib/printf-parse.c: Likewise.
23035         * lib/vasnprintf.c: Likewise.
23036         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
23037         * m4/intl.m4: Likewise.
23038         * m4/isnanl.m4: Likewise.
23039         * m4/printf.m4: Likewise.
23040         * m4/printf-frexpl.m4: Likewise.
23041         * m4/vasnprintf.m4: Likewise.
23042         * modules/allocsa (Files): Remove m4/longdouble.m4.
23043         * modules/gettext (Files): Likewise.
23044         * modules/relocatable-prog-wrapper (Files): Likewise.
23045         * modules/vasnprintf (Files): Likewise.
23046         * modules/isnanl (Files): Likewise.
23047         (Include): Simplify.
23048         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
23049         (Include): Simplify.
23050         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
23051         (Include): Simplify.
23052         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
23053         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23054         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
23055         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23056         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
23057         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23058         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
23059         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23060         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
23061         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23062         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
23063         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
23064         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
23065         * tests/test-isnanl.c: Likewise.
23066         * tests/test-snprintf-posix.h: Likewise.
23067         * tests/test-sprintf-posix.h: Likewise.
23068         * tests/test-vasnprintf-posix.c: Likewise.
23069         * tests/test-vasnprintf-posix2.c: Likewise.
23070         * tests/test-vasprintf-posix.c: Likewise.
23071
23072 2007-04-06  Bruno Haible  <bruno@clisp.org>
23073
23074         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
23075         * lib/math_.h [__DECC]: Include the overridden include file through
23076         #include_next, outside the double-inclusion guard.
23077         * lib/stdio_.h [__DECC]: Likewise.
23078         * lib/stdlib_.h [__DECC]: Likewise.
23079         * lib/string_.h [__DECC]: Likewise.
23080         * lib/time_.h [__DECC]: Likewise.
23081         * lib/wchar_.h [__DECC]: Likewise.
23082         * lib/wctype_.h [__DECC]: Likewise.
23083         * lib/inttypes_.h [__DECC]: Likewise.
23084         Reported by Albert Chin <china@thewrittenword.com> in
23085         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
23086
23087 2007-04-04  Eric Blake  <ebb9@byu.net>
23088
23089         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
23090         1.5.x.
23091
23092 2007-04-04  Bruno Haible  <bruno@clisp.org>
23093
23094         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
23095         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
23096
23097 2007-04-04  Bruno Haible  <bruno@clisp.org>
23098
23099         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
23100         results for "%010a" of Infinity and NaN.
23101         * tests/test-vasprintf-posix.c (test_function): Likewise.
23102         * tests/test-snprintf-posix.h (test_function): Likewise.
23103         * tests/test-sprintf-posix.h (test_function): Likewise.
23104         * tests/test-fprintf-posix.h (test_function): Remove these tests.
23105         * tests/test-printf-posix.h (test_function): Likewise.
23106         * tests/test-fprintf-posix.out: Update.
23107         Needed for FreeBSD 6.1.
23108
23109 2007-04-04  Bruno Haible  <bruno@clisp.org>
23110
23111         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
23112         directly used by the gnulib modules nor by gnulib-tool.
23113
23114 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
23115
23116         * DEPENDENCIES: Give overall description of version dependency
23117         desirability.  Use more-typical names for apps.
23118         Add shell, coreutils, diffutils, grep, tar, gzip.
23119
23120 2007-04-04  Simon Josefsson  <simon@josefsson.org>
23121
23122         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
23123
23124 2007-04-04  Karl Berry  <karl@gnu.org>
23125
23126         * MODULES.html.sh (func_module): missing '.
23127
23128 2007-04-03  Bruno Haible  <bruno@clisp.org>
23129
23130         * modules/argmatch-tests (Makefile.am): New variable
23131         test_argmatch_LDADD.
23132         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
23133         * modules/array-list-tests (Makefile.am): New variable
23134         test_array_list_LDADD.
23135         * modules/array-oset-tests (Makefile.am): New variable
23136         test_array_oset_LDADD.
23137         * modules/avltree-list-tests (Makefile.am): New variable
23138         test_avltree_list_LDADD.
23139         * modules/avltree-oset-tests (Makefile.am): New variable
23140         test_avltree_oset_LDADD.
23141         * modules/avltreehash-list-tests (Makefile.am): New variable
23142         test_avltreehash_list_LDADD.
23143         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
23144         test_canonicalize_lgpl_LDADD.
23145         * modules/carray-list-tests (Makefile.am): New variable
23146         test_carray_list_LDADD.
23147         * modules/dirname-tests (Makefile.am): New variable
23148         test_dirname_LDADD.
23149         * modules/linked-list-tests (Makefile.am): New variable
23150         test_linked_list_LDADD.
23151         * modules/linkedhash-list-tests (Makefile.am): New variable
23152         test_linkedhash_list_LDADD.
23153         * modules/rbtree-list-tests (Makefile.am): New variable
23154         test_rbtree_list_LDADD.
23155         * modules/rbtree-oset-tests (Makefile.am): New variable
23156         test_rbtree_oset_LDADD.
23157         * modules/rbtreehash-list-tests (Makefile.am): New variable
23158         test_rbtreehash_list_LDADD.
23159         * modules/xvasprintf-tests (Makefile.am): New variable
23160         test_xvasprintf_LDADD.
23161         Reported by Eric Blake.
23162
23163 2007-04-03  Eric Blake  <ebb9@byu.net>
23164
23165         * DEPENDENCIES: Weaken m4 requirements.
23166
23167 2007-04-03  Bruno Haible  <bruno@clisp.org>
23168
23169         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
23170         * modules/isnanl-tests (configure.ac): Likewise.
23171
23172 2007-04-03  Ben Pfaff  <blp@gnu.org>
23173
23174         * modules/iconv_open: Add $(srcdir)/ to source directory
23175         references in Makefile fragments that call gperf, to fix VPATH
23176         builds.
23177
23178 2007-04-03  Bruno Haible  <bruno@clisp.org>
23179
23180         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
23181         * lib/ldexpl.c: Undo last change.
23182
23183 2007-04-03  Bruno Haible  <bruno@clisp.org>
23184
23185         * modules/printf-frexpl (Depends-on): Undo last change.
23186         (Files): Add m4/ldexpl.m4.
23187
23188 2007-04-03  Bruno Haible  <bruno@clisp.org>
23189
23190         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
23191         * modules/isnanl (Link): New section.
23192
23193         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
23194         * modules/frexp (Link): New section.
23195
23196         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
23197         * modules/frexpl (Link): New section.
23198
23199         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
23200         * modules/ldexpl (Link): New section.
23201
23202 2007-04-03  Bruno Haible  <bruno@clisp.org>
23203
23204         * modules/TEMPLATE-EXTENDED: New file.
23205         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
23206
23207 2007-04-03  Bruno Haible  <bruno@clisp.org>
23208
23209         * DEPENDENCIES: New file.
23210         Suggested by Simon Josefsson.
23211
23212 2007-04-03  Bruno Haible  <bruno@clisp.org>
23213
23214         * doc/gnulib.texi: Escape @.
23215
23216 2007-04-03  James Youngman  <jay@gnu.org>
23217         and Paul Eggert  <eggert@cs.ucla.edu>
23218
23219         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
23220         birthtime on all systems that have birthtime, not just those which
23221         use st_birthtimensec rather than st_birthtim.  Putting zero in
23222         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
23223         that the birth time is not available for files on an NFS mount.
23224
23225 2007-04-03  Simon Josefsson  <simon@josefsson.org>
23226
23227         * modules/memxor: Move back from crypto/, suggested by Bruno.
23228         * modules/crypto/hmac-sha1: Fix memxor dependency.
23229
23230         * modules/crypto/gc: Moved from ../.
23231
23232 2007-04-02  Eric Blake  <ebb9@byu.net>
23233
23234         * lib/ldexpl.c (includes): Avoid libm.
23235
23236         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
23237
23238 2007-04-02  Bruno Haible  <bruno@clisp.org>
23239
23240         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
23241         on IRIX.
23242
23243 2007-04-02  Bruno Haible  <bruno@clisp.org>
23244
23245         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
23246         x86 or x86_64 platforms running MacOS X.
23247         Reported by Ryan Schmidt <@ryandesign.com>.
23248
23249 2007-04-02  Bruno Haible  <bruno@clisp.org>
23250
23251         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
23252         i386.
23253
23254 2007-04-01  Simon Josefsson  <simon@josefsson.org>
23255
23256         * modules/crypto/arcfour: Moved from ../.
23257         * modules/crypto/arcfour-tests: Moved from ../.
23258         * modules/crypto/arctwo: Moved from ../.
23259         * modules/crypto/arctwo-tests: Moved from ../.
23260         * modules/crypto/des: Moved from ../.
23261         * modules/crypto/des-tests: Moved from ../.
23262         * modules/crypto/gc-arcfour: Moved from ../.
23263         * modules/crypto/gc-arcfour-tests: Moved from ../.
23264         * modules/crypto/gc-arctwo: Moved from ../.
23265         * modules/crypto/gc-arctwo-tests: Moved from ../.
23266         * modules/crypto/gc-des: Moved from ../.
23267         * modules/crypto/gc-des-tests: Moved from ../.
23268         * modules/crypto/gc-hmac-md5: Moved from ../.
23269         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
23270         * modules/crypto/gc-hmac-sha1: Moved from ../.
23271         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
23272         * modules/crypto/gc-md2: Moved from ../.
23273         * modules/crypto/gc-md2-tests: Moved from ../.
23274         * modules/crypto/gc-md4: Moved from ../.
23275         * modules/crypto/gc-md4-tests: Moved from ../.
23276         * modules/crypto/gc-md5: Moved from ../.
23277         * modules/crypto/gc-md5-tests: Moved from ../.
23278         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
23279         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
23280         * modules/crypto/gc-random: Moved from ../.
23281         * modules/crypto/gc-rijndael: Moved from ../.
23282         * modules/crypto/gc-rijndael-tests: Moved from ../.
23283         * modules/crypto/gc-sha1: Moved from ../.
23284         * modules/crypto/gc-sha1-tests: Moved from ../.
23285         * modules/crypto/gc-tests: Moved from ../.
23286         * modules/crypto/hmac-md5: Moved from ../.
23287         * modules/crypto/hmac-md5-tests: Moved from ../.
23288         * modules/crypto/hmac-sha1: Moved from ../.
23289         * modules/crypto/hmac-sha1-tests: Moved from ../.
23290         * modules/crypto/md2: Moved from ../.
23291         * modules/crypto/md2-tests: Moved from ../.
23292         * modules/crypto/md4: Moved from ../.
23293         * modules/crypto/md4-tests: Moved from ../.
23294         * modules/crypto/md5: Moved from ../.
23295         * modules/crypto/md5-tests: Moved from ../.
23296         * modules/crypto/memxor: Moved from ../.
23297         * modules/crypto/rijndael: Moved from ../.
23298         * modules/crypto/rijndael-tests: Moved from ../.
23299         * modules/crypto/sha1: Moved from ../.
23300
23301 2007-03-30  James Youngman  <jay@gnu.org>
23302
23303         * tests/test-stat-time.c (prepare_test): use chmod() rather than
23304         rename() to change the ctime of a file (because ctime is unaffected
23305         by rename on jfs2 on AIX 5.1).
23306         (main): Start by doing cleanup, in case a previous run failed leaving
23307         test files behind.
23308
23309 2007-03-31  Bruno Haible  <bruno@clisp.org>
23310
23311         Support old proprietary implementations of iconv.
23312         * modules/iconv_open: New file.
23313         * lib/iconv_.h: New file.
23314         * m4/iconv_h.m4: New file.
23315         * lib/iconv_open.c: New file.
23316         * lib/iconv_open-aix.gperf: New file.
23317         * lib/iconv_open-hpux.gperf: New file.
23318         * lib/iconv_open-irix.gperf: New file.
23319         * lib/iconv_open-osf.gperf: New file.
23320         * m4/iconv_open.m4: New file.
23321         * modules/linebreak (Depends-on): Add iconv_open.
23322         * modules/striconv (Depends-on): Likewise.
23323         * modules/striconveh (Depends-on): Likewise.
23324         * modules/unicodeio (Depends-on): Likewise.
23325         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
23326         (iconv_t)(-1).
23327         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
23328         conversion if cd is (iconv_t)(-1).
23329         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
23330         is not possible.
23331
23332 2007-03-31  Bruno Haible  <bruno@clisp.org>
23333
23334         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
23335         work on Solaris either. Protect also second use of "autodetect_jp".
23336
23337 2007-03-31  Bruno Haible  <bruno@clisp.org>
23338
23339         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
23340         the function is not present.
23341
23342 2007-03-31  Bruno Haible  <bruno@clisp.org>
23343
23344         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
23345         the function is not present.
23346
23347 2007-03-31  Bruno Haible  <bruno@clisp.org>
23348
23349         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
23350         a bug in HP-UX iconv_open().
23351
23352 2007-03-31  Bruno Haible  <bruno@clisp.org>
23353
23354         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
23355         (Mathematics <math.h>): New section, add fpieee.
23356         (Input/output <stdio.h>): Add fseterr.
23357         (Mathematics <math.h>): New section, add printf-frexp.
23358         (Container data structures): Add sublist.
23359         (Core language properties): Add fpucw, inline.
23360         (Functions for greatest-width integer types <inttypes.h>): Add
23361         imaxabs, imaxdiv, inttypes.
23362         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
23363         isnanl-nolibm, ldexp.
23364         (Mathematics <math.h>): New section, add printf-frexpl.
23365         (Support for systems lacking POSIX:2001): Add fprintf-posix,
23366         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
23367         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
23368         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
23369         (Unicode string functions): Add unistr/u*-mbtoucr.
23370         (Java): Add javacomp-script, javaexec-script.
23371         (C#): Add csharpcomp-script, csharpexec-script.
23372         (Support for building libraries and executables): Add havelib,
23373         relocatable-*.
23374         (Support for maintaining and releasing projects): Renamed from
23375         'Support for maintaining and release projects'. Add announce-gen.
23376
23377 2007-03-31  Bruno Haible  <bruno@clisp.org>
23378
23379         * README: Talk primarily about git.
23380         (git and CVS): Renamed from CVS.
23381         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
23382         gnulib is available through git.
23383         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
23384
23385 2007-03-30  Bruno Haible  <bruno@clisp.org>
23386
23387         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
23388         * lib/poll_.h: Likewise.
23389         * lib/stat_.h: Likewise.
23390         * lib/sys_time_.h: Likewise.
23391         * lib/sysexit_.h: Likewise.
23392         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
23393         * lib/stdbool_.h: Likewise.
23394         * lib/byteswap_.h: Add double-inclusion guard.
23395
23396 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
23397
23398         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
23399
23400 2007-03-30  Karl Berry  <karl@gnu.org>
23401
23402         * config/srclist-update: double space after USA in the license
23403         substitution, since that's how it's usually (?) written.
23404
23405 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
23406
23407         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
23408         reported by Bruno Haible.
23409
23410 2007-03-29  Bruno Haible  <bruno@clisp.org>
23411
23412         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
23413         a bug in AIX iconv().
23414
23415 2007-03-29  Bruno Haible  <bruno@clisp.org>
23416
23417         * modules/ldexpl-tests: New file.
23418         * tests/test-ldexpl.c: New file.
23419
23420 2007-03-29  Bruno Haible  <bruno@clisp.org>
23421
23422         * lib/ldexpl.c: Include fpucw.h.
23423         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
23424         multiplication.
23425         * modules/ldexpl (Depends-on): Add fpucw.
23426
23427 2007-03-29  Bruno Haible  <bruno@clisp.org>
23428
23429         * modules/ldexpl: New file.
23430         * m4/ldexpl.m4: New file.
23431         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
23432         set.
23433         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
23434         REPLACE_LDEXPL.
23435         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
23436         REPLACE_LDEXPL.
23437         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
23438         gl_FUNC_LDEXPL_WORKS.
23439         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
23440         * modules/mathl (Files): Remove lib/ldexpl.c.
23441         (Depends-on): Add ldexpl.
23442
23443 2007-03-29  Bruno Haible  <bruno@clisp.org>
23444
23445         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
23446
23447 2007-03-29  Bruno Haible  <bruno@clisp.org>
23448
23449         * tests/test-striconveh.c (main): Don't assume that a direct conversion
23450         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
23451         and possibly also HP-UX.
23452         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
23453         work on AIX, IRIX, HP-UX, OSF/1.
23454         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
23455         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
23456         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
23457         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
23458         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
23459         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
23460
23461 2007-03-29  Bruno Haible  <bruno@clisp.org>
23462
23463         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
23464
23465 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
23466
23467         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
23468         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
23469
23470 2007-03-29  Eric Blake  <ebb9@byu.net>
23471
23472         * lib/acl-internal.h: Remove redundant include.
23473         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
23474         Cygwin when a file is locked.
23475
23476 2007-03-29  Bruno Haible  <bruno@clisp.org>
23477
23478         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
23479         file.
23480         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
23481
23482 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
23483
23484         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
23485         try to remove a parent directory if the child couldn't be removed
23486         (except for the first rmdir, which could fail because the child
23487         doesn't exist).  Problem reported by Jeff Blaine in
23488         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
23489
23490 2007-03-28  Bruno Haible  <bruno@clisp.org>
23491
23492         * lib/striconveh.c (utf8conv_carefully): New function.
23493         (mem_cd_iconveh_internal): Invoke it.
23494
23495 2007-03-28  Bruno Haible  <bruno@clisp.org>
23496
23497         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
23498         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
23499         input.
23500         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
23501         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
23502         unistr/u8-uctomb.
23503
23504 2007-03-28  Bruno Haible  <bruno@clisp.org>
23505
23506         * modules/unistr/u8-mbtoucr: New file.
23507         * lib/unistr/u8-mbtoucr.c: New file.
23508         * modules/unistr/u16-mbtoucr: New file.
23509         * lib/unistr/u16-mbtoucr.c: New file.
23510         * modules/unistr/u16-mbtoucr: New file.
23511         * lib/unistr/u16-mbtoucr.c: New file.
23512         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
23513
23514 2007-03-27  Simon Josefsson  <simon@josefsson.org>
23515             Bruno Haible  <bruno@clisp.org>
23516
23517         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
23518         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
23519         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
23520
23521         * m4/stdio_h.m4: Add stubs for vasprintf too.
23522
23523         * modules/stdio: Support vasprintf in sed command.
23524
23525         * modules/vasprintf: Depend on stdio for prototypes.  Remove
23526         vasprintf.h.  Add stdio module indicator.
23527
23528         * lib/stdio_.h: Declare asprintf and vasprintf, based on
23529         vasprintf.h.
23530
23531         * lib/vasprintf.h: File removed.
23532
23533         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
23534         * lib/vasprintf.c: Ditto.
23535         * lib/xvasprintf.c: Ditto.
23536         * tests/test-vasprintf-posix.c: Ditto.
23537         * tests/test-vasprintf.c: Ditto.
23538
23539 2007-03-27  Bruno Haible  <bruno@clisp.org>
23540
23541         Make vasnprintf multithread-safe.
23542         * lib/vasnprintf.c (decimal_point_char): New function.
23543         (VASNPRINTF): Use it.
23544         Suggested by Simon Josefsson.
23545
23546 2007-03-27  Eric Blake  <ebb9@byu.net>
23547
23548         Support sub-second birthtime on cygwin.
23549         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
23550         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
23551         (get_stat_birthtime): Also work with st_birthtim.
23552
23553 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
23554
23555         * lib/stat-time.h (USE_BIRTHTIME): Remove.
23556         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
23557         (get_stat_birthtime_ns): Do not try to use "spare" fields.
23558         (get_stat_birthtime_ns): Simplify compile-time tests.
23559         (get_stat_birthtime): Change the API to look like
23560         get_stat_mtime etc., except return a negative tv_nsec on error.
23561         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
23562         Don't check for "spare" fields.
23563         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
23564         or for struct stat.st_birthtime, as these tests aren't used.
23565         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
23566
23567 2007-03-27  Bruno Haible  <bruno@clisp.org>
23568
23569         * lib/stat-time.h: Include <sys/stat.h>.
23570
23571 2007-03-27  James Youngman  <jay@gnu.org>
23572
23573         * lib/stat-time.h (get_stat_birthtime): New function for
23574           retrieving st_birthtime as provided by UFS2 (hence *BSD).
23575         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
23576           and its variants.
23577         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
23578         * modules/stat-time-test: New file.
23579         * tests/test-stat-time.c: New test, devised by Bruno Haible.
23580
23581 2007-03-26  Bruno Haible  <bruno@clisp.org>
23582
23583         Better support of signalling NaNs.
23584         * lib/atanl.c: Include isnanl.h.
23585         (atanl): Perform test for NaN at the beginning of the function and
23586         through a call to isnanl.
23587         * lib/cosl.c: Include isnanl.h.
23588         (cosl): Perform test for NaN at the beginning of the function and
23589         through a call to isnanl.
23590         * lib/ldexpl.c: Include isnanl.h.
23591         (ldexpl): Perform test for NaN through a call to isnanl.
23592         * lib/logl.c: Include isnanl.h.
23593         (logl): Perform test for NaN at the beginning of the function and
23594         through a call to isnanl.
23595         * lib/sinl.c: Include isnanl.h.
23596         (sinl): Perform test for NaN at the beginning of the function and
23597         through a call to isnanl.
23598         * lib/sqrtl.c: Include isnanl.h.
23599         (sqrtl): Perform test for NaN at the beginning of the function and
23600         through a call to isnanl.
23601         * lib/tanl.c: Include isnanl.h.
23602         (tanl): Perform test for NaN at the beginning of the function and
23603         through a call to isnanl.
23604         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
23605         * modules/mathl (Depends-on): Add isnanl.
23606
23607 2007-03-26  Eric Blake  <ebb9@byu.net>
23608
23609         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
23610         regression in logic sense of previous patch.
23611
23612 2007-03-26  Bruno Haible  <bruno@clisp.org>
23613
23614         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
23615         unportable shell command "if ! ...".
23616         Reported by Ralf Wildenhues.
23617
23618 2007-03-25  Bruno Haible  <bruno@clisp.org>
23619
23620         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
23621         <sysexits.h> file, and only add EX_CONFIG.
23622         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
23623         absolute file name and whether it is sufficient. Substitute also
23624         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
23625         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
23626         ABSOLUTE_SYSEXITS_H into sysexits.h.
23627
23628 2007-03-25  Bruno Haible  <bruno@clisp.org>
23629
23630         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
23631         hints is NULL.
23632
23633 2007-03-25  Bruno Haible  <bruno@clisp.org>
23634
23635         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
23636         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
23637
23638 2007-03-25  Bruno Haible  <bruno@clisp.org>
23639
23640         * lib/vasnprintf.c: Include langinfo.h.
23641         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
23642         multithread-safe.
23643         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
23644         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
23645         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23646         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23647         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23648         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23649         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23650         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
23651         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23652         Reported by Simon Josefsson.
23653
23654 2007-03-25  Bruno Haible  <bruno@clisp.org>
23655
23656         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
23657         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
23658         * modules/vasnprintf (Depends-on): Add stdint.
23659
23660 2007-03-25  Bruno Haible  <bruno@clisp.org>
23661
23662         * modules/fpieee: New file.
23663         * m4/fpieee.m4: New file.
23664         * modules/isnan-nolibm (Depends-on): Add fpieee.
23665         * modules/isnanl-nolibm (Depends-on): Add fpieee.
23666         * modules/isnanl (Depends-on): Add fpieee.
23667
23668 2007-03-25  Bruno Haible  <bruno@clisp.org>
23669
23670         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
23671
23672 2007-03-25  Bruno Haible  <bruno@clisp.org>
23673
23674         Avoid test failures on IRIX 6.5.
23675         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
23676         (main): Use it.
23677         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
23678         macros.
23679         (main): Use them.
23680
23681 2007-03-25  Bruno Haible  <bruno@clisp.org>
23682
23683         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
23684         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
23685         exists but doesn't work.
23686         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
23687         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
23688         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
23689         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
23690
23691 2007-03-25  Bruno Haible  <bruno@clisp.org>
23692
23693         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
23694         returns inf. Needed on IRIX 6.5.
23695
23696 2007-03-25  Bruno Haible  <bruno@clisp.org>
23697
23698         * tests/test-frexpl.c: Include isnanl-nolibm.h.
23699         (main): Use isnanl instead of x != x idiom.
23700         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
23701
23702         * tests/test-frexp.c: Include isnan.h.
23703         (main): Use isnan instead of x != x idiom.
23704         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
23705
23706 2007-03-25  Bruno Haible  <bruno@clisp.org>
23707
23708         * tests/test-frexp.c (NaN): New function/macro.
23709         (main): Use it instead of 0.0 / 0.0.
23710         * tests/test-isnan.c (NaN): New function/macro.
23711         (main): Use it instead of 0.0 / 0.0.
23712         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
23713         (test_function): Use it instead of 0.0 / 0.0.
23714         * tests/test-vasprintf-posix.c (NaN): New function/macro.
23715         (test_function): Use it instead of 0.0 / 0.0.
23716         * tests/test-snprintf-posix.h (NaN): New function/macro.
23717         (test_function): Use it instead of 0.0 / 0.0.
23718         * tests/test-sprintf-posix.h (NaN): New function/macro.
23719         (test_function): Use it instead of 0.0 / 0.0.
23720         * tests/test-fprintf-posix.h (NaN): New function/macro.
23721         (test_function): Use it instead of 0.0 / 0.0.
23722         * tests/test-printf-posix.h (NaN): New function/macro.
23723         (test_function): Use it instead of 0.0 / 0.0.
23724
23725         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
23726
23727 2007-03-25  Bruno Haible  <bruno@clisp.org>
23728
23729         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
23730
23731 2007-03-25  Bruno Haible  <bruno@clisp.org>
23732
23733         * lib/regexec.c (merge_state_with_log): Make static.
23734
23735 2007-03-25  Bruno Haible  <bruno@clisp.org>
23736
23737         * lib/trigl.c (kernel_rem_pio2): Make static.
23738
23739 2007-03-25  Bruno Haible  <bruno@clisp.org>
23740
23741         * lib/sincosl.c (sincosl_table): Make static.
23742
23743 2007-03-25  Bruno Haible  <bruno@clisp.org>
23744
23745         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
23746         if the compiler does not support C99.
23747
23748 2007-03-25  Bruno Haible  <bruno@clisp.org>
23749
23750         * modules/time (Makefile.am): Ensure all rule action lines start with a
23751         tab.
23752
23753 2007-03-24  Bruno Haible  <bruno@clisp.org>
23754
23755         * modules/tsearch-tests: New file.
23756         * tests/test-tsearch.sh: New file.
23757         * tests/test-tsearch.c: New file, mostly copied from glibc.
23758
23759         * modules/search-tests: New file.
23760         * tests/test-search.c: New file.
23761
23762         * modules/search: New file.
23763         * lib/search_.h: New file, incorporating lib/tsearch.h.
23764         * m4/search_h.m4: New file.
23765         * lib/tsearch.h: Remove file.
23766         * lib/tsearch.c: Include search.h instead of tsearch.h.
23767         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
23768         HAVE_TSEARCH.
23769         * modules/tsearch (Files): Remove lib/tsearch.h.
23770         (Depends-on): Add search.
23771         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
23772         (Include): Change tsearch.h into search.h.
23773
23774 2007-03-24  Bruno Haible  <bruno@clisp.org>
23775
23776         * modules/fpucw: New file.
23777         * lib/fpucw.h: New file.
23778         * lib/frexp.c: Include fpucw.h.
23779         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
23780         (FUNC): Use them.
23781         * lib/printf-frexp.c: Include fpucw.h.
23782         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
23783         (FUNC): Use them.
23784         * lib/vasnprintf.c: Include fpucw.h.
23785         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
23786         'long double' calculations.
23787         * tests/test-frexpl.c: Include fpucw.h.
23788         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
23789         * tests/test-printf-frexpl.c: Include fpucw.h.
23790         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
23791         * modules/frexpl (Depends-on): Add fpucw.
23792         * modules/printf-frexpl (Depends-on): Likewise.
23793         * modules/fprintf-posix (Depends-on): Likewise.
23794         * modules/snprintf-posix (Depends-on): Likewise.
23795         * modules/sprintf-posix (Depends-on): Likewise.
23796         * modules/vasnprintf-posix (Depends-on): Likewise.
23797         * modules/vasprintf-posix (Depends-on): Likewise.
23798         * modules/vfprintf-posix (Depends-on): Likewise.
23799         * modules/vsnprintf-posix (Depends-on): Likewise.
23800         * modules/vsprintf-posix (Depends-on): Likewise.
23801         * modules/frexpl-tests (Depends-on): Likewise.
23802         * modules/printf-frexpl-tests (Depends-on): Likewise.
23803
23804 2007-03-24  Bruno Haible  <bruno@clisp.org>
23805
23806         * lib/float+.h: New file.
23807         * lib/isnan.c: Include float+.h.
23808         (SIZE): New macro.
23809         (FUNC): Compare only SIZE bytes of the value.
23810         * lib/vasnprintf.c: Include float+.h.
23811         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
23812         SIZEOF_LDBL or SIZEOF_DBL bytes.
23813         * modules/isnan-nolibm (Files): Add lib/float+.h.
23814         * modules/isnanl-nolibm (Files): Add lib/float+.h.
23815         * modules/isnanl (Files): Add lib/float+.h.
23816         * modules/vasnprintf (Files): Add lib/float+.h.
23817
23818 2007-03-24  Bruno Haible  <bruno@clisp.org>
23819
23820         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
23821         include isnanl-nolibm.h.
23822
23823 2007-03-24  Bruno Haible  <bruno@clisp.org>
23824
23825         * tests/test-read-file.c (main): Don't produce spurious output for
23826         expected situations. Make the test fail if it encountered unexpected
23827         results.
23828
23829 2007-03-24  Bruno Haible  <bruno@clisp.org>
23830
23831         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
23832         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
23833
23834 2007-03-24  Bruno Haible  <bruno@clisp.org>
23835
23836         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
23837
23838 2007-03-24  Bruno Haible  <bruno@clisp.org>
23839
23840         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
23841         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
23842
23843         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
23844         * modules/utf8-ucs4: Turn into a symbolic link to module
23845         unistr/u8-mbtouc.
23846
23847         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
23848         utf8-ucs4-unsafe.
23849         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
23850         unistr/u8-mbtouc-unsafe.
23851
23852         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
23853         * modules/utf16-ucs4: Turn into a symbolic link to module
23854         unistr/u16-mbtouc.
23855
23856         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
23857         utf16-ucs4-unsafe.
23858         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
23859         unistr/u16-mbtouc-unsafe.
23860
23861         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
23862         * modules/ucs4-utf8: Turn into a symbolic link to module
23863         unistr/u8-ubtomb.
23864
23865         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
23866         * modules/ucs4-utf16: Turn into a symbolic link to module
23867         unistr/u16-ubtomb.
23868
23869 2007-03-24  Bruno Haible  <bruno@clisp.org>
23870
23871         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
23872         Enable the function only if HAVE_INLINE.
23873         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
23874         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
23875         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
23876         Enable the function only if HAVE_INLINE.
23877         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
23878         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
23879         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
23880         Enable the function only if HAVE_INLINE.
23881         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
23882         Enable the function only if HAVE_INLINE.
23883         * modules/utf8-ucs4: Update.
23884         * modules/utf8-ucs4-unsafe: Update.
23885         * modules/utf16-ucs4: Update.
23886         * modules/utf16-ucs4-unsafe: Update.
23887         * modules/ucs4-utf8: Update.
23888         * modules/ucs4-utf16: Update.
23889
23890 2007-03-24  Bruno Haible  <bruno@clisp.org>
23891
23892         * lib/utf8-ucs4.h: Remove file.
23893         * lib/utf8-ucs4-unsafe.h: Remove file.
23894         * lib/utf16-ucs4.h: Remove file.
23895         * lib/utf16-ucs4-unsafe.h: Remove file.
23896         * lib/ucs4-utf8.h: Remove file.
23897         * lib/ucs4-utf16.h: Remove file.
23898         * lib/unistr.h: Include their previous contents.
23899         * m4/utf-ucs4.m4: Remove file.
23900         * m4/ucs4-utf.m4: Remove file.
23901         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
23902         (Depends-on): Add unistr/base.
23903         (configure.ac): Remove gl_UTF_UCS4.
23904         (Makefile.am): Update.
23905         (Include): Change to unistr.h.
23906         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
23907         (Depends-on): Add unistr/base.
23908         (configure.ac): Remove gl_UTF_UCS4.
23909         (Makefile.am): Update.
23910         (Include): Change to unistr.h.
23911         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
23912         (Depends-on): Add unistr/base.
23913         (configure.ac): Remove gl_UTF_UCS4.
23914         (Makefile.am): Update.
23915         (Include): Change to unistr.h.
23916         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
23917         (Depends-on): Add unistr/base.
23918         (configure.ac): Remove gl_UTF_UCS4.
23919         (Makefile.am): Update.
23920         (Include): Change to unistr.h.
23921         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
23922         (Depends-on): Add unistr/base.
23923         (configure.ac): Remove gl_UCS4_UTF.
23924         (Makefile.am): Update.
23925         (Include): Change to unistr.h.
23926         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
23927         (Depends-on): Add unistr/base.
23928         (configure.ac): Remove gl_UCS4_UTF.
23929         (Makefile.am): Update.
23930         (Include): Change to unistr.h.
23931         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
23932         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
23933         utf8-ucs4-unsafe.h.
23934         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
23935         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
23936         utf16-ucs4-unsafe.h.
23937         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
23938         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
23939         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
23940         * lib/unistr/u8-strchr.c: Likewise.
23941         * lib/unistr/u8-strrchr.c: Likewise.
23942         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
23943         * lib/unistr/u16-strchr.c: Likewise.
23944         * lib/unistr/u16-strrchr.c: Likewise.
23945         * lib/striconveh.c: Update.
23946         * lib/linebreak.c: Update.
23947
23948 2007-03-24  Bruno Haible  <bruno@clisp.org>
23949
23950         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
23951         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
23952
23953 2007-03-22  Bruno Haible  <bruno@clisp.org>
23954
23955         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
23956
23957 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
23958
23959         * MODULES.html.sh (File system functions): New module write-any-file.
23960         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
23961         * m4/write-any-file.m4: New files.
23962
23963 2007-03-23  Eric Blake  <ebb9@byu.net>
23964
23965         * gnulib-tool: Rearrange space-tab sequences, since some editors
23966         like to eat them.
23967
23968 2007-03-23  Eric Blake  <ebb9@byu.net>
23969
23970         * lib/version-etc.c (version_etc_va): Update license wording to
23971         be more concise.  Recommended by Richard Stallman.
23972
23973 2007-03-22  Bruno Haible  <bruno@clisp.org>
23974
23975         * lib/poll.c (MSG_PEEK): New fallback definition.
23976
23977 2007-03-22  Bruno Haible  <bruno@clisp.org>
23978
23979         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
23980         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
23981         (main): Update.
23982         Fixes a compilation error on BeOS.
23983
23984 2007-03-22  Bruno Haible  <bruno@clisp.org>
23985
23986         * modules/frexpl-tests: New file.
23987         * tests/test-frexpl.c: New file.
23988
23989         * modules/frexpl: New file.
23990         * m4/frexpl.m4: New file.
23991         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
23992         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
23993         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
23994         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
23995         (Depends-on): Add frexpl. Remove isnanl-nolibm.
23996         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
23997
23998 2007-03-22  Bruno Haible  <bruno@clisp.org>
23999
24000         * lib/frexpl.c: Share code with lib/frexp.c.
24001         * modules/mathl (Files): Add lib/frexp.c.
24002         (Depends-on): Add isnanl-nolibm.
24003
24004 2007-03-22  Bruno Haible  <bruno@clisp.org>
24005
24006         * modules/printf-frexp (Files): Add m4/frexp.m4.
24007         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
24008         only if the found frexp function actually works.
24009
24010 2007-03-22  Bruno Haible  <bruno@clisp.org>
24011
24012         * lib/frexp.c: Remove older implementation that uses divisions.
24013
24014 2007-03-21  Bruno Haible  <bruno@clisp.org>
24015
24016         * modules/frexp-tests: New file.
24017         * tests/test-frexp.c: New file.
24018
24019         * modules/frexp: New file.
24020         * lib/frexp.c: New file.
24021         * m4/frexp.m4: New file.
24022         * lib/math_.h (frexp): New declaration.
24023         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
24024         REPLACE_FREXP.
24025         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
24026
24027 2007-03-21  Bruno Haible  <bruno@clisp.org>
24028
24029         * modules/isnanl-tests: New file.
24030         * tests/test-isnanl.c: New file.
24031
24032         * modules/isnanl: New file.
24033         * lib/isnanl.h: New file.
24034         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
24035         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
24036         gl_FUNC_ISNANL_WORKS.
24037         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
24038         New macros.
24039
24040 2007-03-21  Bruno Haible  <bruno@clisp.org>
24041
24042         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
24043         lib/isnanl.h.
24044         (Include): Update.
24045         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
24046         * lib/vasnprintf.c: Update.
24047         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
24048         tests/test-isnanl.h, remove tests/test-isnanl.c.
24049         (Makefile.am): Update.
24050         * tests/test-isnanl-nolibm.c: New file.
24051         * tests/test-isnanl.h: New file.
24052         * tests/test-isnanl.c: Remove file.
24053
24054 2007-03-21  Jim Meyering  <jim@meyering.net>
24055
24056         When trying to open ".", treat ESTALE like EACCES.
24057         * lib/savewd.c (savewd_save): Resort to forking not just upon
24058         failure with EACCES, but also when errno is ESTALE.
24059
24060 2007-03-20  Bruno Haible  <bruno@clisp.org>
24061
24062         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
24063         Needed on AIX 5.1. Reported by Matthew Woehlke.
24064
24065 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
24066
24067         Suggestions by Bruno Haible:
24068         * lib/acl-internal.h: Include "gettext.h" rather than rolling
24069         our own.
24070         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
24071         * modules/acl (Depends-on): Add gettext.
24072
24073 2007-03-19  Bruno Haible  <bruno@clisp.org>
24074
24075         * modules/iconvme: Remove file.
24076         * lib/iconvme.h: Remove file.
24077         * lib/iconvme.c: Remove file.
24078         * m4/iconvme.m4: Remove file.
24079
24080 2007-03-19  Bruno Haible  <bruno@clisp.org>
24081
24082         * doc/relocatable-maint.texi: Break long shell script line.
24083         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
24084
24085 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
24086
24087         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
24088         handle file_has_acl.
24089         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
24090         * lib/acl.c: Move header inclusions and related macro defns into
24091         lib/acl-internal.h.
24092         (S_ISLNK): Remove defn, since that's now done for us.
24093         (file_has_acl): Move to lib/file-has-acl.c.
24094         Call acl_trivial if available.  This is the crucial part of the fix.
24095         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
24096         shared within the library.  Rewrite a bit, partly to make it compatible
24097         with the GNU coding style.
24098         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
24099         Remove unnecessary double-quotes.
24100         Don't test for acl_to_text; the build will catch that.
24101         Replace acl_entries if it doesn't exist and it is needed.
24102         Check for -lsec and acl_trivial (as used on Solaris 10).
24103         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
24104         lib/file-has-acl.c.
24105         (Depends-on): Add sys_stat, for S_ISLNK.
24106
24107 2007-03-19  Ben Pfaff  <blp@gnu.org>
24108
24109         * doc/gnulib.texi: Fix typos.
24110         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
24111
24112 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
24113
24114         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
24115         If size is zero here, buf must be zero.
24116
24117 2007-03-19  Simon Josefsson  <simon@josefsson.org>
24118
24119         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
24120         <bruno@clisp.org>.
24121
24122 2007-03-18  Bruno Haible  <bruno@clisp.org>
24123
24124         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
24125         Suggested by Eric Blake.
24126
24127 2007-03-18  Ben Pfaff  <blp@gnu.org>
24128
24129         * doc/relocatable.texi: Recommend using as prefix a directory
24130         that does not exist and will never be created.  Based on
24131         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
24132         and others.
24133
24134 2007-03-17  Bruno Haible  <bruno@clisp.org>
24135
24136         * lib/fchownat.c: Include lchown.h.
24137
24138 2007-03-17  Bruno Haible  <bruno@clisp.org>
24139
24140         Fix endless loop when the given allocated size was > INT_MAX.
24141         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
24142         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
24143         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
24144         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
24145         * lib/sprintf.c (sprintf): Likewise.
24146
24147 2007-03-17  Bruno Haible  <bruno@clisp.org>
24148
24149         * tests/test-argp-2.sh (func_compare): Output a context diff.
24150
24151 2007-03-17  Bruno Haible  <bruno@clisp.org>
24152
24153         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
24154         locale's decimal-point character.
24155
24156 2007-03-17  Bruno Haible  <bruno@clisp.org>
24157
24158         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
24159         before comparing it. Needed because on some platforms (e.g. x86) a
24160         'long double' occupies less bytes than sizeof (long double).
24161
24162 2007-03-17  Bruno Haible  <bruno@clisp.org>
24163
24164         * tests/test-crc.c (main): Make printf statements 64-bit clean.
24165         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
24166         * tests/test-getaddrinfo.c (simple): Likewise.
24167         * tests/test-read-file.c (main): Likewise.
24168
24169 2007-03-17  Bruno Haible  <bruno@clisp.org>
24170
24171         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
24172
24173 2007-03-17  Bruno Haible  <bruno@clisp.org>
24174
24175         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
24176         unused variable.
24177
24178 2007-03-17  Bruno Haible  <bruno@clisp.org>
24179
24180         * tests/test-c-strcasecmp.c: Include c-strcase.h.
24181         * tests/test-c-strncasecmp.c: Likewise.
24182
24183 2007-03-17  Bruno Haible  <bruno@clisp.org>
24184
24185         * modules/stdlib (Depends-on): Add unistd.
24186         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
24187         Needed for MacOS X 10.3.
24188
24189 2007-03-17  Bruno Haible  <bruno@clisp.org>
24190
24191         * lib/unistr/u-strdup.h: Include <stdlib.h>.
24192
24193 2007-03-17  Bruno Haible  <bruno@clisp.org>
24194
24195         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
24196
24197 2007-03-17  Bruno Haible  <bruno@clisp.org>
24198
24199         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
24200         to reflect files copied from gnulib (with or without modifications).
24201         Suggested by Jim Meyering.
24202
24203 2007-03-17  Eric Blake  <ebb9@byu.net>
24204
24205         * NEWS: Document stdlib change from 2007-02-18.
24206
24207 2007-03-17  Jim Meyering  <jim@meyering.net>
24208
24209         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
24210         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
24211         someone uses a name containing shell meta-characters.
24212         Reported by Alfred M. Szmidt.
24213
24214         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
24215
24216 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
24217
24218         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
24219         and copy gettext configuration files only if configure.ac contains
24220         a use of AM_GNU_GETTEXT_VERSION.
24221
24222 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
24223
24224         * build-aux/bootstrap (gnulib_name): New variable.
24225         (gnulib_tool_options): Use it.
24226
24227 2007-03-13  Simon Josefsson  <simon@josefsson.org>
24228
24229         * tests/test-des.c: Use new namespace.
24230
24231 2007-03-15  Bruno Haible  <bruno@clisp.org>
24232
24233         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
24234         Reported by James Youngman <jay@gnu.org>.
24235
24236 2007-03-15  Bruno Haible  <bruno@clisp.org>
24237
24238         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
24239         declared prototype. Needed with cc on OSF/1 5.1.
24240
24241 2007-03-15  Bruno Haible  <bruno@clisp.org>
24242
24243         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
24244         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
24245         (struct gl_list_implementation): Add dispose_fn argument to the
24246         'create_empty', 'create' methods.
24247         (struct gl_list_impl_base): Add field 'dispose_fn'.
24248         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
24249         argument.
24250         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
24251         dispose_fn argument.
24252         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
24253         dispose_fn on the dropped values.
24254         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
24255         dispose_fn argument.
24256         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
24257         dropped values.
24258         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
24259         (gl_tree_remove_node): Call dispose_fn on the dropped value.
24260         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
24261         (gl_tree_remove_node): Call dispose_fn on the dropped value.
24262         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
24263         argument.
24264         (gl_tree_list_free): Call dispose_fn on the dropped values.
24265         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
24266         the dropped values.
24267         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
24268         Add dispose_fn argument.
24269         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
24270         Call dispose_fn on the dropped values.
24271         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
24272         Add dispose_fn argument.
24273         (gl_sublist_create): Initialize the 'dispose_fn' field.
24274         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
24275         * tests/test-array_list.c (main): Update.
24276         * tests/test-carray_list.c (main): Update.
24277         * tests/test-avltree_list.c (main): Update.
24278         * tests/test-rbtree_list.c (main): Update.
24279         * tests/test-avltreehash_list.c (main): Update.
24280         * tests/test-rbtreehash_list.c (main): Update.
24281         * tests/test-linked_list.c (main): Update.
24282         * tests/test-linkedhash_list.c (main): Update.
24283         * tests/test-array_oset.c (main): Update.
24284
24285 2007-03-15  Bruno Haible  <bruno@clisp.org>
24286
24287         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
24288         (gl_oset_create_empty): Add dispose_fn argument.
24289         (struct gl_oset_implementation): Add dispose_fn argument to
24290         'create_empty' method.
24291         (struct gl_oset_impl_base): Add dispose_fn field.
24292         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
24293         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
24294         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
24295         values.
24296         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
24297         (gl_tree_oset_free): Call dispose_fn on the dropped values.
24298         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
24299         dropped value.
24300         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
24301         dropped value.
24302         * tests/test-array_oset.c (main): Update.
24303         * tests/test-avltree_oset.c (main): Update.
24304         * tests/test-rbtree_oset.c (main): Update.
24305         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
24306
24307 2007-03-13  Bruno Haible  <bruno@clisp.org>
24308
24309         * tests/test-stdbool.c (i): Update after last patch.
24310
24311 2007-03-12  Bruno Haible  <bruno@clisp.org>
24312
24313         * lib/quotearg.c: Include <wctype.h> early, before the definition of
24314         the iswprint macro. Needed on Solaris 2.5.1.
24315
24316 2007-03-12  Bruno Haible  <bruno@clisp.org>
24317
24318         * tests/test-printf-frexp.c (main): Declare x as volatile.
24319
24320 2007-03-12  Simon Josefsson  <simon@josefsson.org>
24321
24322         * doc/gnulib.texi (Build robot for gnulib): New section.
24323
24324 2007-03-12  Jim Meyering  <jim@meyering.net>
24325
24326         * build-aux/bootstrap: New file.
24327         * build-aux/bootstrap.conf: New file, from coreutils.
24328
24329 2007-03-11  Bruno Haible  <bruno@clisp.org>
24330
24331         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
24332
24333 2007-03-12  Simon Josefsson  <simon@josefsson.org>
24334
24335         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
24336         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
24337         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
24338
24339 2007-03-11  Bruno Haible  <bruno@clisp.org>
24340
24341         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
24342         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
24343
24344 2007-03-11  Bruno Haible  <bruno@clisp.org>
24345
24346         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
24347         formula. Needed for SunPRO C 5.0.
24348
24349 2007-03-11  Bruno Haible  <bruno@clisp.org>
24350
24351         * modules/long-options (Depends-on): Add getopt.
24352
24353 2007-03-11  Bruno Haible  <bruno@clisp.org>
24354
24355         * modules/modechange (Depends-on): Add stdbool.
24356
24357 2007-03-11  Bruno Haible  <bruno@clisp.org>
24358
24359         * modules/i-ring (Depends-on): Add stdbool.
24360
24361 2007-03-11  Bruno Haible  <bruno@clisp.org>
24362
24363         * modules/gc-des (Depends-on): Add stdbool.
24364
24365 2007-03-11  Bruno Haible  <bruno@clisp.org>
24366
24367         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
24368
24369 2007-03-11  Bruno Haible  <bruno@clisp.org>
24370
24371         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
24372
24373 2007-03-11  Bruno Haible  <bruno@clisp.org>
24374
24375         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
24376
24377 2007-03-11  Bruno Haible  <bruno@clisp.org>
24378
24379         * lib/vasnprintf.c (sprintf): Undefine.
24380
24381 2007-03-11  Bruno Haible  <bruno@clisp.org>
24382
24383         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
24384         initializers in SunPRO C and Compaq C compilers.
24385
24386 2007-03-11  Bruno Haible  <bruno@clisp.org>
24387
24388         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
24389         decrementing code ANSI C compliant.
24390
24391 2007-03-11  Bruno Haible  <bruno@clisp.org>
24392
24393         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
24394         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
24395
24396 2007-03-11  Bruno Haible  <bruno@clisp.org>
24397
24398         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
24399         <stdbool.h> substitute doesn't pass.
24400
24401 2007-03-11  Bruno Haible  <bruno@clisp.org>
24402
24403         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
24404
24405 2007-03-11  Bruno Haible  <bruno@clisp.org>
24406
24407         * gnulib-tool (func_create_megatestdir): Create also an autobuild
24408         script, for submission to autobuild.josefsson.org.
24409
24410 2007-03-10  Bruno Haible  <bruno@clisp.org>
24411
24412         * modules/canonicalize-lgpl-tests: New file.
24413         * tests/test-canonicalize-lgpl.sh: New file.
24414         * tests/test-canonicalize-lgpl.c: New file.
24415
24416         * modules/c-strcase-tests: New file.
24417         * tests/test-c-strcase.sh: New file.
24418         * tests/test-c-strcasecmp.c: New file.
24419         * tests/test-c-strncasecmp.c: New file.
24420
24421         * modules/atexit-tests: New file.
24422         * tests/test-atexit.sh: New file.
24423         * tests/test-atexit.c: New file.
24424
24425 2007-03-10  Bruno Haible  <bruno@clisp.org>
24426
24427         * tests/test-binary-io.sh: Use temporary filenames that are not so
24428         likely to clash with those of other tests (in a parallel make).
24429         * tests/test-binary-io.c: Likewise.
24430
24431 2007-03-10  Bruno Haible  <bruno@clisp.org>
24432
24433         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
24434         fallback; use #error instead.
24435         Suggested by Simon Josefsson.
24436
24437 2007-03-10  Bruno Haible  <bruno@clisp.org>
24438
24439         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
24440         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
24441         first and the last.
24442
24443 2007-03-10  Bruno Haible  <bruno@clisp.org>
24444
24445         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
24446
24447 2007-03-10  Bruno Haible  <bruno@clisp.org>
24448
24449         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
24450         "make distcheck".
24451         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
24452         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
24453         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
24454
24455 2007-03-10  Bruno Haible  <bruno@clisp.org>
24456
24457         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
24458         variable.
24459         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
24460         variable.
24461
24462 2007-03-09  Eric Blake  <ebb9@byu.net>
24463         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
24464
24465         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
24466         types are not being provided by gnulib.
24467         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
24468         types are supported.
24469
24470 2007-03-10  Bruno Haible  <bruno@clisp.org>
24471
24472         * lib/stdio_.h (__attribute__): New macro.
24473         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
24474         vsprintf): Specify __attribute__ __format__ for GCC.
24475         Suggested by Eric Blake.
24476
24477 2007-03-09  Bruno Haible  <bruno@clisp.org>
24478
24479         * modules/printf-posix-tests: New file.
24480         * tests/test-printf-posix.sh: New file.
24481         * tests/test-printf-posix.c: New file.
24482
24483         * modules/printf-posix: New file.
24484         * lib/printf.c: New file.
24485         * m4/printf-posix-rpl.m4: New file.
24486         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
24487         REPLACE_PRINTF.
24488         * lib/stdio_.h (printf): New declaration.
24489         (format, __format__, ____printf____, ____scanf____, ____strftime____,
24490         ____strfmon____): New macros.
24491         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
24492         REPLACE_PRINTF.
24493
24494 2007-03-09  Bruno Haible  <bruno@clisp.org>
24495
24496         * tests/test-vasnprintf-posix2.sh: New file.
24497         * tests/test-vasnprintf-posix2.c: New file.
24498         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
24499         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
24500         (Makefile.am): Activate test-vasnprintf-posix2.sh.
24501
24502         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
24503         a locale dependent decimal point, rather than always '.'.
24504
24505 2007-03-09  Eric Blake  <ebb9@byu.net>
24506
24507         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
24508         spite of platforms like Tandem/NSK that define it to -1.
24509
24510 2007-03-08  Bruno Haible  <bruno@clisp.org>
24511
24512         * modules/vprintf-posix-tests: New file.
24513         * tests/test-vprintf-posix.sh: New file.
24514         * tests/test-vprintf-posix.c: New file.
24515         * tests/test-printf-posix.h: New file.
24516
24517         * modules/vprintf-posix: New file.
24518         * lib/vprintf.c: New file.
24519         * m4/vprintf-posix.m4: New file.
24520         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
24521         REPLACE_VPRINTF.
24522         * lib/stdio_.h (vprintf): New declaration.
24523         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
24524         REPLACE_VPRINTF.
24525
24526 2007-03-08  Bruno Haible  <bruno@clisp.org>
24527
24528         * modules/fprintf-posix-tests: New file.
24529         * tests/test-fprintf-posix.sh: New file.
24530         * tests/test-fprintf-posix.c: New file.
24531
24532         * modules/fprintf-posix: New file.
24533         * lib/fprintf.c: New file.
24534         * m4/fprintf-posix.m4: New file.
24535         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
24536         REPLACE_FPRINTF.
24537         * lib/stdio_.h (fprintf): New declaration.
24538         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
24539         REPLACE_FPRINTF.
24540
24541 2007-03-08  Bruno Haible  <bruno@clisp.org>
24542
24543         * modules/vfprintf-posix-tests: New file.
24544         * tests/test-vfprintf-posix.sh: New file.
24545         * tests/test-vfprintf-posix.c: New file.
24546         * tests/test-fprintf-posix.h: New file.
24547         * tests/test-fprintf-posix.out: New file.
24548
24549         * modules/vfprintf-posix: New file.
24550         * lib/vfprintf.c: New file.
24551         * m4/vfprintf-posix.m4: New file.
24552         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
24553         REPLACE_VFPRINTF.
24554         * lib/stdio_.h (vfprintf): New declaration.
24555         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
24556         REPLACE_VFPRINTF.
24557
24558 2007-03-08  Bruno Haible  <bruno@clisp.org>
24559
24560         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
24561
24562 2007-03-08  Bruno Haible  <bruno@clisp.org>
24563
24564         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
24565         instead of 'expr' invocations.
24566         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
24567         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
24568         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
24569         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24570         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
24571         Suggested by Paul Eggert.
24572
24573 2007-03-08  Bruno Haible  <bruno@clisp.org>
24574
24575         * modules/fseterr-tests: New file.
24576         * tests/test-fseterr.c: New file.
24577
24578         * modules/fseterr: New file.
24579         * lib/fseterr.h: New file.
24580         * lib/fseterr.c: New file.
24581
24582 2007-03-08  Bruno Haible  <bruno@clisp.org>
24583
24584         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
24585         * lib/getopt_.h: Likewise.
24586         * lib/mbswidth.h: Likewise.
24587         * lib/setenv.h: Likewise.
24588         * lib/vasnprintf.h: Likewise.
24589         * lib/vasprintf.h: Likewise.
24590         * lib/verror.h: Likewise.
24591         * lib/xsetenv.h: Likewise.
24592         * lib/xvasprintf.h: Likewise.
24593
24594 2007-03-08  Jim Meyering  <jim@meyering.net>
24595
24596         * users.txt: Add parted.
24597
24598         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
24599
24600 2007-03-07  Bruno Haible  <bruno@clisp.org>
24601
24602         * m4/printf.m4: Make the shell script snippets copy&pastable.
24603
24604 2007-03-02  Bruno Haible  <bruno@clisp.org>
24605
24606         * lib/netinet_in_.h: New file.
24607         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
24608         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
24609         * modules/netinet_in (Files): Add lib/netinet_in_.h.
24610         (Depends-on): Add absolute-header.
24611         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
24612         into netinet/in.h.
24613
24614 2007-03-03  Bruno Haible  <bruno@clisp.org>
24615
24616         * lib/sys_select_.h: New file.
24617         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
24618         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
24619         * modules/sys_select (Files): Add lib/sys_select_.h.
24620         (Depends-on): Add absolute-header.
24621         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
24622         into sys/select.h.
24623
24624 2007-03-02  Bruno Haible  <bruno@clisp.org>
24625
24626         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
24627         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
24628         values.
24629         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
24630         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
24631         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
24632         * modules/sys_socket (Depends-on): Add absolute-header.
24633         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
24634         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
24635         (Include): Remove requirement of inclusion of <sys/types.h>.
24636
24637 2007-03-02  Bruno Haible  <bruno@clisp.org>
24638
24639         * lib/byteswap_.h (bswap_32): Fix formula.
24640
24641 2007-03-06  Bruno Haible  <bruno@clisp.org>
24642
24643         * modules/sprintf-posix-tests: New file.
24644         * tests/test-sprintf-posix.c: New file.
24645
24646         * modules/sprintf-posix: New file.
24647         * lib/sprintf.c: New file.
24648         * m4/sprintf-posix.m4: New file.
24649         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
24650         REPLACE_SPRINTF.
24651         * lib/stdio_.h (sprintf): New declaration.
24652         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
24653         REPLACE_SPRINTF.
24654
24655 2007-03-06  Bruno Haible  <bruno@clisp.org>
24656
24657         * modules/vsprintf-posix-tests: New file.
24658         * tests/test-vsprintf-posix.c: New file.
24659         * tests/test-sprintf-posix.h: New file.
24660
24661         * modules/vsprintf-posix: New file.
24662         * lib/vsprintf.c: New file.
24663         * m4/vsprintf-posix.m4: New file.
24664         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
24665         REPLACE_VSPRINTF.
24666         * lib/stdio_.h (vsprintf): New declaration.
24667         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
24668         REPLACE_VSPRINTF.
24669
24670 2007-03-06  Bruno Haible  <bruno@clisp.org>
24671
24672         * modules/vsnprintf (Depend-on): Remove minmax.
24673
24674 2007-03-06  Bruno Haible  <bruno@clisp.org>
24675
24676         * modules/snprintf-posix-tests: New file.
24677         * tests/test-snprintf-posix.c: New file.
24678
24679         * modules/snprintf-posix: New file.
24680         * m4/snprintf-posix.m4: New file.
24681         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
24682         gl_FUNC_SNPRINTF.
24683         (gl_FUNC_SNPRINTF): Invoke it.
24684         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
24685         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
24686         is set.
24687         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
24688
24689 2007-03-06  Bruno Haible  <bruno@clisp.org>
24690
24691         * modules/vsnprintf-posix-tests: New file.
24692         * tests/test-vsnprintf-posix.c: New file.
24693         * tests/test-snprintf-posix.h: New file.
24694
24695         * modules/vsnprintf-posix: New file.
24696         * m4/vsnprintf-posix.m4: New file.
24697         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
24698         gl_FUNC_VSNPRINTF.
24699         (gl_FUNC_VSNPRINTF): Invoke it.
24700         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
24701         * lib/stdio_.h (vsnprintf): Define as a replacement if
24702         REPLACE_VSNPRINTF is set.
24703         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
24704
24705 2007-03-06  Bruno Haible  <bruno@clisp.org>
24706
24707         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
24708         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
24709
24710 2007-03-06  Bruno Haible  <bruno@clisp.org>
24711
24712         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
24713         (asinl): Declare also if HAVE_DECL_ASINL is set.
24714         (atanl): Declare also if HAVE_DECL_ATANL is set.
24715         (ceill): Declare also if HAVE_DECL_CEILL is set.
24716         (cosl): Declare also if HAVE_DECL_COSL is set.
24717         (expl): Declare also if HAVE_DECL_EXPL is set.
24718         (floorl): Declare also if HAVE_DECL_FLOORL is set.
24719         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
24720         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
24721         (logl): Declare also if HAVE_DECL_LOGL is set.
24722         (sinl): Declare also if HAVE_DECL_SINL is set.
24723         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
24724         (tanl): Declare also if HAVE_DECL_TANL is set.
24725         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
24726         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
24727         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
24728         declaration of frexpl, ldexpl.
24729         * modules/printf-frexpl (Depends-on): Add math.
24730         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
24731
24732 2007-03-05  Bruno Haible  <bruno@clisp.org>
24733
24734         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
24735         frexpl and ldexpl are declared.
24736         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
24737
24738 2007-03-05  Bruno Haible  <bruno@clisp.org>
24739
24740         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
24741         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
24742
24743 2007-03-05  Bruno Haible  <bruno@clisp.org>
24744
24745         * lib/stdio_.h: Include <stddef.h>.
24746
24747 2007-03-05  Bruno Haible  <bruno@clisp.org>
24748
24749         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
24750
24751 2007-03-05  Bruno Haible  <bruno@clisp.org>
24752
24753         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
24754         NetBSD 4, from Ralf Wildenhues.
24755
24756 2007-03-04  Bruno Haible  <bruno@clisp.org>
24757
24758         * lib/vasprintf.h: Update #if logic for the case when the functions
24759         exist but are overridden.
24760
24761 2007-03-04  Bruno Haible  <bruno@clisp.org>
24762
24763         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
24764         implementations: glibc-2.4 and MacOS X 10.3.
24765         * tests/test-vasnprintf-posix.c (test_function): Test also the case
24766         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
24767         * tests/test-vasprintf-posix.c (test_function): Likewise.
24768
24769 2007-03-04  Bruno Haible  <bruno@clisp.org>
24770
24771         * modules/vasprintf-posix-tests: New file.
24772         * tests/test-vasprintf-posix.c: New file.
24773
24774         * modules/vasprintf-posix: New file.
24775         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
24776         defined.
24777         * m4/vasprintf-posix.m4: New file.
24778         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
24779         gl_FUNC_VASPRINTF.
24780         (gl_FUNC_VASPRINTF): Invoke it.
24781         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
24782         here.
24783         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
24784
24785 2007-03-04  Bruno Haible  <bruno@clisp.org>
24786
24787         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
24788         REPLACE_GETTIMEOFDAY.
24789         * modules/sys_time (Makefile.am): Likewise.
24790         * m4/sys_time_h.m4: Likewise.
24791         * m4/gettimeofday.m4: Likewise.
24792
24793 2007-03-04  Bruno Haible  <bruno@clisp.org>
24794
24795         * modules/vasnprintf-posix-tests: New file.
24796         * tests/test-vasnprintf-posix.c: New file.
24797
24798         * modules/vasnprintf-posix: New file.
24799         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
24800         printf-frexpl.h.
24801         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
24802         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
24803         REPLACE_VASNPRINTF is defined.
24804         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
24805         gl_FUNC_VASNPRINTF.
24806         (gl_FUNC_VASNPRINTF): Invoke it.
24807         * m4/vasnprintf-posix.m4: New file.
24808         * m4/printf.m4: New file.
24809
24810 2007-03-04  Bruno Haible  <bruno@clisp.org>
24811
24812         Compile progreloc.c only if --enable-relocatable is specified.
24813         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
24814         if --enable-relocatable was specified.
24815         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
24816         lib_SOURCES.
24817
24818 2007-03-04  Jim Meyering  <jim@meyering.net>
24819
24820         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
24821         Use it consistently, rather than enumerating errno constants.
24822
24823 2007-03-04  Bruno Haible  <bruno@clisp.org>
24824
24825         * modules/xvasprintf-tests: New file.
24826         * tests/test-xvasprintf.c: New file.
24827
24828         * modules/vasprintf-tests: New file.
24829         * tests/test-vasprintf.c: New file.
24830
24831         * modules/vasnprintf-tests: New file.
24832         * tests/test-vasnprintf.c: New file.
24833
24834         * modules/vsnprintf-tests: New file.
24835         * tests/test-vsnprintf.c: New file.
24836
24837         * modules/snprintf-tests: New file.
24838         * tests/test-snprintf.c: New file.
24839
24840 2007-03-04  Bruno Haible  <bruno@clisp.org>
24841
24842         Compile relocatable.c only if --enable-relocatable is specified.
24843         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
24844         gl_RELOCATABLE_LIBRARY.
24845         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
24846         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
24847         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
24848         gl_RELOCATABLE_LIBRARY.
24849         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
24850         (Makefile.am): Remove lib_SOURCES.
24851         * modules/relocatable-lib-lgpl (configure.ac): Invoke
24852         gl_RELOCATABLE_LIBRARY.
24853         (Makefile.am): Remove lib_SOURCES.
24854         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
24855         always.
24856         * modules/relocatable-prog-wrapper (configure.ac): Invoke
24857         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
24858
24859 2007-03-04  Bruno Haible  <bruno@clisp.org>
24860
24861         * modules/argmatch-tests: New file.
24862         * tests/test-argmatch.c: New file.
24863
24864         * tests/test-allocsa.c (main): Halve the number of loop runs.
24865
24866         * modules/alloca-opt-tests: New file.
24867         * tests/test-alloca-opt.c: New file.
24868
24869 2007-03-04  Jim Meyering  <jim@meyering.net>
24870
24871         Work around difference between Linux ACLs and Solaris 10 ZFS.
24872         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
24873         for EINVAL.
24874
24875 2007-03-03  Bruno Haible  <bruno@clisp.org>
24876
24877         * modules/relocatable-prog (Depends-on): Add back progreloc's
24878         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
24879
24880 2007-03-03  Bruno Haible  <bruno@clisp.org>
24881
24882         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
24883         * modules/relocatable-lib: New file.
24884
24885 2007-03-03  Bruno Haible  <bruno@clisp.org>
24886
24887         * modules/relocatable-prog: Renamed from modules/relocatable.
24888         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
24889
24890 2007-03-03  Bruno Haible  <bruno@clisp.org>
24891
24892         * modules/relocatable-script (Files): Add doc/relocatable.texi,
24893         m4/relocatable-lib.m4.
24894         (Depends-on): Remove 'relocatable'.
24895         (configure.ac): Add gl_RELOCATABLE_NOP.
24896
24897 2007-03-03  Bruno Haible  <bruno@clisp.org>
24898
24899         * modules/relocatable-prog-wrapper: New file.
24900         * modules/relocatable (Depends-on): Add it. Remove all other
24901         dependencies except progname.
24902         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
24903
24904         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
24905         (gl_FUNC_STRERROR): Nop.
24906         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
24907
24908         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
24909         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
24910
24911         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
24912         (gl_FUNC_READLINK): Update.
24913
24914         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
24915
24916 2007-03-03  Bruno Haible  <bruno@clisp.org>
24917
24918         * lib/xreadlink.c: Include <unistd.h> unconditionally.
24919         * modules/xreadlink (Depends-on): Add unistd.
24920         * modules/xreadlink-with-size (Depends-on): Likewise.
24921
24922 2007-03-03  Bruno Haible  <bruno@clisp.org>
24923
24924         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
24925         extracted from gt_FUNC_SETENV.
24926         (gt_FUNC_SETENV): Remove macro.
24927         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
24928         remove gt_FUNC_SETENV.
24929
24930 2007-03-03  Bruno Haible  <bruno@clisp.org>
24931
24932         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
24933         ENABLE_RELOCATABLE here.
24934         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
24935
24936 2007-03-03  Bruno Haible  <bruno@clisp.org>
24937
24938         * modules/rbtreehash-list-tests (Depends-on): Add progname.
24939         * tests/test-rbtreehash_list.c: Include progname.h.
24940         (main): Call set_program_name.
24941
24942         * modules/rbtree-oset-tests (Depends-on): Add progname.
24943         * tests/test-rbtree_oset.c: Include progname.h.
24944         (main): Call set_program_name.
24945
24946         * modules/rbtree-list-tests (Depends-on): Add progname.
24947         * tests/test-rbtree_list.c: Include progname.h.
24948         (main): Call set_program_name.
24949
24950         * modules/linked-list-tests (Depends-on): Add progname.
24951         * tests/test-linked_list.c: Include progname.h.
24952         (main): Call set_program_name.
24953
24954 2007-03-03  Bruno Haible  <bruno@clisp.org>
24955
24956         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
24957         All uses of __restrict changed to _Restrict_.
24958         * lib/glob_.h (__restrict): Remove macro.
24959
24960 2007-03-02  Bruno Haible  <bruno@clisp.org>
24961
24962         * modules/gettext (configure.ac): Require gettext infrastructure
24963         from version 0.16.1.
24964
24965 2007-03-02  Bruno Haible  <bruno@clisp.org>
24966
24967         * modules/linkedhash-list-tests (Depends-on): Add progname.
24968         * tests/test-linkedhash_list.c: Include progname.h.
24969         (main): Call set_program_name.
24970
24971         * modules/carray-list-tests (Depends-on): Add progname.
24972         * tests/test-carray_list.c: Include progname.h.
24973         (main): Call set_program_name.
24974
24975         * modules/avltreehash-list-tests (Depends-on): Add progname.
24976         * tests/test-avltreehash_list.c: Include progname.h.
24977         (main): Call set_program_name.
24978
24979         * modules/avltree-oset-tests (Depends-on): Add progname.
24980         * tests/test-avltree_oset.c: Include progname.h.
24981         (main): Call set_program_name.
24982
24983         * modules/avltree-list-tests (Depends-on): Add progname.
24984         * tests/test-avltree_list.c: Include progname.h.
24985         (main): Call set_program_name.
24986
24987         * modules/array-oset-tests (Depends-on): Add progname.
24988         * tests/test-array_oset.c: Include progname.h.
24989         (main): Call set_program_name.
24990
24991         * modules/array-list-tests (Depends-on): Add progname.
24992         * tests/test-array_list.c: Include progname.h.
24993         (main): Call set_program_name.
24994
24995         * modules/argp-tests (Depends-on): Add progname.
24996         * tests/test-argp.c: Include argp.h first. Include progname.h.
24997         (main): Call set_program_name.
24998
24999 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
25000
25001         * doc/gnulib-tool.texi (Initial import): Reword description of
25002         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
25003         limited effect even if defined after the first system include.
25004
25005 2007-03-01  Bruno Haible  <bruno@clisp.org>
25006
25007         * build-aux/config.libpath: Update to libtool-1.5.22.
25008         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
25009
25010 2007-03-01  Bruno Haible  <bruno@clisp.org>
25011
25012         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
25013         foo_CFLAGS.
25014         Reported by Ralf Wildenhues.
25015
25016 2007-03-01  Bruno Haible  <bruno@clisp.org>
25017
25018         * build-aux/install-reloc: Remove object files left over by some
25019         compilers.
25020         Reported by Ralf Wildenhues.
25021
25022 2007-03-01  Bruno Haible  <bruno@clisp.org>
25023
25024         * build-aux/install-reloc: Break long lines.
25025
25026 2007-03-01  Bruno Haible  <bruno@clisp.org>
25027
25028         * doc/relocatable.texi: Document that it may not work on OpenBSD.
25029         Reported by Ralf Wildenhues.
25030
25031 2007-03-01  Bruno Haible  <bruno@clisp.org>
25032
25033         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
25034         include ordering constraints.
25035
25036 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
25037
25038         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
25039         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
25040         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
25041         as another example.
25042         * lib/time_.h: Fix misspelling.
25043         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
25044         Require gl_HEADER_TIME_H_DEFAULTS.
25045         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
25046         * m4/time_r.m4 (gl_TIME_R): Likewise.
25047         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
25048
25049 2007-03-01  Bruno Haible  <bruno@clisp.org>
25050
25051         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
25052         * m4/utimens.m4 (gl_UTIMENS): Likewise.
25053
25054 2007-03-01  Jim Meyering  <jim@meyering.net>
25055
25056         * modules/xreadlink (Maintainer): Add my name.
25057         * modules/xreadlink-with-size (Depends-on): Alphabetize.
25058
25059 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
25060             Bruno Haible  <bruno@clisp.org>
25061
25062         * build-aux/install-reloc: Compile also c-ctype.c.
25063         * build-aux/relocatable.sh.in: New file.
25064         * doc/relocatable.texi: New file.
25065         * doc/relocatable-maint.texi: New file.
25066         * doc/gnulib.texi: Include relocatable-maint.texi.
25067         * lib/progreloc.c: Include unistd.h unconditionally.
25068         * lib/relocwrapper.c: Include unistd.h unconditionally.
25069         Include c-ctype.h.
25070         (add_dotbin): Use c_tolower.
25071         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
25072         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
25073         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
25074         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
25075         to m4/relocatable-lib.m4.
25076         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
25077         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
25078         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
25079         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
25080         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
25081         * modules/relocatable: New file.
25082         * modules/relocatable-lib: New file.
25083         * modules/relocatable-script: New file.
25084
25085 2007-02-28  Bruno Haible  <bruno@clisp.org>
25086
25087         Import --enable-relocatable infrastructure.
25088         * build-aux/config.libpath: New file, from GNU gettext.
25089         * build-aux/install-reloc: New file, from GNU gettext.
25090         * build-aux/reloc-ldflags: New file, from GNU gettext.
25091         * lib/relocatable.h: New file, from GNU gettext.
25092         * lib/relocatable.c: New file, from GNU gettext.
25093         * lib/relocwrapper.c: New file, from GNU gettext.
25094         * m4/relocatable.m4: New file, from GNU gettext.
25095
25096 2007-02-28  Bruno Haible  <bruno@clisp.org>
25097
25098         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
25099
25100         * modules/xreadlink: New file, from GNU gettext with modifications.
25101         * lib/xreadlink.c: New file, from GNU gettext.
25102         * lib/xreadlink.h: Add comments.
25103         (xreadlink): New declaration.
25104
25105         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
25106         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
25107         lib/xreadlink-with-size.c.
25108         (configure.ac): Remove gl_XREADLINK invocation.
25109         (Makefile.am): Augment lib_SOURCES.
25110         * m4/xreadlink.m4: Remove file.
25111         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
25112         (xreadlink_with_size): Renamed from xreadink.
25113         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
25114         * modules/canonicalize (Depends-on): Replace xreadlink with
25115         xreadlink-with-size.
25116         * lib/canonicalize.c (canonicalize_filename_mode): Update.
25117
25118 2007-02-25  Jim Meyering  <jim@meyering.net>
25119
25120         * build-aux/announce-gen: When complaining about excess arguments,
25121         list them.
25122
25123 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
25124
25125         * README: Document signed integer overflow situation more
25126         accurately.
25127
25128 2007-02-25  Bruno Haible  <bruno@clisp.org>
25129
25130         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
25131         'a' or 'A' conversion.
25132
25133 2007-02-25  Bruno Haible  <bruno@clisp.org>
25134
25135         * modules/filename: Renamed from modules/pathname.
25136         (Files): Replace lib/pathname.h with lib/filename.h. Replace
25137         lib/concatpath.c with lib/concat-filename.c.
25138         (Makefile.am): Update.
25139         (Include): Replace pathname.h with filename.h.
25140         * lib/filename.h: Renamed from lib/pathname.h.
25141         (concatenated_filename): Renamed from concatenated_pathname.
25142         * lib/concat-filename.c: Renamed from lib/concatpath.c.
25143         (concatenated_filename): Renamed from concatenated_pathname.
25144         * lib/findprog.c: Include filename.h instead of pathname.h.
25145         (find_in_path): Update.
25146         * lib/javacomp.c: Include filename.h instead of pathname.h.
25147         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
25148         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
25149         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
25150         is_oldgcj_14_13_usable, is_javac_usable): Update.
25151         * lib/javaexec.c: Include filename.h instead of pathname.h.
25152         (execute_java_class): Update.
25153         * modules/findprog: Update.
25154         * modules/javacomp: Update.
25155         * modules/javaexec: Update.
25156         * MODULES.html.sh (File system functions): Add 'filename', remove
25157         'pathname'.
25158
25159 2007-02-25  Bruno Haible  <bruno@clisp.org>
25160
25161         * modules/printf-frexpl-tests: New file.
25162         * tests/test-printf-frexpl.c: New file.
25163
25164         * modules/printf-frexpl: New file.
25165         * lib/printf-frexpl.h: New file.
25166         * lib/printf-frexpl.c: New file.
25167         * m4/printf-frexpl.m4: New file.
25168
25169 2007-02-25  Bruno Haible  <bruno@clisp.org>
25170
25171         * modules/printf-frexp-tests: New file.
25172         * tests/test-printf-frexp.c: New file.
25173
25174         * modules/printf-frexp: New file.
25175         * lib/printf-frexp.h: New file.
25176         * lib/printf-frexp.c: New file.
25177         * m4/printf-frexp.m4: New file.
25178
25179 2007-02-25  Bruno Haible  <bruno@clisp.org>
25180
25181         Assume automake >= 1.10 for the tests.
25182         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
25183         * modules/arctwo-tests: Likewise.
25184         * modules/argp-tests: Likewise.
25185         * modules/avltree-list-tests: Likewise.
25186         * modules/avltree-oset-tests: Likewise.
25187         * modules/avltreehash-list-tests: Likewise.
25188         * modules/carray-list-tests: Likewise.
25189         * modules/crc-tests: Likewise.
25190         * modules/des-tests: Likewise.
25191         * modules/gc-arcfour-tests: Likewise.
25192         * modules/gc-arctwo-tests: Likewise.
25193         * modules/gc-des-tests: Likewise.
25194         * modules/gc-hmac-md5-tests: Likewise.
25195         * modules/gc-hmac-sha1-tests: Likewise.
25196         * modules/gc-md2-tests: Likewise.
25197         * modules/gc-md4-tests: Likewise.
25198         * modules/gc-md5-tests: Likewise.
25199         * modules/gc-pbkdf2-sha1-tests: Likewise.
25200         * modules/gc-rijndael-tests: Likewise.
25201         * modules/gc-sha1-tests: Likewise.
25202         * modules/gc-tests: Likewise.
25203         * modules/getaddrinfo-tests: Likewise.
25204         * modules/hmac-md5-tests: Likewise.
25205         * modules/hmac-sha1-tests: Likewise.
25206         * modules/linked-list-tests: Likewise.
25207         * modules/linkedhash-list-tests: Likewise.
25208         * modules/lock-tests: Likewise.
25209         * modules/md2-tests: Likewise.
25210         * modules/md4-tests: Likewise.
25211         * modules/md5-tests: Likewise.
25212         * modules/rbtree-list-tests: Likewise.
25213         * modules/rbtree-oset-tests: Likewise.
25214         * modules/rbtreehash-list-tests: Likewise.
25215         * modules/read-file-tests: Likewise.
25216         * modules/rijndael-tests: Likewise.
25217         * modules/stdint-tests: Likewise.
25218         * modules/tls-tests: Likewise.
25219
25220 2007-02-24  Bruno Haible  <bruno@clisp.org>
25221
25222         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
25223         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
25224         function; instead check whether isnan with a double argument links.
25225         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
25226         function; instead check whether isnan with a 'long double' argument
25227         links.
25228         Reported by Eric Blake <ebb9@byu.net>.
25229
25230 2007-02-24  Bruno Haible  <bruno@clisp.org>
25231
25232         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
25233         defined.
25234         * lib/isnanl.c: Remove all code. Just include isnan.c.
25235         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
25236
25237 2007-02-25  Jim Meyering  <jim@meyering.net>
25238
25239         Avoid conflicting types for 'unsetenv' on FreeBSD.
25240         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
25241         conflicting with FreeBSD's (5.0 and 6.1) function declaration
25242         in stdlib.h.
25243
25244 2007-02-24  Bruno Haible  <bruno@clisp.org>
25245
25246         * modules/isnanl-nolibm-tests: New file.
25247         * tests/test-isnanl.c: New file.
25248
25249         * modules/isnanl-nolibm: New file.
25250         * lib/isnanl.h: New file.
25251         * lib/isnanl.c: New file.
25252         * m4/isnanl.m4: New file.
25253
25254 2007-02-24  Bruno Haible  <bruno@clisp.org>
25255
25256         * modules/isnan-nolibm-tests: New file.
25257         * tests/test-isnan.c: New file.
25258
25259         * modules/isnan-nolibm: New file.
25260         * lib/isnan.h: New file.
25261         * lib/isnan.c: New file.
25262         * m4/isnan.m4: New file.
25263
25264 2007-02-24  Bruno Haible  <bruno@clisp.org>
25265
25266         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
25267         assume that an exponent fits in 20 bits.
25268
25269 2007-02-24  Jim Meyering  <jim@meyering.net>
25270
25271         * m4/regex.m4: Update the description of the configure-time option,
25272         --without-included-regex, to state accurately what the defaults are,
25273         and perhaps to give people an idea why using this option is risky.
25274
25275 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
25276
25277         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
25278         loops on small arguments.  This attempts to avoid the problem
25279         Bruno Haible reported for AIX 4.3.2 in
25280         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
25281
25282 2007-02-23  Bruno Haible  <bruno@clisp.org>
25283
25284         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
25285         Needed for help2man.
25286
25287 2007-02-23  Karl Berry  <karl@gnu.org>
25288
25289         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
25290         exists, foo.h should be cvs-ignored, not committed.
25291
25292 2007-02-23  Eric Blake  <ebb9@byu.net>
25293
25294         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
25295         * lib/stat-time.h (includes): Likewise.
25296         * lib/utimecmp.c (includes): Likewise.
25297         * lib/utimens.h (includes): Likewise.
25298         * lib/getdate.y (includes): Also include "timespec.h" for use
25299         internal to the module.
25300         * modules/utimens (Depends-on): Revert yesterday's patch.
25301         * modules/nanosleep (Depends-on): Add missing dependency.
25302
25303 2007-02-22  Bruno Haible  <bruno@clisp.org>
25304
25305         * lib/glob.c: Don't include getlogin_r.h.
25306
25307 2007-02-22  Jim Meyering  <jim@meyering.net>
25308
25309         * modules/utimens (Depends-on): Add timespec, required for
25310         utimens.h's inclusion of timespec.h.
25311
25312 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
25313
25314         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
25315         long unreadable paths in GNU/Linux.  Problem reported by Andreas
25316         Schwab in
25317         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
25318         I'll try to think of a better way to fix the Solaris problem.
25319
25320         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
25321         like glibc; on Solaris 10, it fails with errno == EINVAL.
25322         POSIX says the behavior is unspecified if the first argument is NULL,
25323         so play it safe and never pass NULL to the system getcwd.
25324
25325 2007-02-21  Jim Meyering  <jim@meyering.net>
25326
25327         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
25328         of gettimeofday.  It would conflict with the one now always
25329         provided via sys_time_.h.  Reported by Matthew Woehlke, as
25330         an IRIX 6.5 build failure.
25331
25332 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
25333
25334         Minor fixups to port to Solaris 10 with Sun C 5.8.
25335         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
25336         * modules/getcwd (Depends-on): Add dirfd.
25337         * lib/putenv.c (putenv): #undef it.
25338         (rpl_putenv): New decl.
25339         (malloc, free): Include <stdlib.h> rather than prototyping separately.
25340
25341 2007-02-20  Bruno Haible  <bruno@clisp.org>
25342
25343         * modules/stdio-tests: New file.
25344         * tests/test-stdio.c: New file.
25345
25346         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
25347         (Depends-on): Add stdio.
25348         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
25349         (Include): Use <stdio.h> instead of vsnprintf.h.
25350         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
25351         HAVE_DECL_VSNPRINTF.
25352         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
25353
25354         * modules/snprintf (Files): Remove lib/snprintf.h.
25355         (Depends-on): Add stdio.
25356         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
25357         (Include): Use <stdio.h> instead of snprintf.h.
25358         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
25359         HAVE_DECL_SNPRINTF.
25360         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
25361         * lib/getaddrinfo.c: Likewise.
25362
25363         * modules/stdio: New file.
25364         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
25365         * lib/snprintf.h: Remove file.
25366         * lib/vsnprintf.h: Remove file.
25367         * lib/.cppi-disable: Remove snprintf.h.
25368         * m4/stdio_h.m4: New file.
25369         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
25370
25371 2007-02-20  Jim Meyering  <jim@meyering.net>
25372
25373         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
25374         used by e.g., mingw.  From Bruno Haible.
25375
25376 2007-02-19  Bruno Haible  <bruno@clisp.org>
25377
25378         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
25379         warnings.
25380         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25381
25382 2007-02-19  Bruno Haible  <bruno@clisp.org>
25383
25384         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
25385         from mingw users.
25386
25387 2007-02-19  Bruno Haible  <bruno@clisp.org>
25388
25389         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
25390         warnings.
25391         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
25392
25393 2007-02-19  Jim Meyering  <jim@meyering.net>
25394
25395         Don't use FD after a successful "fdopendir (fd)".
25396         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
25397         Reset it by calling dirfd on the just-obtained DIR*.
25398
25399         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
25400         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
25401
25402 2007-02-18  Bruno Haible  <bruno@clisp.org>
25403
25404         * lib/readlink.c: Include <unistd.h>.
25405         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
25406         HAVE_READLINK.
25407         * modules/readlink (Depends-on): Add unistd.
25408         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25409         (Include): Add <unistd.h>.
25410
25411         * lib/getlogin_r.h: Remove file.
25412         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
25413         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
25414         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
25415         HAVE_DECL_GETLOGIN_R.
25416         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
25417         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25418         (Include): Use <unistd.h> instead of getlogin_r.h.
25419
25420         * lib/getcwd.h: Remove file.
25421         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
25422         * lib/xgetcwd.c: Likewise.
25423         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
25424         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
25425         * modules/getcwd (Files): Remove lib/getcwd.h.
25426         (Depends-on): Add unistd.
25427         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25428         (Include): Use <unistd.h> instad of getcwd.h.
25429
25430         * lib/ftruncate.c: Include <unistd.h> first.
25431         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
25432         Set HAVE_FTRUNCATE.
25433         * modules/ftruncate (Depends-on): Add unistd.
25434         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25435
25436         * lib/fchdir.c: Include <unistd.h> first.
25437         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
25438         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
25439         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
25440         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25441         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
25442
25443         * lib/dup2.c: Include <unistd.h> first.
25444         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
25445         HAVE_DUP2.
25446         * modules/dup2 (Depends-on): Add unistd.
25447         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25448
25449         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
25450         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
25451         REPLACE_CHOWN. Don't define chown as a macro here.
25452         * modules/chown (Depends-on): Add unistd.
25453         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25454
25455         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
25456         Add definition for GL_LINK_WARNING.
25457         (chown, dup2): New declarations.
25458         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
25459         link warning.
25460         (ftruncate): New declaration.
25461         (getcwd): New declaration, taken from old getcwd.h.
25462         (getlogin_r): New declaration, taken from old getlogin_r.h.
25463         (readlink): New declaration.
25464         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
25465         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
25466         (gl_PREREQ_UNISTD): Remove macro.
25467         (gl_UNISTD_MODULE_INDICATOR): New macro.
25468         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
25469         many new variables. Don't set UNISTD_H.
25470         * modules/unistd (Description): Change.
25471         (Depends-on): Add link-warning.
25472         (configure.ac): Update.
25473         (Makefile.am): Create unistd.h always. Substitute many new variables
25474         into it.
25475
25476 2007-02-18  Bruno Haible  <bruno@clisp.org>
25477
25478         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
25479         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
25480         HAVE_GETSUBOPT.
25481         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
25482         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
25483         * lib/getsubopt.h: Remove file.
25484         * modules/getsubopt (Files): Remove lib/getsubopt.h.
25485         (Depends-on): Add stdlib.
25486         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25487         (Includes): Use <stdlib.h> instead of getsubopt.h.
25488         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
25489         Set HAVE_GETSUBOPT.
25490         * lib/getsubopt.c: Don't include getsubopt.h.
25491
25492 2007-02-18  Bruno Haible  <bruno@clisp.org>
25493
25494         * modules/fchdir (Depends-on): Add dup2.
25495
25496 2007-02-18  Bruno Haible  <bruno@clisp.org>
25497
25498         * lib/stdlib_.h: Handle glibc's special invocation convention
25499         specially.
25500
25501 2007-02-18  Bruno Haible  <bruno@clisp.org>
25502
25503         * modules/stdlib-tests: New file.
25504         * tests/test-stdlib.c: New file.
25505
25506         * modules/mkstemp (Files): Remove lib/mkstemp.h.
25507         (Depends-on): Add stdlib.
25508         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25509         (Includes): Use <stdlib.h> instead of mkstemp.h.
25510         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
25511         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
25512         * lib/mkstemp.c: Don't include mkstemp.h.
25513         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
25514         * lib/stdlib--.h: Don't include mkstemp.h.
25515
25516         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
25517         (Depends-on): Add stdlib.
25518         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25519         (Includes): Use <stdlib.h> instead of mkdtemp.h.
25520         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
25521         HAVE_MKDTEMP.
25522         * lib/mkdtemp.c: Don't include mkdtemp.h.
25523         * lib/clean-temp.c: Don't include mkdtemp.h.
25524
25525         * modules/exit (Files): Remove lib/exit.h.
25526         (Depends-on): Add stdlib.
25527         (Makefile.am): Remove lib_SOURCES.
25528         (Include): Use <stdlib.h> instead of exit.h.
25529         * lib/argmatch.c: Don't include exit.h.
25530         * lib/execute.c: Likewise.
25531         * lib/pagealign_alloc.c: Likewise.
25532         * lib/pipe.c: Likewise.
25533         * lib/wait-process.c: Likewise.
25534         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
25535         * lib/exitfail.c: Likewise.
25536         * lib/savewd.c: Likewise.
25537         * lib/xsetenv.c: Likewise.
25538
25539         * modules/stdlib: New file.
25540         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
25541         and extra comments about mkstemp().
25542         * lib/exit.h: Remove file.
25543         * lib/mkdtemp.h: Remove file.
25544         * lib/mkstemp.h: Remove file.
25545         * m4/stdlib_h.m4: New file.
25546         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
25547
25548 2007-02-18  Bruno Haible  <bruno@clisp.org>
25549
25550         * modules/math-tests: New file.
25551         * tests/test-math.c: New file.
25552
25553         * modules/math: New file.
25554         * modules/mathl (Files): Remove lib/mathl.h.
25555         (Depends-on): Add math.
25556         (Makefile.am): Don't mention mathl.h.
25557         (Include): Use <math.h> instead of mathl.h.
25558         * lib/math_.h: New file.
25559         * lib/mathl.h: Remove file.
25560         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
25561         mathl.h.
25562         * lib/asinl.c: Likewise.
25563         * lib/atanl.c: Likewise.
25564         * lib/ceill.c: Likewise.
25565         * lib/cosl.c: Likewise.
25566         * lib/expl.c: Likewise.
25567         * lib/floorl.c: Likewise.
25568         * lib/frexpl.c: Likewise.
25569         * lib/ldexpl.c: Likewise.
25570         * lib/logl.c: Likewise.
25571         * lib/sincosl.c: Likewise.
25572         * lib/sinl.c: Likewise.
25573         * lib/sqrtl.c: Likewise.
25574         * lib/tanl.c: Likewise.
25575         * lib/trigl.c: Likewise.
25576         * m4/math_h.m4: New file.
25577         * MODULES.html.sh (Mathematics): Add math.
25578
25579 2007-02-17  Bruno Haible  <bruno@clisp.org>
25580
25581         * modules/wctype-tests: New file.
25582         * tests/test-wctype.c: New file.
25583
25584         * modules/wchar-tests: New file.
25585         * tests/test-wchar.c: New file.
25586
25587         * modules/unistd-tests: New file.
25588         * tests/test-unistd.c: New file.
25589
25590         * modules/time-tests: New file.
25591         * tests/test-time.c: New file.
25592
25593         * modules/sysexits-tests: New file.
25594         * tests/test-sysexits.c: New file.
25595
25596         * modules/sys_time-tests: New file.
25597         * tests/test-sys_time.c: New file.
25598
25599         * modules/sys_stat-tests: New file.
25600         * tests/test-sys_stat.c: New file.
25601
25602         * modules/sys_socket-tests: New file.
25603         * tests/test-sys_socket.c: New file.
25604
25605         * modules/sys_select-tests: New file.
25606         * tests/test-sys_select.c: New file.
25607
25608         * modules/string-tests: New file.
25609         * tests/test-string.c: New file.
25610
25611         * modules/stdbool-tests: New file.
25612         * tests/test-stdbool.c: New file.
25613
25614         * modules/netinet_in-tests: New file.
25615         * tests/test-netinet_in.c: New file.
25616
25617         * modules/inttypes-tests: New file.
25618         * tests/test-inttypes.c: New file.
25619
25620         * modules/fcntl-tests: New file.
25621         * tests/test-fcntl.c: New file.
25622
25623         * modules/byteswap-tests: New file.
25624         * tests/test-byteswap.c: New file.
25625
25626         * modules/arpa_inet-tests: New file.
25627         * tests/test-arpa_inet.c: New file.
25628
25629 2007-02-17  Bruno Haible  <bruno@clisp.org>
25630
25631         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
25632         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
25633         if the corresponding module is not enabled. Emit link warnings if
25634         the function is used nevertheless.
25635         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
25636         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
25637         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
25638         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
25639         * modules/inttypes (Depends-on): Add link-warning.
25640         (Makefile.am): Copy the contents of build-aux/link-warning.h into
25641         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
25642         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
25643         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
25644         * modules/imaxdiv (configure.ac): Likewise.
25645         * modules/strtoimax (configure.ac): Likewise.
25646         * modules/strtoumax (configure.ac): Likewise.
25647
25648 2007-02-17  Bruno Haible  <bruno@clisp.org>
25649
25650         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
25651         gl_STRING_MODULE_INDICATOR_DEFAULTS.
25652         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
25653         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
25654
25655 2007-02-17  Bruno Haible  <bruno@clisp.org>
25656
25657         * modules/link-warning: New file.
25658         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
25659         * lib/string_.h (GL_LINK_WARNING): Remove definition.
25660         * modules/string (Depends-on): Add link-warning.
25661         (Makefile.am): Copy the contents of build-aux/link-warning.h into
25662         string.h.
25663         * MODULES.html.sh (Support for building libraries and executables): Add
25664         link-warning.
25665
25666 2007-02-17  Bruno Haible  <bruno@clisp.org>
25667
25668         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
25669         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
25670         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
25671         long lines.
25672
25673 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
25674             Bruno Haible  <bruno@clisp.org>
25675
25676         * modules/tmpfile: New file.
25677         * lib/tmpfile.c: New file.
25678         * m4/tmpfile.m4: New file.
25679         * MODULES.html.sh (func_all_modules): New section "Input/output".
25680
25681 2007-02-15  Bruno Haible  <bruno@clisp.org>
25682
25683         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
25684         (supports_delete_on_close): New function.
25685         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
25686
25687 2007-02-14  Bruno Haible  <bruno@clisp.org>
25688
25689         * modules/mbspcasecmp-tests: New file.
25690         * tests/test-mbspcasecmp.sh: New file.
25691         * tests/test-mbspcasecmp.c: New file.
25692
25693         New module mbspcasecmp.
25694         * modules/mbspcasecmp: New file.
25695         * lib/mbspcasecmp.c: New file.
25696         * lib/string_.h (strncasecmp): Change warning message.
25697         (mbspcasecmp): New declaration.
25698         * m4/mbspcasecmp.m4: New file.
25699         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25700         GNULIB_MBSPCASECMP.
25701         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
25702         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
25703
25704 2007-02-14  Bruno Haible  <bruno@clisp.org>
25705
25706         * modules/mbsncasecmp-tests: New file.
25707         * tests/test-mbsncasecmp.sh: New file.
25708         * tests/test-mbsncasecmp.c: New file.
25709
25710         New module mbsncasecmp.
25711         * modules/mbsncasecmp: New file.
25712         * lib/mbsncasecmp.c: New file.
25713         * lib/string_.h (mbsncasecmp): New declaration.
25714         * m4/mbsncasecmp.m4: New file.
25715         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25716         GNULIB_MBSNCASECMP.
25717         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
25718         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
25719
25720 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
25721
25722         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
25723         Verify that it doesn't overlap with our flags.
25724         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
25725         do not have the desired effect in multibyte locales; instead, use
25726         mbscasecmp.
25727         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
25728         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
25729         we don't require GNU fnmatch ourselves (if our users require it, they
25730         should do so explicitly).
25731
25732         Fix regex code so it doesn't rely on strcasecmp.
25733         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
25734         Otherwise, include gnulib's langinfo.h.
25735         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
25736         undesirable behavior in non-C locales.  Instead, rely on localecharset.
25737         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
25738         * modules/regex (FILES): Remove m4/codeset.m4.
25739         (Depends-on): Add localcharset.  Remove strcase.
25740
25741 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25742
25743         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
25744         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
25745
25746 2007-02-13  Bruno Haible  <bruno@clisp.org>
25747
25748         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
25749         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25750
25751 2007-02-12  Bruno Haible  <bruno@clisp.org>
25752
25753         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
25754         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
25755         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
25756         time warning rather than a link error.
25757
25758 2007-02-12  Bruno Haible  <bruno@clisp.org>
25759
25760         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
25761         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
25762         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25763
25764 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
25765
25766         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
25767         args, not 2.
25768
25769 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
25770
25771         New module 'time', so that apps can include <time.h> as per
25772         POSIX and GNU instead of separate include files like time_r.h
25773         and timegm.h.  This implementation tries out a simpler approach
25774         for replacing decls in standard include files (as compared to
25775         the string module), somewhat as an experiment.
25776
25777         * config/srclist.txt: Comment out mktime.c for now.
25778         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
25779         since it doesn't apply any more.  Use generic wording instead.
25780         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
25781         'time'.
25782         * lib/time_.h, m4/time_h.m4, modules/time: New files.
25783         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
25784         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
25785         Don't include <sys/types.h>; no longer needed since we assume C89.
25786         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
25787         * lib/strftime.c: Likewise.
25788         * lib/time_r.c: Likewise.
25789         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
25790         * lib/nanosleep.c: Include <time.h> first, to check interface.
25791         * lib/strptime.c: Likewise.
25792         * lib/time_r.c: Likewise.
25793         * lib/timegm.c: Likewise.
25794         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
25795         needed.
25796         * lib/timegm.c: Don't include timegm.h; no longer needed.
25797         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
25798         time.h now handles any problems in that area.
25799         (struct timespec, nanosleep): Remove; time.h now arranges for these.
25800         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
25801         that time.h defines struct timespec.
25802         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
25803         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
25804         handles that.
25805         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
25806         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
25807         needed.  Set REPLACE_LOCALTIME.
25808         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
25809         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
25810         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
25811         nanosleep; time_h.m4 now does that.  Don't require
25812         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
25813         module handles this now.
25814         * modules/getdate (Depends-on): Remove timespec.  Add time.
25815         * modules/nanosleep (Depends-on): Likewise.
25816         * modules/stat-time (Depends-on): Likewise.
25817         * modules/nanosleep (Include): Include time.h, not timespec.h.
25818         * modules/strptime (Files): Remove lib/strptime.h.
25819         (Depends-on): Add extensions, time.
25820         (Include): Include time.h, not strptime.h.
25821         * modules/time_r (Files): Remove lib/time_r.h.
25822         (Depends-on): Add time.
25823         (Include): Include time.h, not time_r.h.
25824         * modules/timegm: Likewise.
25825         * modules/timespec (Description): Now does timespec-related decls
25826         of our own, instead of struct timespec itself.
25827         (Depends-on): Add time; remove extensions.
25828         (Maintainer): Add self.
25829         * modules/utimecmp (Depends-on): Add time; remove timespec.
25830         * modules/utimens (Depends-on): Likewise.
25831         * modules/xnanosleep (Depends-on): Likewise.
25832
25833 2007-02-11  Bruno Haible  <bruno@clisp.org>
25834
25835         * lib/c-strstr.c: Include allocsa.h.
25836         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25837         * lib/c-strcasestr.c: Include allocsa.h.
25838         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25839         * lib/strcasestr.c: Include allocsa.h.
25840         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25841         * lib/mbsstr.c: Include allocsa.h.
25842         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
25843         allocsa/freesa instead of malloc/free.
25844         * lib/mbscasestr.c: Include allocsa.h.
25845         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
25846         allocsa/freesa instead of malloc/free.
25847         * modules/c-strstr (Depends-on): Add allocsa.
25848         * modules/c-strcasestr (Depends-on): Likewise.
25849         * modules/strcasestr (Depends-on): Likewise.
25850         * modules/mbsstr (Depends-on): Likewise.
25851         * modules/mbscasestr (Depends-on): Likewise.
25852
25853 2007-02-11  Bruno Haible  <bruno@clisp.org>
25854
25855         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
25856
25857         * modules/mbsspn-tests: New file.
25858         * tests/test-mbsspn.sh: New file.
25859         * tests/test-mbsspn.c: New file.
25860
25861 2007-02-11  Bruno Haible  <bruno@clisp.org>
25862
25863         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
25864
25865         * modules/mbspbrk-tests: New file.
25866         * tests/test-mbspbrk.sh: New file.
25867         * tests/test-mbspbrk.c: New file.
25868
25869 2007-02-11  Bruno Haible  <bruno@clisp.org>
25870
25871         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
25872         unneeded cast.
25873
25874         * modules/mbscspn-tests: New file.
25875         * tests/test-mbscspn.sh: New file.
25876         * tests/test-mbscspn.c: New file.
25877
25878 2007-02-11  Bruno Haible  <bruno@clisp.org>
25879
25880         * modules/mbscasecmp-tests: New file.
25881         * tests/test-mbscasecmp.sh: New file.
25882         * tests/test-mbscasecmp.c: New file.
25883
25884 2007-02-11  Bruno Haible  <bruno@clisp.org>
25885
25886         Ensure O(n) worst-case complexity of mbscasestr.
25887         * lib/mbscasestr.c: Include stdbool.h.
25888         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
25889         functions.
25890         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
25891         the bookkeeping indicates that it's worth it.
25892         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
25893
25894         * modules/mbscasestr-tests: New file.
25895         * tests/test-mbscasestr1.c: New file.
25896         * tests/test-mbscasestr2.sh: New file.
25897         * tests/test-mbscasestr2.c: New file.
25898         * tests/test-mbscasestr3.sh: New file.
25899         * tests/test-mbscasestr3.c: New file.
25900         * tests/test-mbscasestr4.sh: New file.
25901         * tests/test-mbscasestr4.c: New file.
25902         * m4/locale-tr.m4: New file.
25903
25904 2007-02-11  Bruno Haible  <bruno@clisp.org>
25905
25906         Ensure O(n) worst-case complexity of mbsstr.
25907         * lib/mbsstr.c: Include stdbool.h.
25908         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
25909         functions.
25910         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
25911         bookkeeping indicates that it's worth it.
25912         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
25913
25914         * modules/mbsstr-tests: New file.
25915         * tests/test-mbsstr1.c: New file.
25916         * tests/test-mbsstr2.sh: New file.
25917         * tests/test-mbsstr2.c: New file.
25918         * tests/test-mbsstr3.sh: New file.
25919         * tests/test-mbsstr3.c: New file.
25920         * m4/locale-fr.m4: New file.
25921
25922 2007-02-11  Bruno Haible  <bruno@clisp.org>
25923
25924         * lib/mbsrchr.c (mbsrchr): Fix bug.
25925
25926         * modules/mbsrchr-tests: New file.
25927         * tests/test-mbsrchr.sh: New file.
25928         * tests/test-mbsrchr.c: New file.
25929
25930 2007-02-11  Bruno Haible  <bruno@clisp.org>
25931
25932         * lib/mbschr.c (mbschr): Fix bug.
25933
25934         * modules/mbschr-tests: New file.
25935         * tests/test-mbschr.sh: New file.
25936         * tests/test-mbschr.c: New file.
25937         * m4/locale-zh.m4: New file.
25938
25939 2007-02-11  Bruno Haible  <bruno@clisp.org>
25940
25941         Support for copying multibyte string iterators.
25942         * lib/mbiter.h: Include <string.h>.
25943         (mbiter_multi_copy): New function.
25944         (mbi_copy): New macro.
25945         * lib/mbuiter.h: Include <string.h>.
25946         (mbuiter_multi_copy): New function.
25947         (mbui_copy): New macro.
25948
25949 2007-02-11  Bruno Haible  <bruno@clisp.org>
25950
25951         New module mbslen.
25952         * modules/mbslen: New file.
25953         * lib/mbslen.c: New file.
25954         * lib/string_.h (mbslen): New declaration.
25955         * m4/mbslen.m4: New file.
25956         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25957         GNULIB_MBSLEN.
25958         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
25959         * MODULES.html.sh (Internationalization functions): Add mbslen.
25960
25961 2007-02-11  Bruno Haible  <bruno@clisp.org>
25962
25963         Ensure O(n) worst-case complexity of strcasestr substitute.
25964         * lib/strcasestr.c: Include stdbool.h.
25965         (knuth_morris_pratt): New function.
25966         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
25967         bookkeeping indicates that it's worth it.
25968         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
25969
25970         * modules/strcasestr-tests: New file.
25971         * tests/test-strcasestr.c: New file.
25972
25973 2007-02-11  Bruno Haible  <bruno@clisp.org>
25974
25975         Ensure O(n) worst-case complexity of c_strcasestr.
25976         * lib/c-strcasestr.c: Include stdbool.h, string.h.
25977         (knuth_morris_pratt): New function.
25978         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
25979         the bookkeeping indicates that it's worth it.
25980         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
25981
25982         * modules/c-strcasestr-tests: New file.
25983         * tests/test-c-strcasestr.c: New file.
25984
25985 2007-02-11  Bruno Haible  <bruno@clisp.org>
25986
25987         Ensure O(n) worst-case complexity of c_strstr.
25988         * lib/c-strstr.c: Include stdbool.h, string.h.
25989         (knuth_morris_pratt): New function.
25990         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
25991         bookkeeping indicates that it's worth it.
25992         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
25993
25994         * lib/c-strstr.c: Complete rewrite for maintainability.
25995
25996         * modules/c-strstr-tests: New file.
25997         * tests/test-c-strstr.c: New file.
25998
25999 2007-02-11  Bruno Haible  <bruno@clisp.org>
26000
26001         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
26002         5.2.1 and earlier, whereby \055 was treated just like the range
26003         delimiter '-'.
26004         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26005
26006 2007-02-08  Bruno Haible  <bruno@clisp.org>
26007
26008         * modules/regex (Depends-on): Add stdbool.
26009         Reported by Dalibor Topic <robilad@kaffe.org>.
26010
26011 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
26012
26013         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
26014         Prefer returning from main to exiting from it.
26015         Remove unnecessary parens after sizeof.
26016
26017 2007-02-05  Bruno Haible  <bruno@clisp.org>
26018
26019         New module mbssep.
26020         * modules/mbssep: New file.
26021         * lib/mbssep.c: New file.
26022         * lib/string_.h (strsep): Add a conditional link warning.
26023         (mbssep): New declaration.
26024         * m4/mbssep.m4: New file.
26025         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26026         GNULIB_MBSSEP.
26027         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
26028         * MODULES.html.sh (Internationalization functions): Add mbssep.
26029
26030 2007-02-05  Bruno Haible  <bruno@clisp.org>
26031
26032         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
26033         Optimize search in case of 1 delimiter.
26034
26035 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
26036
26037         * lib/acl.h: Include sys/types.h before sys/acl.h.
26038
26039 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
26040
26041         Merge upstream fix for glibc bugzilla #3957:
26042
26043         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
26044
26045         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
26046         bit for RE_HAT_LISTS_NOT_NEWLINE.
26047         (build_charclass_op): Remove bogus comment.
26048
26049 2007-02-05  Simon Josefsson  <simon@josefsson.org>
26050
26051         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
26052
26053 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
26054
26055         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
26056         * lib/memmem.c [!defined _LIBC]: Include config.h.
26057
26058 2007-02-04  Bruno Haible  <bruno@clisp.org>
26059
26060         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
26061         warning message.
26062
26063 2007-02-04  Bruno Haible  <bruno@clisp.org>
26064
26065         New module mbstok_r.
26066         * modules/mbstok_r: New file.
26067         * lib/mbstok_r.c: New file.
26068         * lib/string_.h (strtok_r): Change argument names to match the
26069         comments. Add a conditional link warning.
26070         (mbstok_r): New declaration.
26071         * m4/mbstok_r.m4: New file.
26072         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26073         GNULIB_MBSTOK_R.
26074         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
26075         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
26076
26077 2007-02-04  Bruno Haible  <bruno@clisp.org>
26078
26079         New module mbsspn.
26080         * modules/mbsspn: New file.
26081         * lib/mbsspn.c: New file.
26082         * lib/string_.h (strspn): Add a conditional link warning.
26083         (mbsspn): New declaration.
26084         * m4/mbsspn.m4: New file.
26085         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26086         GNULIB_MBSSPN.
26087         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
26088         * MODULES.html.sh (Internationalization functions): Add mbsspn.
26089
26090 2007-02-04  Bruno Haible  <bruno@clisp.org>
26091
26092         New module mbspbrk.
26093         * modules/mbspbrk: New file.
26094         * lib/mbspbrk.c: New file.
26095         * lib/string_.h (strpbrk): Add a conditional link warning.
26096         (mbspbrk): New declaration.
26097         * m4/mbspbrk.m4: New file.
26098         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26099         GNULIB_MBSPBRK.
26100         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
26101         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
26102
26103 2007-02-04  Bruno Haible  <bruno@clisp.org>
26104
26105         New module mbscspn.
26106         * modules/mbscspn: New file.
26107         * lib/mbscspn.c: New file.
26108         * lib/string_.h (strcspn): Add a conditional link warning.
26109         (mbscspn): New declaration.
26110         * m4/mbscspn.m4: New file.
26111         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26112         GNULIB_MBSCSPN.
26113         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
26114         * MODULES.html.sh (Internationalization functions): Add mbscspn.
26115
26116 2007-02-04  Bruno Haible  <bruno@clisp.org>
26117
26118         New module mbscasestr, reduced goal of strcasestr.
26119         * modules/mbscasestr: New file.
26120         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
26121         (mbscasestr): Renamed from strcasestr.
26122         * lib/strcasestr.c: Don't include mbuiter.h.
26123         (strcasestr): Remove support for multibyte locales.
26124         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
26125         Change the conditional link warning.
26126         (mbscasestr): New declaration.
26127         * m4/mbscasestr.m4: New file.
26128         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
26129         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
26130         REPLACE_STRCASESTR.
26131         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
26132         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
26133         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
26134         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
26135         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
26136         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
26137         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
26138         (Depends-on): Remove mbuiter.
26139         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
26140
26141 2007-02-04  Bruno Haible  <bruno@clisp.org>
26142
26143         Simplify handling of strncasecmp.
26144         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
26145         the conditional link warning.
26146         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
26147         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
26148         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
26149         * modules/strcase (configure.ac): Don't invoke
26150         gl_STRING_MODULE_INDICATOR.
26151         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
26152
26153 2007-02-04  Bruno Haible  <bruno@clisp.org>
26154
26155         New module mbscasecmp, reduced goal of strcasecmp.
26156         * modules/mbscasecmp: New file.
26157         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
26158         (mbscasecmp): Renamed from strcasecmp.
26159         * lib/strcasecmp.c: Don't include mbuiter.h.
26160         (strcasecmp): Remove support for multibyte locales.
26161         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
26162         Change the conditional link warning.
26163         (mbscasecmp): New declaration.
26164         * m4/mbscasecmp.m4: New file.
26165         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
26166         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
26167         REPLACE_STRCASECMP.
26168         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
26169         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26170         GNULIB_MBSCASECMP.
26171         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
26172         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
26173         * modules/strcase (Files): Remove m4/mbrtowc.m4.
26174         (Depends-on): Remove mbuiter.
26175         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
26176
26177 2007-02-04  Bruno Haible  <bruno@clisp.org>
26178
26179         New module mbsstr. Remove module strstr.
26180         * modules/mbsstr: New file.
26181         * modules/strstr: Remove file.
26182         * lib/mbsstr.c: Renamed from lib/strstr.c.
26183         (mbsstr): Renamed from strstr.
26184         * lib/string_.h (strstr): Remove declaration. Change the conditional
26185         link warning.
26186         (mbsstr): New declaration.
26187         * m4/mbsstr.m4: New file.
26188         * m4/strstr.m4: Remove file.
26189         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
26190         REPLACE_STRSTR.
26191         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
26192         Don't initialize GNULIB_STRSTR.
26193         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
26194         substitute GNULIB_STRSTR and REPLACE_STRSTR.
26195         * MODULES.html.sh (Internationalization functions): Add mbsstr.
26196         (Support for systems lacking ANSI C 89): Remove strstr.
26197
26198 2007-02-04  Bruno Haible  <bruno@clisp.org>
26199
26200         New module mbsrchr.
26201         * modules/mbsrchr: New file.
26202         * lib/mbsrchr.c: New file.
26203         * lib/string_.h (strrchr): Add a conditional link warning.
26204         (mbsrchr): New declaration.
26205         * m4/mbsrchr.m4: New file.
26206         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26207         GNULIB_MBSRCHR.
26208         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
26209         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
26210
26211 2007-02-04  Bruno Haible  <bruno@clisp.org>
26212
26213         New module mbschr.
26214         * modules/mbschr: New file.
26215         * lib/mbschr.c: New file.
26216         * lib/string_.h (strchr): Add a conditional link warning.
26217         (mbschr): New declaration.
26218         * m4/mbschr.m4: New file.
26219         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26220         GNULIB_MBSCHR.
26221         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
26222         * MODULES.html.sh (Internationalization functions): Add mbschr.
26223
26224 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
26225
26226         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
26227
26228         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
26229
26230 2007-02-04  Bruno Haible  <bruno@clisp.org>
26231
26232         New module description section 'configure.ac-early'.
26233         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
26234         (func_get_autoconf_early_snippet): New function.
26235         (func_import, func_create_testdir): Use it. Remove special cases for
26236         modules 'extensions' and 'lock'.
26237         * modules/extensions (configure.ac-early): Require
26238         gl_USE_SYSTEM_EXTENSIONS.
26239         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
26240
26241 2007-02-04  Bruno Haible  <bruno@clisp.org>
26242
26243         Make use of gcj-4.3's -fsource and -ftarget option.
26244         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
26245         and if so try the options -fsource and -ftarget.
26246         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
26247         source_version, ftarget_option, target_version arguments.
26248         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
26249         (is_envjavac_oldgcj_14_14_usable): Renamed from
26250         is_envjavac_gcj_14_14_usable.
26251         (is_envjavac_oldgcj_14_13_usable): Renamed from
26252         is_envjavac_gcj_14_13_usable.
26253         (is_gcj_present): Update.
26254         (is_gcj_43, is_gcj43_usable): New functions.
26255         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
26256         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
26257         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
26258         try the options -fsource and -ftarget.
26259
26260 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
26261
26262         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
26263         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
26264         larger value.
26265
26266 2007-02-03  Jim Meyering  <jim@meyering.net>
26267
26268         Give tools a better chance to allocate space for very large buffers.
26269         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
26270
26271         Make pwd and readlink work also when run with an unreadable parent dir
26272         on systems with openat support.
26273         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
26274         provided getcwd function, even when we have openat support.
26275         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
26276
26277 2007-02-02  Bruno Haible  <bruno@clisp.org>
26278
26279         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
26280         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
26281         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
26282         portability problems if one of these functions is only used on specific
26283         platforms.
26284         Reported by Paul Eggert.
26285
26286 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
26287
26288         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
26289         is causing more trouble than it's curing.
26290         * lib/regex_internal.h (__mempcpy): Remove.
26291         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
26292         (and make the code a tad smaller to boot).
26293         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
26294
26295 2007-02-02  Jim Meyering  <jim@meyering.net>
26296
26297         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
26298         section, not in the Makefile.am: one.
26299
26300 2007-02-02  Eric Blake  <ebb9@byu.net>
26301
26302         * lib/strchrnul.c: Always include config.h first.
26303
26304         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
26305         gnulib strstr is not necessary here.
26306
26307 2007-02-02  Simon Josefsson  <simon@josefsson.org>
26308
26309         * m4/socklen.m4: Fix typo.
26310
26311 2007-02-02  Eric Blake  <ebb9@byu.net>
26312
26313         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
26314         * modules/netinet_in (Makefile.am): Likewise.
26315
26316 2007-02-01  Bruno Haible  <bruno@clisp.org>
26317
26318         * lib/string_.h (GL_LINK_WARNING): New macro.
26319         (strcasecmp, strstr, strcasestr): If provided by the system,
26320         conditionally define as a macro that leads to a warning instead of to
26321         an error.
26322         (strncasecmp): Conditionally define as a macro that leads to a warning.
26323
26324 2007-02-01  Karl Berry  <karl@gnu.org>
26325
26326         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
26327
26328 2007-02-01  Bruno Haible  <bruno@clisp.org>
26329
26330         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
26331         renamings.
26332
26333 2007-02-01  Eric Blake  <ebb9@byu.net>
26334
26335         * modules/regex (Depends-on): Revert dependence on mempcpy.
26336         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
26337         module's definition of mempcpy.
26338         Reported by Paul Eggert.
26339
26340 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
26341
26342         * lib/string_.h: If the gnulib module XYZ is not present, undefine
26343         the symbol XYZ before redefining it.  This fixes a problem with
26344         programs that don't use XYZ, when compiled on systems that define
26345         XYZ to something else.
26346
26347 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
26348
26349         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
26350         occurs when "mkdir -m foo" creates a setgid directory that is (1)
26351         writeable to group or other and (2) is intended to have a special
26352         mode bit that is set or cleared.  In such a case, the directory
26353         should be neither group- nor other-writeable until the special
26354         mode bits are right.
26355
26356 2007-01-31  Eric Blake  <ebb9@byu.net>
26357
26358         * modules/mountlist (Depends-on): Add strstr.
26359
26360         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
26361         bug.
26362         * modules/string (Makefile.am): Remove redundant replacement.
26363         * modules/regex (Depends-on): Add mempcpy.
26364
26365 2007-01-31  Bruno Haible  <bruno@clisp.org>
26366
26367         New module description field 'Link'.
26368         * gnulib-tool (func_usage): Document --extract-link-directive.
26369         (sed_extract_prog): Recognize 'Link' directive.
26370         (func_get_link_directive): New function.
26371         (func_import): Show summary of link directives.
26372         Handle --extract-link-directive option.
26373         * modules/acl (Link): New section.
26374         * modules/clock-time (Link): New section.
26375         * modules/euidaccess (Link): New section.
26376         * modules/gettext (Link): New section.
26377         * modules/iconv (Link): New section.
26378         * modules/lock (Link): New section.
26379         * modules/nanosleep (Link): New section.
26380         * modules/readline (Link): New section.
26381
26382 2007-01-27  Bruno Haible  <bruno@clisp.org>
26383
26384         Enforce the use of gnulib modules for unportable <string.h> functions.
26385         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
26386         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
26387         (gl_HEADER_STRING_H_BODY): Require it.
26388         * lib/string_.h: If the gnulib module XYZ is not present, redefine
26389         the symbol XYZ to one that gives a link error.
26390         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
26391         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
26392         * modules/mempcpy (configure.ac): Likewise.
26393         * modules/memrchr (configure.ac): Likewise.
26394         * modules/stpcpy (configure.ac): Likewise.
26395         * modules/stpncpy (configure.ac): Likewise.
26396         * modules/strcase (configure.ac): Likewise.
26397         * modules/strcasestr (configure.ac): Likewise.
26398         * modules/strchrnul (configure.ac): Likewise.
26399         * modules/strdup (configure.ac): Likewise.
26400         * modules/strndup (configure.ac): Likewise.
26401         * modules/strnlen (configure.ac): Likewise.
26402         * modules/strpbrk (configure.ac): Likewise.
26403         * modules/strsep (configure.ac): Likewise.
26404         * modules/strstr (configure.ac): Likewise.
26405         * modules/strtok_r (configure.ac): Likewise.
26406
26407 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
26408
26409         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
26410
26411 2007-01-30  Jim Meyering  <jim@meyering.net>
26412
26413         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
26414
26415 2007-01-29  Bruno Haible  <bruno@clisp.org>
26416
26417         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
26418         * lib/execute.c: Likewise.
26419         * lib/pipe.c: Likewise.
26420         * lib/printf-args.h: Likewise.
26421         * lib/printf-args.c: Likewise.
26422         * lib/printf-parse.c: Likewise.
26423         * lib/vasnprintf.c: Likewise.
26424
26425 2007-01-29  Eric Blake  <ebb9@byu.net>
26426
26427         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
26428         declaration.
26429
26430 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
26431
26432         * lib/strptime.h (strptime): Use 'restrict' for args where
26433         POSIX requires this.
26434         * lib/strptime.c (strptime): Likewise.
26435         Change license notice from LGPL to GPL, since gnulib-tool will
26436         change this as needed.
26437         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
26438         defined.
26439         Include "strptime.h" first, to check interface.
26440         Do not #undef _LIBC and _NL_CURRENT.
26441         Do not include <stdlib.h>; no longer needed.
26442         Include "time_r.h" and declare ptime_locale_status
26443         only if _LIBC is not defined.
26444         (__P): Remove unused macro.
26445         (match_string): Bring back glibc version, but use it only if _LIBC
26446         is defined.
26447         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
26448         Remove unnecessary assertion and abort() call.
26449         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
26450         * m4/strptime.m4: Fix serial number comment.
26451         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
26452         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
26453         (Depends-on): Add time_r.
26454
26455 2007-01-29  Bruno Haible  <bruno@clisp.org>
26456
26457         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26458         strptime.
26459         * modules/strptime (Depends-on): Add stdbool.
26460         * lib/strptime.h: Include <time.h> always. Add comments.
26461
26462 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26463
26464         * modules/strptime: New file.
26465         * lib/strptime.h: New file.
26466         * lib/strptime.c: New file.
26467         * m4/strptime.m4: New file.
26468
26469 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
26470
26471         * MODULES.html.sh: New module mpsort.
26472         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
26473
26474         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
26475         a circularity problem with HP-UX ia64 reported by Bob Proulx in
26476         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
26477         All uses changed.
26478         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
26479         All uses changed.
26480         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
26481         to _Restrict_.
26482         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
26483         the parameter matches the prototype.
26484
26485 2007-01-28  Jim Meyering  <jim@meyering.net>
26486
26487         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
26488         sys/time.h here, reverting that part of the previous patch:
26489         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
26490
26491 2007-01-28  Bruno Haible  <bruno@clisp.org>
26492
26493         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
26494         value of $(SYS_TIME_H).
26495         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
26496         remove it conditionally, too. [added by Jim Meyering]
26497         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
26498         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
26499         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
26500         GETTIMEOFDAY_REPLACEMENT to 1.
26501
26502 2007-01-28  Bruno Haible  <bruno@clisp.org>
26503
26504         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
26505         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
26506         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
26507         Set UNISTD_H instead of UNISTD_H2.
26508         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
26509
26510 2007-01-28  Bruno Haible  <bruno@clisp.org>
26511
26512         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
26513         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
26514
26515 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26516
26517         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
26518         (func_create_testdir): Ensure C locale for `grep' and `tr'
26519         character ranges.
26520         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
26521         ACLOCAL_AMFLAGS parsing state machine.
26522
26523 2007-01-27  Bruno Haible  <bruno@clisp.org>
26524
26525         * modules/unistr/base: Update.
26526
26527 2007-01-27  Bruno Haible  <bruno@clisp.org>
26528
26529         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
26530         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
26531         * modules/unistr/u32-mbtouc-unsafe: Renamed from
26532         modules/unistr/u32-mbtouc.
26533         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
26534         * lib/unistr.h: Update.
26535         * lib/linebreak.c: Update.
26536         * modules/unistr/u32-mbtouc: Renamed from
26537         modules/unistr/u32-mbtouc-safe.
26538         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
26539         * lib/unistr.h: Update.
26540         * lib/unistr/u32-to-u8.c: Update.
26541         * lib/unistr/u32-to-u16.c: Update.
26542
26543 2007-01-27  Bruno Haible  <bruno@clisp.org>
26544
26545         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
26546         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
26547         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
26548         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
26549         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
26550         * modules/unistr/u16-mbtouc-unsafe: Renamed from
26551         modules/unistr/u16-mbtouc.
26552         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
26553         * lib/unistr.h: Update.
26554         * lib/linebreak.c: Update.
26555         * modules/linebreak: Update.
26556         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
26557         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
26558         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
26559         * modules/unistr/u16-mbtouc: Renamed from
26560         modules/unistr/u16-mbtouc-safe.
26561         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
26562         * lib/unistr.h: Update.
26563         * lib/unistr/u16-to-u8.c: Update.
26564         * modules/unistr/u16-to-u8: Update.
26565         * lib/unistr/u16-to-u32.c: Update.
26566         * modules/unistr/u16-to-u32: Update.
26567
26568 2007-01-27  Bruno Haible  <bruno@clisp.org>
26569
26570         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
26571         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
26572         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
26573         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
26574         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
26575         * modules/unistr/u8-mbtouc-unsafe: Renamed from
26576         modules/unistr/u8-mbtouc.
26577         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
26578         * lib/unistr.h: Update.
26579         * lib/striconveh.c: Update.
26580         * modules/striconveh: Update.
26581         * lib/linebreak.c: Update.
26582         * modules/linebreak: Update.
26583         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
26584         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
26585         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
26586         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
26587         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
26588         * lib/unistr.h: Update.
26589         * lib/striconveh.c: Update.
26590         * modules/striconveh: Update.
26591         * lib/unistr/u8-to-u16.c: Update.
26592         * modules/unistr/u8-to-u16: Update.
26593         * lib/unistr/u8-to-u32.c: Update.
26594         * modules/unistr/u8-to-u32: Update.
26595
26596 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26597
26598         Sync from Libtool.
26599         * lib/argz.c: Do not include strings.h nor memory.h, include
26600         string.h unconditionally.  Patch by Simon Josefsson.
26601
26602 2007-01-27  Bruno Haible  <bruno@clisp.org>
26603
26604         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
26605         from gl_HEADER_STRING_H_BODY.
26606         (gl_HEADER_STRING_H_BODY): Require it.
26607         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
26608         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
26609         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
26610         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
26611         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
26612         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
26613         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
26614         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
26615         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
26616         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
26617         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
26618         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
26619         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
26620         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
26621         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
26622
26623 2007-01-27  Bruno Haible  <bruno@clisp.org>
26624
26625         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
26626         check_PROGRAMS into noinst_PROGRAMS.
26627         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
26628         check_PROGRAMS in this case.
26629         (func_import): Set for_test to false.
26630         (func_create_testdir): Set for_test to true.
26631
26632 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
26633             Bruno Haible  <bruno@clisp.org>
26634
26635         * modules/strcasestr (Files): Remove lib/strcasestr.h.
26636         (Depends-on): Add string.
26637         (Includes): Use <string.h> instead of strcasestr.h.
26638         * modules/string (Makefile.am): Also substitute the value of
26639         REPLACE_STRCASESTR.
26640         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
26641         assume strcasestr is declared in <string.h> not <strings.h>. Also
26642         set REPLACE_STRCASESTR.
26643         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
26644         REPLACE_STRCASESTR.
26645         * lib/strcasestr.h: Remove file.
26646         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
26647         * lib/string_.h (strcasestr): New declaration.
26648
26649 2007-01-27  Bruno Haible  <bruno@clisp.org>
26650
26651         * lib/string_.h: Use 'extern'.
26652
26653 2007-01-27  Jim Meyering  <jim@meyering.net>
26654
26655         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
26656         of set-but-not-used local, "q".
26657
26658         * lib/mempcpy.c: Include <config.h> before <string.h>.
26659         This fixes a compilation error on HP-UX, due to the system's
26660         "restrict"-using mempcpy prototype.
26661
26662 2007-01-26  Bruno Haible  <bruno@clisp.org>
26663
26664         Small optimization.
26665         * lib/javacomp.c: Include c-strstr.h.
26666          (is_envjavac_gcj): Use c_strstr instead of strstr.
26667         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
26668
26669 2007-01-26  Bruno Haible  <bruno@clisp.org>
26670
26671         * MODULES.html.sh (Unicode string functions): Add the new modules.
26672
26673         * modules/uniconv/u32-strconv-to-locale: New file.
26674         * lib/uniconv/u32-strconv-to-locale.c: New file.
26675
26676         * modules/uniconv/u16-strconv-to-locale: New file.
26677         * lib/uniconv/u16-strconv-to-locale.c: New file.
26678
26679         * modules/uniconv/u8-strconv-to-locale: New file.
26680         * lib/uniconv/u8-strconv-to-locale.c: New file.
26681
26682         * modules/uniconv/u32-strconv-from-locale: New file.
26683         * lib/uniconv/u32-strconv-from-locale.c: New file.
26684
26685         * modules/uniconv/u16-strconv-from-locale: New file.
26686         * lib/uniconv/u16-strconv-from-locale.c: New file.
26687
26688         * modules/uniconv/u8-strconv-from-locale: New file.
26689         * lib/uniconv/u8-strconv-from-locale.c: New file.
26690
26691         * modules/uniconv/u32-strconv-to-enc: New file.
26692         * lib/uniconv/u32-strconv-to-enc.c: New file.
26693         * modules/uniconv/u32-strconv-to-enc-tests: New file.
26694         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
26695
26696         * modules/uniconv/u16-strconv-to-enc: New file.
26697         * lib/uniconv/u16-strconv-to-enc.c: New file.
26698         * lib/uniconv/u-strconv-to-enc.h: New file.
26699         * modules/uniconv/u16-strconv-to-enc-tests: New file.
26700         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
26701
26702         * modules/uniconv/u8-strconv-to-enc: New file.
26703         * lib/uniconv/u8-strconv-to-enc.c: New file.
26704         * modules/uniconv/u8-strconv-to-enc-tests: New file.
26705         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
26706
26707         * modules/uniconv/u32-strconv-from-enc: New file.
26708         * lib/uniconv/u32-strconv-from-enc.c: New file.
26709         * modules/uniconv/u32-strconv-from-enc-tests: New file.
26710         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
26711
26712         * modules/uniconv/u16-strconv-from-enc: New file.
26713         * lib/uniconv/u16-strconv-from-enc.c: New file.
26714         * modules/uniconv/u16-strconv-from-enc-tests: New file.
26715         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
26716
26717         * modules/uniconv/u8-strconv-from-enc: New file.
26718         * lib/uniconv/u8-strconv-from-enc.c: New file.
26719         * lib/uniconv/u-strconv-from-enc.h: New file.
26720         * modules/uniconv/u8-strconv-from-enc-tests: New file.
26721         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
26722
26723         * modules/uniconv/u32-conv-from-enc: New file.
26724         * lib/uniconv/u32-conv-from-enc.c: New file.
26725         * modules/uniconv/u32-conv-from-enc-tests: New file.
26726         * tests/uniconv/test-u32-conv-from-enc.c: New file.
26727
26728         * modules/uniconv/u16-conv-from-enc: New file.
26729         * lib/uniconv/u16-conv-from-enc.c: New file.
26730         * lib/uniconv/u-conv-from-enc.h: New file.
26731         * modules/uniconv/u16-conv-from-enc-tests: New file.
26732         * tests/uniconv/test-u16-conv-from-enc.c: New file.
26733
26734         * modules/uniconv/u8-conv-from-enc: New file.
26735         * lib/uniconv/u8-conv-from-enc.c: New file.
26736         * modules/uniconv/u8-conv-from-enc-tests: New file.
26737         * tests/uniconv/test-u8-conv-from-enc.c: New file.
26738
26739         * modules/uniconv/base: New file.
26740         * lib/uniconv.h: New file.
26741
26742 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
26743
26744         * doc/gnulib-tool.texi (Initial import): Update to match current
26745         behavior with strdup module.
26746         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
26747         * lib/memmem.h: Remove; all uses removed.  This is now done
26748         by <string.h>.
26749         * lib/mempcpy.h: Likewise.
26750         * lib/memrchr.h: Likewise.
26751         * lib/stpcpy.h: Likewise.
26752         * lib/stpncpy.h: Likewise.
26753         * lib/strcase.h: Likewise.
26754         * lib/strchrnul.h: Likewise.
26755         * lib/strdup.h: Likewise.
26756         * lib/strndup.h: Likewise.
26757         * lib/strnlen.h: Likewise.
26758         * lib/strpbrk.h: Likewise.
26759         * lib/strsep.h: Likewise.
26760         * lib/strstr.h: Likewise.
26761         * lib/strtok_r.h: Likewise.
26762         * lib/string_.h: New file.
26763         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
26764         Rely on <string.h> instead.
26765         * lib/canon-host.c: Likewise.
26766         * lib/chdir-long.c: Likewise.
26767         * lib/concatpath.c: Likewise.
26768         * lib/exclude.c: Likewise.
26769         * lib/fchdir.c: Likewise.
26770         * lib/getaddrinfo.c: Likewise.
26771         * lib/getcwd.c: Likewise.
26772         * lib/getsubopt.c: Likewise.
26773         * lib/glob.c: Likewise.
26774         * lib/hard-locale.c: Likewise.
26775         * lib/iconvme.c: Likewise.
26776         * lib/javacomp.c: Likewise.
26777         * lib/mempcpy.c: Likewise.
26778         * lib/memrchr.c: Likewise.
26779         * lib/regex_internal.h: Likewise.
26780         * lib/stpncpy.c: Likewise.
26781         * lib/strcasecmp.c: Likewise.
26782         * lib/strchrnul.c: Likewise.
26783         * lib/strdup.c: Likewise.
26784         * lib/striconv.c: Likewise.
26785         * lib/striconveh.c: Likewise.
26786         * lib/striconveha.c: Likewise.
26787         * lib/strncasecmp.c: Likewise.
26788         * lib/strndup.c: Likewise.
26789         * lib/strnlen.c: Likewise.
26790         * lib/strsep.c: Likewise.
26791         * lib/strstr.c: Likewise.
26792         * lib/strtok_r.c: Likewise.
26793         * lib/userspec.c: Likewise.
26794         * lib/w32spawn.h: Likewise.
26795         * lib/xstrndup.c: Likewise.
26796         * lib/mountlist.c (strstr): Remove decl.
26797         * m4/string_h.m4: New file.
26798         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
26799         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
26800         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
26801         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
26802         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
26803         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
26804         Set REPLACE_STRCASECMP if necessary.
26805         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
26806         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
26807         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
26808         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
26809         HAVE_DECL_STRDUP if necessary.
26810         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
26811         since gl_FUNC_STRNDUP does that now.
26812         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
26813         Check for decl here...
26814         (gl_PREREQ_STRNLEN): ... not here.
26815         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
26816         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
26817         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
26818         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
26819         necessary.
26820         * modules/string: New file.
26821         * modules/memmem (Files): Remove special-purpose include file.
26822         (Depends-on): Add string.
26823         (Include): Include <string.h>, not the removed file.
26824         * modules/mempcpy: Likewise.
26825         * modules/memrchr: Likewise.
26826         * modules/stpcpy: Likewise.
26827         * modules/stpncpy: Likewise.
26828         * modules/strcase: Likewise.
26829         * modules/strchrnul: Likewise.
26830         * modules/strdup: Likewise.
26831         * modules/strndup: Likewise.
26832         * modules/strnlen: Likewise.
26833         * modules/strpbrk: Likewise.
26834         * modules/strsep: Likewise.
26835         * modules/strstr: Likewise.
26836         * modules/strtok_r: Likewise.
26837         * tests/test-dirname.c: Don't include "strdup.h", since
26838         <string.h> now suffices.
26839         * tests/test-memmem.c: Don't include "memmem.h", since
26840         <string.h> now suffices.
26841
26842 2007-01-25  Bruno Haible  <bruno@clisp.org>
26843
26844         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
26845         *resultp is 0.
26846
26847         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
26848         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
26849         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
26850         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
26851
26852         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
26853         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
26854         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
26855         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
26856         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
26857         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
26858
26859 2007-01-24  Bruno Haible  <bruno@clisp.org>
26860
26861         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
26862         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
26863         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
26864         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
26865         gl_FUNC_FTS_CORE.
26866         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
26867         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
26868         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26869         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
26870         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
26871         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
26872         gl_FUNC_FCHOWNAT.
26873         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
26874         gl_FUNC_STRFTIME.
26875         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
26876         Reported by Ralf Wildenhues.
26877
26878 2007-01-24  Bruno Haible  <bruno@clisp.org>
26879
26880         Drop AC_REQUIRE calls that are redundant with the module dependencies.
26881         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
26882         gl_GETADDRINFO.
26883         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
26884         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
26885         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
26886
26887 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
26888
26889         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
26890         Don't use 'exit'; just return from 'main'.
26891         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
26892
26893         * lib/fnmatch_.h: Readjust white space and comments to match
26894         glibc, to avoid spurious diffs.
26895
26896 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26897
26898         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
26899         2004-12-01 change by Jakub Jelinek, since this code won't compile
26900         if !LIBC.  Problem reported by Bob Proulx.
26901
26902 2007-01-23  Bruno Haible  <bruno@clisp.org>
26903
26904         * lib/striconveh.c: Include c-strcaseeq.h.
26905         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
26906         * modules/striconveh (Depends-on): Add c-strcaseeq.
26907
26908 2007-01-23  Bruno Haible  <bruno@clisp.org>
26909
26910         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
26911
26912         * modules/c-strcaseeq: New file.
26913         * lib/c-strcaseeq.h: New file.
26914
26915         * modules/streq: New file.
26916         * lib/streq.h: New file.
26917
26918 2007-01-23  Bruno Haible  <bruno@clisp.org>
26919
26920         * modules/striconveha-tests: New file.
26921         * tests/test-striconveha.c: New file.
26922
26923         * lib/striconveha.h: Include <stdbool.h>.
26924         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
26925         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
26926         (mem_iconveha_notranslit): Renamed from mem_iconveha.
26927         (mem_iconveha): New function.
26928         (str_iconveha_notranslit): Renamed from str_iconveha.
26929         (str_iconveha): New function.
26930         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
26931         c-strcase.
26932
26933 2007-01-23  Bruno Haible  <bruno@clisp.org>
26934
26935         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
26936         encodings without forgiving before trying any encoding with handler.
26937         (str_iconveha): Try all encodings without forgiving before trying any
26938         encoding with handler.
26939
26940 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26941
26942         Import the following changes from libc.
26943
26944         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
26945
26946         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
26947
26948         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
26949
26950         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
26951         normal_bracket label.
26952
26953         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
26954
26955         [BZ #361]
26956         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
26957         to normal_bracket after fetching the next character.
26958
26959 2007-01-22  Bruno Haible  <bruno@clisp.org>
26960
26961         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
26962         argument.
26963         * lib/striconveh.c (iconv_carefully_1): New function.
26964         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
26965         argument.
26966         (str_cd_iconveh): Update.
26967         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
26968         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
26969         * tests/test-striconveh.c (MAGIC): New macro.
26970         (new_offsets): New function.
26971         (main): Test call with and without offsets.
26972
26973 2007-01-22  Bruno Haible  <bruno@clisp.org>
26974
26975         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
26976         * modules/sys_select (Makefile.am): Likewise.
26977         * modules/sys_socket (Makefile.am): Likewise.
26978         * modules/sys_time (Makefile.am): Likewise.
26979
26980 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
26981
26982         * modules/gettimeofday (License): Change from GPL to LGPL, since
26983         gettimeofday is a library function.
26984
26985 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26986
26987         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
26988
26989 2007-01-21  Bruno Haible  <bruno@clisp.org>
26990
26991         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
26992
26993 2007-01-21  Bruno Haible  <bruno@clisp.org>
26994
26995         * modules/striconveha: New file.
26996         * lib/striconveha.h: New file.
26997         * lib/striconveha.c: New file.
26998         * MODULES.html.sh (Internationalization functions): Add striconveha.
26999         * lib/striconv.c (str_iconv): Optimize the case of an empty input
27000         string.
27001         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
27002
27003 2007-01-21  Bruno Haible  <bruno@clisp.org>
27004
27005         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
27006         * lib/striconveh.c (str_iconveh): Likewise.
27007
27008 2007-01-21  Bruno Haible  <bruno@clisp.org>
27009
27010         * lib/striconveh.h (mem_iconveh): New declaration.
27011         * lib/striconveh.c (mem_iconveh): New function.
27012         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
27013
27014 2007-01-21  Bruno Haible  <bruno@clisp.org>
27015
27016         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
27017
27018         * lib/striconveh.h (mem_cd_iconveh): Change specification.
27019         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
27020         original result buffer.
27021         (str_cd_iconveh): Update.
27022         * tests/test-striconveh.c (main): Update.
27023
27024         * lib/striconv.h (mem_cd_iconv): Change specification.
27025         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
27026         result buffer.
27027         (str_cd_iconv): Update.
27028         * tests/test-striconv.c (main): Update.
27029
27030 2007-01-21  Bruno Haible  <bruno@clisp.org>
27031
27032         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
27033
27034 2007-01-20  Jim Meyering  <jim@meyering.net>
27035
27036         * lib/userspec.c (parse_with_separator): If a user or group string
27037         starts with "+", skip the corresponding name-to-ID look-up, since
27038         such a look-up must fail: user and group names may not include "+".
27039
27040 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
27041
27042         * lib/poll.c: Include sys/time.h and time.h unconditionally,
27043         since we now assume the sys_time module.
27044         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
27045         check for sys/time.h; no longer needed.
27046         * modules/poll (Depends-on): Depend on sys_time.
27047
27048 2007-01-18  Bruno Haible  <bruno@clisp.org>
27049
27050         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
27051         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
27052
27053         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
27054         gettimeofday.
27055
27056         * tests/test-gettimeofday.c: Include <time.h>.
27057         (dummy): Remove variable.
27058
27059         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
27060         gl_HEADER_SYS_TIME_H.
27061         (gl_HEADER_SYS_TIME_H): New macro.
27062
27063         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
27064         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27065         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
27066         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
27067         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27068         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
27069         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
27070         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27071         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
27072         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
27073         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27074
27075         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
27076         last change; it caused a compilation error when cross-compiling to
27077         Cygwin.
27078
27079 2007-01-18  Jim Meyering  <jim@meyering.net>
27080
27081         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
27082         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
27083         than the race-prone "test -d sys || mkdir sys".
27084         (configure.ac): Use AC_PROG_MKDIR_P.
27085         * modules/sys_select: Likewise.
27086         * modules/sys_socket: Likewise.
27087         * modules/sys_time: Likewise.
27088
27089 2007-01-18  Eric Blake  <ebb9@byu.net>
27090
27091         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
27092         replace gettimeofday.
27093         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
27094         name, to avoid infinite recursion.
27095
27096 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
27097
27098         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
27099         module sys_time.
27100         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
27101         assume timespec.h defines struct timeval.
27102         * lib/settime.c: Likewise.
27103         * lib/utimens.c: Likewise.
27104         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
27105         since we now assume the gettimeofday module.
27106         * lib/tempname.c (__gen_tempname): Likewise.
27107         * lib/gettimeofday.h: Remove.
27108         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
27109         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
27110         Include <time.h>, for 'time()'.
27111         (localtime_buffer_addr): Also use this workaround if
27112         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
27113         to simplify the uses.  All uses changed.
27114         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
27115         that #undef is inside {}, and 'const' follows type name consistently.
27116         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
27117         (gettimeofday): Do not use the maximum possible value for
27118         tv->tv_usec, since that might break usages other than ls.c.
27119         Instead, we'll leave ls.c alone.  This undoes today's patch
27120         by Bruno.  Add a compile-time warning for 1s-clock resolution;
27121         we've never observed the problem but might as well keep the
27122         canary.
27123         * lib/nanosleep.c: Include timespec.h first, for interface check.
27124         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
27125         now assume the sys_time module.
27126         * lib/tempname.c: Likewise.
27127         * lib/timespec.h: Likewise.
27128         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
27129         needed.
27130         * lib/strftime.c: Likewise.
27131         * lib/timespec.h: Likewise.
27132         * lib/posixtm.c: Include posixtm.h first, for interface check.
27133         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
27134         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
27135         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
27136         * lib/sys_time_.h: New file.
27137         * lib/timespec.h (struct timespec): Use long int, not long.
27138         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
27139         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
27140         Remove obsolescent call to AC_HEADER_TIME.
27141         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
27142         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
27143         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
27144         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
27145         Likewise.
27146         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
27147         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
27148         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
27149         into the sys_time module.  Check for gettimeofday just once.
27150         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
27151         for gettimeofday signature to just check the signature.  Merely
27152         compile it, since linking doesn't test signature.  Improve test for
27153         whether gettimeofday.o is actually needed.
27154         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
27155         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
27156         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
27157         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27158         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
27159         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
27160         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
27161         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
27162         than worrying about sys/time.h.
27163         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
27164         Don't bother worrying about TIME_WITH_SYS_TIME.
27165         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
27166         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
27167         * m4/sys_time_h.m4: New file.
27168         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
27169         Don't include sys/time.h.  Return from main rather than exiting.
27170         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
27171         all uses changed.
27172         * modules/gethrxtime (Depends-on): Add sys_time.
27173         * modules/gettime (Depends-on): Likewise.
27174         * modules/gettimeofday (Depends-on): Likewise.
27175         * modules/nanosleep (Depends-on): Likewise.
27176         * modules/settime (Depends-on): Likewise.
27177         * modules/tempname (Depends-on): Likewise.
27178         * modules/utimens (Depends-on): Likewise.
27179         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
27180         (Include:) Change back to <sys/time.h>.
27181         (Maintainer:) Add self.
27182         * modules/sys_time: New file.
27183         * modules/tempname (Depends-on): Add gettimeofday.
27184         * tests/test-gettimeofday.c: Include <sys/time.h>
27185         rather than gettimeofday.h.
27186
27187 2007-01-17  Bruno Haible  <bruno@clisp.org>
27188
27189         * gnulib-tool (func_get_license): Revert last patch. Instead, let
27190         the license default to GPL.
27191         (func_create_testdir): Don't complain if a module is LGPL and its
27192         tests module depends on GPLed modules.
27193
27194 2007-01-17  Bruno Haible  <bruno@clisp.org>
27195
27196         * lib/gettimeofday.c (gettimeofday): Add code for the case
27197         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
27198         maximum possible value for tv->tv_usec, rather than the minimum one.
27199
27200 2005-10-08  Martin Lambers  <marlam@marlam.de>
27201 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
27202 2007-01-16  Bruno Haible  <bruno@clisp.org>
27203
27204         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
27205         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
27206         gl_FUNC_GETTIMEOFDAY.
27207         (Include): Add gettimeofday.h.
27208         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
27209         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
27210         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
27211         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
27212         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
27213         * lib/gettimeofday.h: New file.
27214         * lib/gettimeofday.c: Include <sys/timeb.h>.
27215         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
27216         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27217         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
27218         fall back on time().
27219
27220         * tests/test-gettimeofday.c: New file.
27221         * modules/gettimeofday-tests: New file.
27222
27223 2007-01-16  Eric Blake  <ebb9@byu.net>
27224
27225         * modules/fnmatch (Depends-on): Depend on wchar.
27226         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
27227         * m4/fnmatch.m4: Likewise.
27228         * modules/mbchar (Makefile.am): Assume <wchar.h>.
27229         * m4/mbchar.m4: Likewise.
27230         * modules/mbswidth (Depends-on): Depend on wchar.
27231         * lib/mbswidth.c: Assume <wchar.h>.
27232         * m4/mbswidth.m4: Likewise.
27233         * modules/quotearg (Depends-on): Depend on wchar.
27234         * lib/quotearg.c: Assume <wchar.h>.
27235         * m4/quotearg.m4: Likewise.
27236         * modules/regex (Depends-on): Depend on wchar.
27237         * lib/regex_internal.h: Assume <wchar.h>.
27238         * m4/regex.m4: Likewise.
27239         * modules/stdint (Depends-on): Depend on wchar.
27240         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
27241         * m4/stdint.m4: Likewise.
27242         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
27243         * modules/strftime (Depends-on): Depend on wchar.
27244         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
27245         * modules/strtol (Depends-on): Depend on wchar.
27246         * lib/strtol.c: Assume <wchar.h>.
27247         * modules/wcwidth (Depends-on): Depend on wchar.
27248         * lib/wcwidth.h: Assume <wchar.h>.
27249         * m4/wcwidth.m4: Likewise.
27250
27251 2007-01-16  Bruno Haible  <bruno@clisp.org>
27252
27253         * modules/csharpexec-script: New, created from...
27254         * modules/csharpexec: ... this.
27255
27256 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27257
27258         * modules/javaexec-script: New, created from...
27259         * modules/javaexec: ... this.
27260
27261 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27262
27263         * modules/poll (Dependencies): Add sys_select.
27264
27265 2007-01-15  Jim Meyering  <jim@meyering.net>
27266
27267         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
27268         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
27269         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
27270         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
27271
27272 2007-01-15  Bruno Haible  <bruno@clisp.org>
27273
27274         * modules/striconveh: New file.
27275         * lib/striconveh.h: New file.
27276         * lib/striconveh.c: New file.
27277         * MODULES.html.sh (Internationalization functions): Add striconveh.
27278
27279         * modules/striconveh-tests: New file.
27280         * tests/test-striconveh.c: New file.
27281
27282 2007-01-15  Bruno Haible  <bruno@clisp.org>
27283
27284         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
27285         not from GNU libiconv or GNU libc.
27286
27287 2007-01-15  Bruno Haible  <bruno@clisp.org>
27288
27289         * doc/gnulib-intro.texi (Copyright): Explain the different license
27290         terms for module descriptions, autoconf macros, tests, documentation.
27291
27292 2007-01-14  Bruno Haible  <bruno@clisp.org>
27293
27294         * modules/striconv-tests: New file.
27295         * tests/test-striconv.c: New file.
27296
27297 2007-01-14  Bruno Haible  <bruno@clisp.org>
27298
27299         * modules/iconv-tests: New file.
27300         * tests/test-iconv.c: New file.
27301
27302 2007-01-14  Bruno Haible  <bruno@clisp.org>
27303
27304         * gnulib-tool (func_get_license): For test modules, use the license of
27305         the main module.
27306
27307 2007-01-14  Bruno Haible  <bruno@clisp.org>
27308
27309         * modules/iconv (Include): Clarify that <iconv.h> can only be included
27310         if iconv is found to exist.
27311
27312 2007-01-14  Bruno Haible  <bruno@clisp.org>
27313
27314         * modules/c-ctype-tests: New file.
27315         * tests/test-c-ctype.c: New file.
27316
27317 2007-01-14  Bruno Haible  <bruno@clisp.org>
27318
27319         * modules/binary-io-tests: New file.
27320         * tests/test-binary-io.sh: New file.
27321         * tests/test-binary-io.c: New file.
27322
27323 2007-01-14  Bruno Haible  <bruno@clisp.org>
27324
27325         * modules/array-oset-tests: New file.
27326         * tests/test-array_oset.c: New file.
27327
27328 2007-01-14  Bruno Haible  <bruno@clisp.org>
27329
27330         * modules/array-list-tests: New file.
27331         * tests/test-array_list.c: New file.
27332
27333 2007-01-14  Bruno Haible  <bruno@clisp.org>
27334
27335         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
27336         and make.
27337         Reported by Simon Josefsson in
27338         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
27339
27340 2007-01-14  Bruno Haible  <bruno@clisp.org>
27341
27342         * modules/allocsa-tests: New file.
27343         * tests/test-allocsa.c: New file.
27344
27345 2007-01-14  Bruno Haible  <bruno@clisp.org>
27346
27347         * modules/fchdir (Depends-on): Add absolute-header.
27348         * modules/unistd (Depends-on): Likewise.
27349
27350 2006-12-30  Bruno Haible  <bruno@clisp.org>
27351
27352         * modules/fchdir: New file.
27353         * modules/unistd (Files): Add lib/unistd_.h.
27354         (Makefile.am): Generate unistd.h from unistd_.h.
27355         * lib/fchdir.c: New file.
27356         * lib/dirent_.h: New file.
27357         * lib/unistd_.h: New file.
27358         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
27359         * m4/fchdir.m4: New file.
27360         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
27361         (gl_HEADER_UNISTD): Invoke it.
27362         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
27363         function.
27364         * lib/backupfile.c (opendir, closedir): Undefine.
27365         * lib/chown.c (open, close): Undefine.
27366         * lib/clean-temp.c (open, close): Undefine.
27367         * lib/copy-file.c (open, close): Undefine.
27368         * lib/execute.c (open, close): Undefine.
27369         * lib/fsusage.c (open, close): Undefine.
27370         * lib/gc-gnulib.c (open, close): Undefine.
27371         * lib/getcwd.c (opendir, closedir): Undefine.
27372         * lib/glob.c (opendir, closedir): Undefine.
27373         * lib/javacomp.c (open, close): Undefine.
27374         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
27375         * lib/openat-proc.c (open, close): Undefine.
27376         * lib/pagealign_alloc.c (open, close): Undefine.
27377         * lib/pipe.c (open, close): Undefine.
27378         * lib/progreloc.c (open, close): Undefine.
27379         * lib/savedir.c (opendir, closedir): Undefine.
27380         * lib/utime.c (open, close): Undefine.
27381         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
27382
27383 2007-01-10  Bruno Haible  <bruno@clisp.org>
27384
27385         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
27386
27387 2007-01-12  Eric Blake  <ebb9@byu.net>
27388
27389         Provide a robust <wchar.h>.  Further simplifications are now
27390         possible in other modules, but not included here.
27391         * modules/wchar: New module.
27392         * m4/wchar.m4: New file.
27393         * lib/wchar_.h: Likewise.
27394         * modules/mbchar (Depends-on): Depend on wchar, as the first use
27395         of the new module.
27396         * MODULES.html.sh (Extended multibyte and wide character utilities):
27397         New section.
27398
27399 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
27400
27401         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
27402         to a reasonable default for memory allocation.
27403         (xreadlink): Don't allocate a huge buffer, to work around a buggy
27404         file system that reports garbage st_size values for symlinks.
27405         Problem reported by Liyang Hu.
27406
27407 2007-01-11  Simon Josefsson  <simon@josefsson.org>
27408
27409         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
27410         Emacs .#* auto-save files).
27411
27412 2007-01-11  Bruno Haible  <bruno@clisp.org>
27413
27414         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
27415         directory.
27416
27417 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
27418
27419         Use @...@ consistently in lib/wctype_.h.
27420         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
27421         on it being set to 1 or 0.
27422         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
27423         go back to AC_SUBSTing it.
27424         * modules/wctype (Makefile.am): Undo previous change.
27425
27426 2007-01-10  Eric Blake  <ebb9@byu.net>
27427
27428         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
27429         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
27430         * modules/wctype (Makefile.am): Likewise.
27431         Reported by Chris McGuire.
27432
27433 2007-01-10  Jim Meyering  <jim@meyering.net>
27434
27435         fts.c: a small readability/maintainability improvement
27436         * lib/fts.c (fts_read): Make this code slightly more readable and
27437         maintainable by hoisting the "sp->fts_cur = p" assignments to
27438         immediately follow the statements that set P.  Derived from
27439         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
27440
27441 2007-01-10  Eric Blake  <ebb9@byu.net>
27442
27443         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
27444         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
27445         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
27446         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
27447         Reported by Chris McGuire.
27448
27449 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27450
27451         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
27452         in sed script.
27453
27454 2007-01-09  Bruno Haible  <bruno@clisp.org>
27455
27456         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
27457         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
27458         variables.
27459         (func_module): Use them.
27460
27461 2007-01-09  Bruno Haible  <bruno@clisp.org>
27462
27463         * modules/unistr/base: New file.
27464         * lib/unistr.h: New file.
27465
27466         * modules/unistr/u8-to-u16: New file.
27467         * lib/unistr/u8-to-u16.c: New file.
27468
27469         * modules/unistr/u8-to-u32: New file.
27470         * lib/unistr/u8-to-u32.c: New file.
27471
27472         * modules/unistr/u16-to-u8: New file.
27473         * lib/unistr/u16-to-u8.c: New file.
27474
27475         * modules/unistr/u16-to-u32: New file.
27476         * lib/unistr/u16-to-u32.c: New file.
27477
27478         * modules/unistr/u32-to-u8: New file.
27479         * lib/unistr/u32-to-u8.c: New file.
27480
27481         * modules/unistr/u32-to-u16: New file.
27482         * lib/unistr/u32-to-u16.c: New file.
27483
27484         * modules/unistr/u8-check: New file.
27485         * modules/unistr/u16-check: New file.
27486         * modules/unistr/u32-check: New file.
27487         * lib/unistr/u8-check.c: New file.
27488         * lib/unistr/u16-check.c: New file.
27489         * lib/unistr/u32-check.c: New file.
27490
27491         * modules/unistr/u8-chr: New file.
27492         * modules/unistr/u16-chr: New file.
27493         * modules/unistr/u32-chr: New file.
27494         * lib/unistr/u8-chr.c: New file.
27495         * lib/unistr/u16-chr.c: New file.
27496         * lib/unistr/u32-chr.c: New file.
27497
27498         * modules/unistr/u8-cmp: New file.
27499         * modules/unistr/u16-cmp: New file.
27500         * modules/unistr/u32-cmp: New file.
27501         * lib/unistr/u8-cmp.c: New file.
27502         * lib/unistr/u16-cmp.c: New file.
27503         * lib/unistr/u32-cmp.c: New file.
27504
27505         * modules/unistr/u8-cpy: New file.
27506         * modules/unistr/u16-cpy: New file.
27507         * modules/unistr/u32-cpy: New file.
27508         * lib/unistr/u8-cpy.c: New file.
27509         * lib/unistr/u16-cpy.c: New file.
27510         * lib/unistr/u32-cpy.c: New file.
27511         * lib/unistr/u-cpy.h: New file.
27512
27513         * modules/unistr/u8-cpy-alloc: New file.
27514         * modules/unistr/u16-cpy-alloc: New file.
27515         * modules/unistr/u32-cpy-alloc: New file.
27516         * lib/unistr/u8-cpy-alloc.c: New file.
27517         * lib/unistr/u16-cpy-alloc.c: New file.
27518         * lib/unistr/u32-cpy-alloc.c: New file.
27519         * lib/unistr/u-cpy-alloc.h: New file.
27520
27521         * modules/unistr/u8-endswith: New file.
27522         * modules/unistr/u16-endswith: New file.
27523         * modules/unistr/u32-endswith: New file.
27524         * lib/unistr/u8-endswith.c: New file.
27525         * lib/unistr/u16-endswith.c: New file.
27526         * lib/unistr/u32-endswith.c: New file.
27527         * lib/unistr/u-endswith.h: New file.
27528
27529         * modules/unistr/u8-mblen: New file.
27530         * modules/unistr/u16-mblen: New file.
27531         * modules/unistr/u32-mblen: New file.
27532         * lib/unistr/u8-mblen.c: New file.
27533         * lib/unistr/u16-mblen.c: New file.
27534         * lib/unistr/u32-mblen.c: New file.
27535
27536         * modules/unistr/u8-mbtouc: New file.
27537         * modules/unistr/u16-mbtouc: New file.
27538         * modules/unistr/u32-mbtouc: New file.
27539         * lib/unistr/u8-mbtouc.c: New file.
27540         * lib/unistr/u16-mbtouc.c: New file.
27541         * lib/unistr/u32-mbtouc.c: New file.
27542
27543         * modules/unistr/u8-mbtouc-safe: New file.
27544         * modules/unistr/u16-mbtouc-safe: New file.
27545         * modules/unistr/u32-mbtouc-safe: New file.
27546         * lib/unistr/u8-mbtouc-safe.c: New file.
27547         * lib/unistr/u16-mbtouc-safe.c: New file.
27548         * lib/unistr/u32-mbtouc-safe.c: New file.
27549
27550         * modules/unistr/u8-move: New file.
27551         * modules/unistr/u16-move: New file.
27552         * modules/unistr/u32-move: New file.
27553         * lib/unistr/u8-move.c: New file.
27554         * lib/unistr/u16-move.c: New file.
27555         * lib/unistr/u32-move.c: New file.
27556         * lib/unistr/u-move.h: New file.
27557
27558         * modules/unistr/u8-next: New file.
27559         * modules/unistr/u16-next: New file.
27560         * modules/unistr/u32-next: New file.
27561         * lib/unistr/u8-next.c: New file.
27562         * lib/unistr/u16-next.c: New file.
27563         * lib/unistr/u32-next.c: New file.
27564
27565         * modules/unistr/u8-prev: New file.
27566         * modules/unistr/u16-prev: New file.
27567         * modules/unistr/u32-prev: New file.
27568         * lib/unistr/u8-prev.c: New file.
27569         * lib/unistr/u16-prev.c: New file.
27570         * lib/unistr/u32-prev.c: New file.
27571
27572         * modules/unistr/u8-set: New file.
27573         * modules/unistr/u16-set: New file.
27574         * modules/unistr/u32-set: New file.
27575         * lib/unistr/u8-set.c: New file.
27576         * lib/unistr/u16-set.c: New file.
27577         * lib/unistr/u32-set.c: New file.
27578         * lib/unistr/u-set.h: New file.
27579
27580         * modules/unistr/u8-startswith: New file.
27581         * modules/unistr/u16-startswith: New file.
27582         * modules/unistr/u32-startswith: New file.
27583         * lib/unistr/u8-startswith.c: New file.
27584         * lib/unistr/u16-startswith.c: New file.
27585         * lib/unistr/u32-startswith.c: New file.
27586         * lib/unistr/u-startswith.h: New file.
27587
27588         * modules/unistr/u8-stpcpy: New file.
27589         * modules/unistr/u16-stpcpy: New file.
27590         * modules/unistr/u32-stpcpy: New file.
27591         * lib/unistr/u8-stpcpy.c: New file.
27592         * lib/unistr/u16-stpcpy.c: New file.
27593         * lib/unistr/u32-stpcpy.c: New file.
27594         * lib/unistr/u-stpcpy.h: New file.
27595
27596         * modules/unistr/u8-stpncpy: New file.
27597         * modules/unistr/u16-stpncpy: New file.
27598         * modules/unistr/u32-stpncpy: New file.
27599         * lib/unistr/u8-stpncpy.c: New file.
27600         * lib/unistr/u16-stpncpy.c: New file.
27601         * lib/unistr/u32-stpncpy.c: New file.
27602         * lib/unistr/u-stpncpy.h: New file.
27603
27604         * modules/unistr/u8-strcat: New file.
27605         * modules/unistr/u16-strcat: New file.
27606         * modules/unistr/u32-strcat: New file.
27607         * lib/unistr/u8-strcat.c: New file.
27608         * lib/unistr/u16-strcat.c: New file.
27609         * lib/unistr/u32-strcat.c: New file.
27610         * lib/unistr/u-strcat.h: New file.
27611
27612         * modules/unistr/u8-strchr: New file.
27613         * modules/unistr/u16-strchr: New file.
27614         * modules/unistr/u32-strchr: New file.
27615         * lib/unistr/u8-strchr.c: New file.
27616         * lib/unistr/u16-strchr.c: New file.
27617         * lib/unistr/u32-strchr.c: New file.
27618
27619         * modules/unistr/u8-strcmp: New file.
27620         * modules/unistr/u16-strcmp: New file.
27621         * modules/unistr/u32-strcmp: New file.
27622         * lib/unistr/u8-strcmp.c: New file.
27623         * lib/unistr/u16-strcmp.c: New file.
27624         * lib/unistr/u32-strcmp.c: New file.
27625
27626         * modules/unistr/u8-strcpy: New file.
27627         * modules/unistr/u16-strcpy: New file.
27628         * modules/unistr/u32-strcpy: New file.
27629         * lib/unistr/u8-strcpy.c: New file.
27630         * lib/unistr/u16-strcpy.c: New file.
27631         * lib/unistr/u32-strcpy.c: New file.
27632         * lib/unistr/u-strcpy.h: New file.
27633
27634         * modules/unistr/u8-strcspn: New file.
27635         * modules/unistr/u16-strcspn: New file.
27636         * modules/unistr/u32-strcspn: New file.
27637         * lib/unistr/u8-strcspn.c: New file.
27638         * lib/unistr/u16-strcspn.c: New file.
27639         * lib/unistr/u32-strcspn.c: New file.
27640         * lib/unistr/u-strcspn.h: New file.
27641
27642         * modules/unistr/u8-strdup: New file.
27643         * modules/unistr/u16-strdup: New file.
27644         * modules/unistr/u32-strdup: New file.
27645         * lib/unistr/u8-strdup.c: New file.
27646         * lib/unistr/u16-strdup.c: New file.
27647         * lib/unistr/u32-strdup.c: New file.
27648         * lib/unistr/u-strdup.h: New file.
27649
27650         * modules/unistr/u8-strlen: New file.
27651         * modules/unistr/u16-strlen: New file.
27652         * modules/unistr/u32-strlen: New file.
27653         * lib/unistr/u8-strlen.c: New file.
27654         * lib/unistr/u16-strlen.c: New file.
27655         * lib/unistr/u32-strlen.c: New file.
27656         * lib/unistr/u-strlen.h: New file.
27657
27658         * modules/unistr/u8-strmblen: New file.
27659         * modules/unistr/u16-strmblen: New file.
27660         * modules/unistr/u32-strmblen: New file.
27661         * lib/unistr/u8-strmblen.c: New file.
27662         * lib/unistr/u16-strmblen.c: New file.
27663         * lib/unistr/u32-strmblen.c: New file.
27664
27665         * modules/unistr/u8-strmbtouc: New file.
27666         * modules/unistr/u16-strmbtouc: New file.
27667         * modules/unistr/u32-strmbtouc: New file.
27668         * lib/unistr/u8-strmbtouc.c: New file.
27669         * lib/unistr/u16-strmbtouc.c: New file.
27670         * lib/unistr/u32-strmbtouc.c: New file.
27671
27672         * modules/unistr/u8-strncat: New file.
27673         * modules/unistr/u16-strncat: New file.
27674         * modules/unistr/u32-strncat: New file.
27675         * lib/unistr/u8-strncat.c: New file.
27676         * lib/unistr/u16-strncat.c: New file.
27677         * lib/unistr/u32-strncat.c: New file.
27678         * lib/unistr/u-strncat.h: New file.
27679
27680         * modules/unistr/u8-strncmp: New file.
27681         * modules/unistr/u16-strncmp: New file.
27682         * modules/unistr/u32-strncmp: New file.
27683         * lib/unistr/u8-strncmp.c: New file.
27684         * lib/unistr/u16-strncmp.c: New file.
27685         * lib/unistr/u32-strncmp.c: New file.
27686
27687         * modules/unistr/u8-strncpy: New file.
27688         * modules/unistr/u16-strncpy: New file.
27689         * modules/unistr/u32-strncpy: New file.
27690         * lib/unistr/u8-strncpy.c: New file.
27691         * lib/unistr/u16-strncpy.c: New file.
27692         * lib/unistr/u32-strncpy.c: New file.
27693         * lib/unistr/u-strncpy.h: New file.
27694
27695         * modules/unistr/u8-strnlen: New file.
27696         * modules/unistr/u16-strnlen: New file.
27697         * modules/unistr/u32-strnlen: New file.
27698         * lib/unistr/u8-strnlen.c: New file.
27699         * lib/unistr/u16-strnlen.c: New file.
27700         * lib/unistr/u32-strnlen.c: New file.
27701         * lib/unistr/u-strnlen.h: New file.
27702
27703         * modules/unistr/u8-strpbrk: New file.
27704         * modules/unistr/u16-strpbrk: New file.
27705         * modules/unistr/u32-strpbrk: New file.
27706         * lib/unistr/u8-strpbrk.c: New file.
27707         * lib/unistr/u16-strpbrk.c: New file.
27708         * lib/unistr/u32-strpbrk.c: New file.
27709         * lib/unistr/u-strpbrk.h: New file.
27710
27711         * modules/unistr/u8-strrchr: New file.
27712         * modules/unistr/u16-strrchr: New file.
27713         * modules/unistr/u32-strrchr: New file.
27714         * lib/unistr/u8-strrchr.c: New file.
27715         * lib/unistr/u16-strrchr.c: New file.
27716         * lib/unistr/u32-strrchr.c: New file.
27717
27718         * modules/unistr/u8-strspn: New file.
27719         * modules/unistr/u16-strspn: New file.
27720         * modules/unistr/u32-strspn: New file.
27721         * lib/unistr/u8-strspn.c: New file.
27722         * lib/unistr/u16-strspn.c: New file.
27723         * lib/unistr/u32-strspn.c: New file.
27724         * lib/unistr/u-strspn.h: New file.
27725
27726         * modules/unistr/u8-strstr: New file.
27727         * modules/unistr/u16-strstr: New file.
27728         * modules/unistr/u32-strstr: New file.
27729         * lib/unistr/u8-strstr.c: New file.
27730         * lib/unistr/u16-strstr.c: New file.
27731         * lib/unistr/u32-strstr.c: New file.
27732         * lib/unistr/u-strstr.h: New file.
27733
27734         * modules/unistr/u8-strtok: New file.
27735         * modules/unistr/u16-strtok: New file.
27736         * modules/unistr/u32-strtok: New file.
27737         * lib/unistr/u8-strtok.c: New file.
27738         * lib/unistr/u16-strtok.c: New file.
27739         * lib/unistr/u32-strtok.c: New file.
27740         * lib/unistr/u-strtok.h: New file.
27741
27742         * modules/unistr/u8-uctomb: New file.
27743         * modules/unistr/u16-uctomb: New file.
27744         * modules/unistr/u32-uctomb: New file.
27745         * lib/unistr/u8-uctomb.c: New file.
27746         * lib/unistr/u16-uctomb.c: New file.
27747         * lib/unistr/u32-uctomb.c: New file.
27748
27749         * MODULES.html.sh (Unicode string functions): Add the new modules.
27750
27751 2007-01-08  Bruno Haible  <bruno@clisp.org>
27752
27753         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
27754         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
27755         subdirectories.
27756
27757 2007-01-08  Karl Berry  <karl@gnu.org>
27758
27759         * doc/error.texi: mention that main() fns must set program_name
27760         when progname is used.
27761
27762 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
27763
27764         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
27765         WCTYPE_H is empty, for the benefit of builds from non-distclean
27766         directories.  Problem reported by Eric Blake in
27767         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
27768
27769 2007-01-08  Bruno Haible  <bruno@clisp.org>
27770
27771         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
27772         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
27773         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
27774         PROVIDE_CANONICALIZE_FILENAME_MODE.
27775         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
27776
27777 2007-01-08  Bruno Haible  <bruno@clisp.org>
27778
27779         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
27780         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
27781         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
27782         * lib/fts.c: Likewise.
27783         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
27784
27785 2006-12-25  Bruno Haible  <bruno@clisp.org>
27786
27787         * modules/utf8-ucs4-safe: New file.
27788         * lib/utf8-ucs4-safe.h: New file.
27789         * lib/unistr/utf8-ucs4-safe.c: New file.
27790
27791         * modules/utf16-ucs4-safe: New file.
27792         * lib/utf16-ucs4-safe.h: New file.
27793         * lib/unistr/utf16-ucs4-safe.c: New file.
27794
27795         * MODULES.html.sh (Unicode string functions): Add the new modules.
27796
27797 2007-01-08  Bruno Haible  <bruno@clisp.org>
27798
27799         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
27800         (Depends-on): Add unitypes.
27801         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
27802         (u8_mbtouc_aux): Move out to separate file.
27803         (u8_mbtouc): Use ucs4_t, uint8_t types.
27804         * lib/unistr/utf8-ucs4.c: New file.
27805
27806         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
27807         (Depends-on): Add unitypes.
27808         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
27809         (u16_mbtouc_aux): Move out to separate file.
27810         (u16_mbtouc): Use ucs4_t, uint16_t types.
27811         * lib/unistr/utf16-ucs4.c: New file.
27812
27813         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
27814         (Depends-on): Add unitypes.
27815         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
27816         (u8_uctomb_aux): Move out to separate file.
27817         (u8_uctomb): Use ucs4_t, uint8_t types.
27818         * lib/unistr/ucs4-utf8.c: New file.
27819
27820         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
27821         (Depends-on): Add unitypes.
27822         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
27823         (u16_uctomb_aux): Move out to separate file.
27824         (u16_uctomb): Use ucs4_t, uint16_t types.
27825         * lib/unistr/ucs4-utf16.c: New file.
27826
27827 2006-12-25  Bruno Haible  <bruno@clisp.org>
27828
27829         * modules/unitypes: New file.
27830         * lib/unitypes.h: New file.
27831         * MODULES.html.sh (func_all_modules): New section "Unicode string
27832         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
27833         this section. Add unitypes.
27834
27835 2007-01-08  Bruno Haible  <bruno@clisp.org>
27836
27837         Avoid variable names that conflict with those from libtool.
27838         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
27839         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
27840         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
27841         library_names_spec to acl_library_names_spec, hardcode_* to
27842         acl_hardcode_*.
27843         Reported by Ralf Wildenhues.
27844
27845 2007-01-08  Bruno Haible  <bruno@clisp.org>
27846
27847         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
27848         definition.
27849         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
27850         definition.
27851         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
27852         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
27853         definition.
27854         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
27855         definition.
27856         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
27857         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
27858         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
27859         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
27860         definition.
27861         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
27862         definition.
27863         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
27864         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
27865         GC_USE_<algorithm>.
27866         * lib/gc-libgcrypt.c: Likewise.
27867         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
27868         * modules/gc-arctwo (configure.ac): Likewise.
27869         * modules/gc-des (configure.ac): Likewise.
27870         * modules/gc-hmac-md5 (configure.ac): Likewise.
27871         * modules/gc-hmac-sha1 (configure.ac): Likewise.
27872         * modules/gc-md2 (configure.ac): Likewise.
27873         * modules/gc-md4 (configure.ac): Likewise.
27874         * modules/gc-md5 (configure.ac): Likewise.
27875         * modules/gc-random (configure.ac): Likewise.
27876         * modules/gc-rijndael (configure.ac): Likewise.
27877         * modules/gc-sha1 (configure.ac): Likewise.
27878
27879 2007-01-08  Bruno Haible  <bruno@clisp.org>
27880
27881         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
27882         macro definition.
27883         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
27884         definition.
27885         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
27886         definition.
27887         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
27888         * modules/fcntl-safer (configure.ac): Likewise.
27889         * modules/fopen-safer (configure.ac): Likewise.
27890         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
27891         GNULIB_FWRITEERROR macro definition.
27892
27893 2007-01-08  Bruno Haible  <bruno@clisp.org>
27894
27895         * m4/gnulib-common.m4: New file.
27896         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
27897         (func_get_filelist): Add m4/gnulib-common.m4.
27898
27899 2007-01-08  Bruno Haible  <bruno@clisp.org>
27900
27901         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
27902         command.
27903
27904 2007-01-08  Jim Meyering  <jim@meyering.net>
27905
27906         Use a more robust test for a "can't happen" condition.
27907         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
27908         narrowed the st_size value.  Presuming the "can't happen" condition
27909         is true, that narrowing could conceivably convert an invalid st_size
27910         value into a valid one.  Instead, use a change based on Matthew
27911         Woehlke's original patch.
27912
27913         Slight readability improvement: use an assert-like macro
27914         in place of literal "abort ()" uses.
27915         * lib/fts.c (fts_assert): Define.
27916         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
27917         Use this macro instead of a bare 'abort'.
27918
27919 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
27920
27921         Don't worry about using IRIX 5.3's wctype.h broken definitions;
27922         simply work around them.
27923         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
27924         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
27925         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
27926         declaring.
27927         Don't bother to define as macros, since the standard doesn't require it.
27928         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
27929         longer worry about IRIX 5.3.
27930         (HAVE_WCTYPE_CTMP_BUG): Remove.
27931
27932 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27933
27934         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
27935         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
27936         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27937         Problems reported by Georg Schwarz for IRIX 5.3.
27938
27939         * gnulib-tool (autoconf_minversion): Take the maximum version number
27940         found, not the minimum.  Problem reported by James Youngman.
27941
27942 2007-01-03  Karl Berry  <karl@gnu.org>
27943
27944         * doc/error.texi: new file, explaining interaction with progname.
27945         * doc/gnulib.texi: include it.  Update copyright.
27946
27947 2007-01-03  Simon Josefsson  <simon@josefsson.org>
27948
27949         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
27950         AC_CANONICAL_HOST, to improve autobuild outputs.
27951
27952 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
27953             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
27954
27955         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
27956         sockets, server sockets, and other file descriptors.  Count errors
27957         to compute the return value.  Reorder the code a bit to be easier
27958         to follow.  Don't set event bits that were not requested (except
27959         POLLERR and POLLHUP).
27960
27961 2007-01-01  Bruno Haible  <bruno@clisp.org>
27962
27963         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
27964
27965 2007-01-03  Jim Meyering  <jim@meyering.net>
27966
27967         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
27968
27969 2007-01-02  Bruno Haible  <bruno@clisp.org>
27970
27971         * modules/settime (Include): Require timespec.h.
27972         * modules/nanosleep (Include): Likewise.
27973
27974 2007-01-01  Bruno Haible  <bruno@clisp.org>
27975
27976         * gnulib-tool (func_emit_copyright_notice): Bump year.
27977         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
27978
27979 2007-01-01  Bruno Haible  <bruno@clisp.org>
27980
27981         Improve support for OpenBSD.
27982         * build-aux/config.rpath (libname_spec): Export.
27983         (library_names_spec): New variable. Export.
27984         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
27985         library_names_spec from the config.rpath output. Locate shared library
27986         through the name pattern in library_names_spec.
27987
27988 2007-01-01  Eric Blake  <ebb9@byu.net>
27989
27990         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
27991
27992 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
27993
27994         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
27995         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
27996         assume the C locale, and avoid an "eval" that could cause trouble.
27997         Problem with SORT reported by Bob Proulx.
27998
27999         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
28000         Define.  Trivial patch from Henning Nielsen Lund, originally
28001         sent to bug-grep@gnu.org today.
28002
28003 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
28004
28005         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
28006         struct stat.  Problem reported by Henning Nielsen Lund.
28007         * lib/acl.c: Include acl.h first, to check interface.  Don't
28008         bother to include sys/types.h and sys/stat.h again.
28009
28010 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
28011
28012         Import the following change from libc; problem reported by
28013         Sven Verdoolaege.
28014
28015         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
28016
28017         [BZ #1373]
28018         * lib/argp.h: Remove __NTH for __argp_usage inline function.
28019
28020 2006-12-28  Jim Meyering  <jim@meyering.net>
28021
28022         * build-aux/announce-gen: Do not assume that the package
28023         builds any of tar.gz, tar.bz2, and .xdelta files.
28024         Suggestion from Simon Josefsson.
28025
28026 2006-12-28  Simon Josefsson  <simon@josefsson.org>
28027
28028         * modules/announce-gen: New file.
28029
28030 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
28031
28032         * lib/mbchar.h: Just include <wctype.h>; the wctype module
28033         handles its gotchas now.
28034         * lib/mbswidth.c: Likewise.
28035         * lib/wcwidth.h: Likewise.
28036         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
28037         and iswcntrl; the wctype module does this stuff now.
28038         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
28039         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
28040         * modules/mbchar (Depends-on): Add wctype.
28041         * modules/mbswidth (Depends-on): Likewise.
28042         * modules/wcwidth (Depends-on): Likewise.
28043
28044 2006-12-27  Eric Blake  <ebb9@byu.net>
28045
28046         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
28047         module uses more than what <wctype.h> is required to provide.
28048
28049 2006-12-26  Eric Blake  <ebb9@byu.net>
28050
28051         * gnulib-tool (sed_extract_prog): Avoid space-tab.
28052
28053 2006-12-26  Eric Blake  <ebb9@byu.net>
28054
28055         * modules/absolute-header: New module.
28056         * modules/fcntl (Depends-on): Depend on it.
28057         * modules/inttypes (Depends-on): Likewise.
28058         * modules/stdint (Depends-on): Likewise.
28059         * modules/sys_stat (Depends-on): Likewise.
28060         * modules/wctype (Depends-on): Likewise.
28061         * MODULES.html.sh (Support for building libraries and
28062         executables): Document it.
28063
28064 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
28065
28066         * gnulib-tool (SED): Remove, undoing previous change.
28067         The problem was that it broke coreutils on Solaris, because
28068         "sed --posix" leaked into a makefile.
28069         (sed): New alias, if 'alias' and GNU sed.
28070
28071 2006-12-24  Jim Meyering  <jim@meyering.net>
28072
28073         Work around an fchownat bug in glibc-2.4:
28074         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
28075         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
28076         in spite of the -P option.
28077         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
28078         New macros.
28079         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
28080         * modules/openat (Files): Add lib/fchownat.c.
28081         * lib/openat.c (fchownat): Don't define here.  Move to...
28082         * lib/fchownat.c: ...this new file.
28083
28084 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28085
28086         Fix bug reported by Bruno Haible in
28087         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
28088         where quotearg.c didn't compile on Mac OS X 10.2 because it
28089         lacks <wchar.h> and wint_t.
28090         * lib/wctype_.h (__wctype_wint_t): New type.
28091         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
28092         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
28093         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
28094         Arg is now of type __wctype_wint_t, not wint_t.
28095         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
28096         substitute HAVE_WINT_T.
28097         * modules/wctype (Files): Add m4/wint_t.m4.
28098         (wctype.h): Substitute HAVE_WINT_T.
28099
28100 2006-12-23  Bruno Haible  <bruno@clisp.org>
28101
28102         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
28103
28104 2006-12-23  Bruno Haible  <bruno@clisp.org>
28105
28106         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
28107         S_ISLNK.
28108         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
28109         mingw.
28110
28111 2006-12-22  Bruno Haible  <bruno@clisp.org>
28112
28113         * lib/copy-file.c: Include acl.h.
28114         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
28115         Close the file descriptors only after being done with copy_acl.
28116         * modules/copy-file (Depends-on): Add acl.
28117
28118 2006-12-22  Bruno Haible  <bruno@clisp.org>
28119
28120         * gnulib-tool (SED): New variable.
28121         Use $SED instead of sed everywhere.
28122
28123 2006-12-22  Bruno Haible  <bruno@clisp.org>
28124
28125         * modules/no-c++: New file.
28126         * m4/no-c++.m4: New file.
28127         * MODULES.html.sh (Support for building libraries and executables):
28128         Add no-c++.
28129
28130 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
28131
28132         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
28133         Include <limits.h>, and use its INT_MAX to rewrite the
28134         j loop so that it does not overflow 'int'.  Problem reported by
28135         Ralf Wildenhues in
28136         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
28137         Play it safe by shifting left by 1 rather than multiplying by 2,
28138         as GCC is less likely to optimize this away when the value
28139         is signed (when it assumes overflow leads to undefined behavior).
28140         Also, don't assume time_t uses two's complement.
28141
28142 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
28143
28144         * MODULES.html.sh: New module wctype.
28145         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
28146         * lib/fnmatch.c: Don't bother to include <wchar.h> before
28147         <wctype.h>, since the new wctype module should fix this.
28148         * lib/quotearg.c: Include <wctype.h> unconditionally, since
28149         the wctype module should arrange for it.
28150         * lib/regex_internal.h: Likewise.
28151         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
28152         since the wctype module should handle this now.
28153         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
28154         * modules/fnmatch (Depends-on): Add wctype.
28155         * modules/quotearg (Depends-on): Likewise.
28156         * modules/regex (Depends-on): Likewise.
28157
28158 2006-12-19  Bruno Haible  <bruno@clisp.org>
28159
28160         * lib/strdup.h [C++]: Wrap definitions in extern "C".
28161         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
28162
28163 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28164
28165         * modules/savewd (Depends-on): Fix dependency on fcntl.
28166
28167 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
28168
28169         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
28170         conforms to C99, rather than relying on the user's environment
28171         setting of STDINT_H.
28172
28173 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
28174         and Eric Blake  <ebb9@byu.net>
28175
28176         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
28177         This is more consistent with the other defines here.
28178         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
28179         Port to z/OS.  Problem reported by Paul Gilmartin.
28180         Change local vars to use gl_ prefix rather than ac_.
28181         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
28182         with other defines.
28183         * modules/double-slash-root: New module.
28184         * modules/dirname (Files): Remove m4/double-slash-root.m4.
28185         (Depends-on): Add double-slash-root.
28186         * MODULES.html.sh (File system functions): Mention new module.
28187
28188 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
28189
28190         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
28191         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
28192         This is for the benefit of gzip, which doesn't do i18n.
28193
28194 2006-12-12  Jim Meyering  <jim@meyering.net>
28195
28196         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
28197         Reported by Andreas Schwab <schwab@suse.de>.
28198
28199 2006-12-12  Bruno Haible  <bruno@clisp.org>
28200
28201         Merge these changes.
28202         2006-09-05  Bruno Haible  <bruno@clisp.org>
28203         * lib/iconvme.c (iconv_string): No need to save and restore errno when
28204         iconv_alloc succeeded.
28205         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
28206         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
28207         test for " && dest " at the end - dest is always != NULL there. Call
28208         iconv with 4xNULL arguments initially, to reset the state. Call iconv
28209         with 2xNULL arguments, also to flush the state storage. Handle the
28210         IRIX iconv behaviour. Realloc the final result, to throw away unused
28211         memory.
28212
28213 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
28214
28215         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
28216         and fchmodat unconditionally, since glibc 2.4 has them.
28217         Problem reported by Arkadiusz Miskiewicz.
28218
28219 2006-12-10  Bruno Haible  <bruno@clisp.org>
28220
28221         * gnulib-tool (func_import): Show the include files only for those
28222         modules that are copied and specified.
28223         Reported by Karl Berry.
28224
28225 2006-12-08  Jim Meyering  <jim@meyering.net>
28226
28227         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
28228         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
28229
28230         * build-aux/announce-gen: Add two new options, both optional:
28231         --bootstrap-tools=TOOL_LIST
28232               a comma-separated list of tools, e.g.,
28233               autoconf,automake,bison,gnulib
28234         --gnulib-snapshot-date=DATE
28235               if gnulib is in the bootstrap tool list,
28236               then report this as the snapshot date.
28237               If not specified, use the current date/time.
28238               If you specify a date here, be sure it's UTC.
28239
28240 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28241
28242         * tests/test-argp-2.sh: Fix test to match actual output.
28243         (func_compare): Fix sed script to be portable.
28244
28245 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
28246
28247         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
28248         workaround for this case.  It is not autoconfigured now; offhand
28249         it's hard to see how to autoconfigure it.
28250
28251 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28252
28253         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
28254         a directory that is about to be chowned.  Such a directory's
28255         initial file permissions should permit the owner only and this
28256         should not be changed until after the chown, since the group and
28257         other bits would be incorrect if they granted permission before
28258         the chown.
28259
28260         Fix porting problem for iswctype reported by Georg Schwarz in:
28261         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
28262         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
28263         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
28264         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
28265         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
28266
28267 2006-12-03  Jim Meyering  <jim@meyering.net>
28268
28269         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
28270         p->fts_statp may not yet be defined.
28271         (fts_read): Instead, set it in the caller, once p->fts_statp is
28272         sure to be defined, and corresponds to a top-level directory.
28273         This bug made du -x fail.  Here's the coreutils test case:
28274         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
28275         Reported by Mike Frysinger.
28276
28277 2006-12-01  Jim Meyering  <jim@meyering.net>
28278
28279         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
28280         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
28281         Reported by Simon Josefsson.
28282
28283 2006-11-30  Jim Meyering  <jim@meyering.net>
28284
28285         * m4/warning.m4: Use the all-permissive copyright notice
28286         recommended by RMS (rather than LGPL).
28287         * m4/vararrays.m4: Likewise.
28288         * m4/flexmember.m4: Likewise.
28289
28290 2006-11-29  Bruno Haible  <bruno@clisp.org>
28291
28292         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
28293         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
28294         using +=.
28295         Reported by Simon Josefsson <simon@josefsson.org>.
28296
28297 2006-11-28  James Youngman <jay@gnu.org>
28298
28299         * README: Advise users that they might find the bug-gnulib@gnu.org
28300         and autotools-announce@gnu.org mailing lists useful.
28301
28302 2006-11-28  Bruno Haible  <bruno@clisp.org>
28303
28304         * m4/ptrdiff_max.m4: Remove file.
28305
28306 2006-11-21  Bruno Haible  <bruno@clisp.org>
28307
28308         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
28309         _AC_COMPUTE_INT.
28310         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28311         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
28312         _AC_COMPUTE_INT.
28313         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28314         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
28315         _AC_COMPUTE_INT.
28316         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28317
28318 2006-11-28  Jim Meyering  <jim@meyering.net>
28319
28320         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
28321         warning from "gcc -Wshadow" about shadowing the builtin.
28322
28323 2006-11-27  Bruno Haible  <bruno@clisp.org>
28324
28325         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
28326         _AC_COMPUTE_INT.
28327         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28328
28329 2006-11-27  Bruno Haible  <bruno@clisp.org>
28330             Paul Eggert  <eggert@cs.ucla.edu>
28331
28332         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
28333
28334 2006-11-26  Bruno Haible  <bruno@clisp.org>
28335
28336         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
28337         noinst_LTLIBRARIES.
28338
28339 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
28340             Bruno Haible  <bruno@clisp.org>
28341
28342         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
28343         if compiling with "gcc -ansi".
28344
28345 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
28346
28347         Fix some incompatibilities with gcc -ansi -pedantic.
28348         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
28349         if compiling pedantically with GCC, unless it's C99 or later.
28350         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
28351         it mishandles gcc -ansi -pedantic as well.
28352         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
28353         if gcc -pedantic.
28354         * lib/regexec.c (check_node_accept_bytes): Don't use auto
28355         initializers for struct if -pedantic, unless it's C99 or later.
28356
28357 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
28358
28359         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
28360         Don't close an fd more than once. Identical atimes indicate
28361         success, not failure.
28362
28363 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
28364
28365         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
28366
28367 2006-11-23  Jim Meyering  <jim@meyering.net>
28368
28369         * build-aux/announce-gen: New file.  From coreutils.
28370
28371 2006-11-22  Jim Meyering  <jim@meyering.net>
28372
28373         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
28374         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
28375         (fts_read): Use a temporary to narrow the overused st_size member
28376         before using it in a switch statement.  Reported by Matthew Woehlke.
28377
28378         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
28379         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
28380
28381 2006-11-20  Bruno Haible  <bruno@clisp.org>
28382
28383         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
28384         changequote instead of pairs of brackets.
28385         Reported by Andreas Schwab <schwab@suse.de>.
28386
28387 2006-11-21  Jim Meyering  <jim@meyering.net>
28388
28389         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
28390         so as to remain compatible with older compilers.
28391         Patch from Michael Deutschmann.
28392
28393 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28394
28395         * MODULES.html.sh (File system functions): Add openat.
28396
28397         * lib/openat.h (rpl_fstatat): New macro, if
28398         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
28399         (fstatat): Define to rpl_fstatat under the same conditions,
28400         unless COMPILING_FSTATAT.
28401         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
28402         seems to have the bug.
28403         * lib/fstatat.c: New file.
28404         * modules/openat (Files): Add it.
28405
28406 2006-11-20  Bruno Haible  <bruno@clisp.org>
28407
28408         * Makefile: New file.
28409
28410 2006-11-20  Jim Meyering  <jim@meyering.net>
28411
28412         The beginnings of syntax-related checks for gnulib.
28413         * lib/Makefile: New file.
28414         * lib/t-idcache: New script.  Ensure that the two halves of
28415         idcache.c stay in sync.
28416
28417         * lib/idcache.c: Adjust comments in user- and group- portions to
28418         be more accurate, and to be consistent with one another.
28419
28420 2006-11-20  Jim Meyering  <jim@meyering.net>
28421
28422         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
28423         continue using the flexible array member (thus, this module performs
28424         half as many malloc calls), with the addition that...
28425         (getgroup, getuser): Consistently record a non-match via an empty
28426         "name" string, and map an empty string match to a NULL return value.
28427         * modules/idcache (Depends-on): Re-add flexmember.
28428
28429         * lib/idcache.c (getuser): Remove all uses of the register keyword.
28430         (getuidbyname, getgroup, getgidbyname): Likewise.
28431
28432         Use cleaner syntax: NULL rather than 0.
28433         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
28434
28435 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28436
28437         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
28438         It mishandled the case where the group was missing.
28439         Problem reported by Greg Schafer.
28440         * modules/idcache: Likewise.
28441
28442 2006-11-18  Jim Meyering  <jim@meyering.net>
28443
28444         * check-module (%exempt_header): Add exception for some
28445         conditionally-included headers.
28446
28447         * modules/i-ring (Depends-on): Add verify.
28448         (License): Change to LGPL.
28449
28450 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28451
28452         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
28453         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
28454         and inttostr.h.  Use snprintf rather than uinttostr, so that
28455         LGPLed code doesn't depend on GPLed.
28456
28457 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28458
28459         * modules/inline (License): Change from GPL to LGPL.
28460
28461 2006-11-17  Jim Meyering  <jim@meyering.net>
28462
28463         * modules/d-type (License): Switch to LGPL.
28464
28465 2006-11-15  Bruno Haible  <bruno@clisp.org>
28466
28467         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
28468
28469 2006-11-15  Eric Blake  <ebb9@byu.net>
28470
28471         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
28472         the module dependency.
28473
28474 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28475             Bruno Haible  <bruno@clisp.org>
28476
28477         * gnulib-tool (func_create_testdir): Add license consistency check.
28478
28479 2006-11-15  Eric Blake  <ebb9@byu.net>
28480
28481         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
28482         random "(cached)" in configure output.
28483
28484 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28485
28486         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
28487         test for conforming inttypes.h is both announced and cached.
28488
28489         * MODULES.html.sh (seen_modules, seen_files): New variables.
28490         (func_module): Rewrite to use a few less gnulib-tool and sed
28491         invocations.  Avoid a couple of quadratic algorithms for ...
28492         (missed_modules, missed_files): ... these, with ...
28493         (func_append, func_tmpdir): ... these new functions, from
28494         gnulib-tool.  Analogously, install traps for cleanup.
28495
28496         * tests/test-gc.c (main): Remove unused variables.
28497         * tests/test-read-file.c: Include stdlib.h, for 'free'.
28498
28499 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
28500
28501         * modules/inttostr (License): Change to LGPL.
28502
28503 2006-11-14  Eric Blake  <ebb9@byu.net>
28504
28505         * modules/tempname (License): Change to LGPL.
28506
28507 2006-11-14  Eric Blake  <ebb9@byu.net>
28508
28509         * doc/functions.texi (Function Portability): *printf functions on
28510         Cygwin now understand all POSIX size specifiers.
28511
28512 2006-11-14  Bruno Haible  <bruno@clisp.org>
28513
28514         * modules/c-ctype (License): Change to LGPL.
28515
28516 2006-11-12  Bruno Haible  <bruno@clisp.org>
28517
28518         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
28519         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
28520         for GNOME libraries, for which the include files are installed in
28521         subdirectories of $prefix/include.
28522
28523 2006-11-12  Bruno Haible  <bruno@clisp.org>
28524
28525         * m4/lib-link.m4: Require at least autoconf-2.54.
28526         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
28527         name to underscores for the --with option.
28528
28529 2006-11-13  Bruno Haible  <bruno@clisp.org>
28530
28531         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
28532         the tests directory.
28533         Reported by Ralf Wildenhues.
28534
28535 2006-11-13  Bruno Haible  <bruno@clisp.org>
28536
28537         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
28538         (func_emit_initmacro_end): Undo the override here.
28539         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
28540         Works around the famous automake error in coreutils.
28541
28542 2006-11-13  Eric Blake  <ebb9@byu.net>
28543
28544         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
28545         element, not its node.
28546
28547 2006-11-12  Bruno Haible  <bruno@clisp.org>
28548
28549         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
28550         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
28551
28552 2006-11-12  Bruno Haible  <bruno@clisp.org>
28553
28554         * gnulib-tool: New option --local-symlink.
28555         (func_usage): Document it.
28556         (lsymbolic): New variable.
28557         (func_import, func_create_testdir): If --symlink was not specified,
28558         test whether --local-symlink was specified and the file comes from
28559         the local_gnulib_dir.
28560
28561 2006-11-12  Bruno Haible  <bruno@clisp.org>
28562
28563         * gnulib-tool (func_ln): New function.
28564         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
28565
28566 2006-11-12  Bruno Haible  <bruno@clisp.org>
28567
28568         Finish support for source files in subdirectories.
28569         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
28570         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
28571         AUTOMAKE_OPTIONS.
28572         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
28573
28574 2006-11-12  Bruno Haible  <bruno@clisp.org>
28575
28576         * gnulib-tool (func_get_automake_snippet): Synthesize also an
28577         EXTRA_lib_SOURCES augmentation.
28578         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
28579
28580 2006-11-12  Jim Meyering  <jim@meyering.net>
28581
28582         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
28583         file descriptors.  This also averts a failure on systems with
28584         native openat support when a traversed directory lacks "x" access.
28585         * lib/fts_.h: Include "i-ring.h"
28586         (struct FTS) [fts_fd_ring]: New member.
28587         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
28588         (FCHDIR): Add parentheses.
28589         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
28590         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
28591         When descending, rather than simply closing the previous
28592         fts_cwd_fd value, push that file descriptor onto the ring.
28593         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
28594         (fts_open): Initialize the new fd_ring member.
28595         (fts_close): Clear the ring.
28596         (fts_safe_changedir): When possible, use our new fd_ring to skip
28597         the diropen and fstat and dev/ino comparison that would normally
28598         accompany a virtual `chdir ("..")'.
28599
28600         * modules/fts (Depends-on): Add i-ring.
28601         * modules/i-ring: New module.
28602         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
28603         * m4/i-ring.m4: New file.
28604
28605 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28606
28607         * gnulib-tool (func_create_testdir): Fix replacement of
28608         `build-aux' in configure.ac.  Run autotools in gltests
28609         subdirectory.
28610         (func_create_testdir, func_create_megatestdir, test): There is
28611         no need for '--force' in most autotool invocations in a new
28612         tree.  Actually fail the whole test if any of the tools, or the
28613         configure or make stages fail.
28614
28615         Sync from Automake.
28616         * build-aux/gnupload: Revert last change.  Add pointer to upload
28617         instructions of the GNU Maintenance Instructions.
28618         Suggestion by Karl Berry.
28619
28620 2006-11-10  Jim Meyering  <jim@meyering.net>
28621
28622         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
28623
28624 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28625
28626         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
28627         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
28628         (bind_textdomain_codeset) [! ENABLE_NLS]:
28629         Evaluate all the arguments.  That way, callers get compatible behavior
28630         if the arguments have side effects.  Also, it avoids some GCC
28631         diagnostics in some cases; Joel E. Denny reported problems when Bison
28632         was configured with --enable-gcc-warnigs.
28633
28634 2006-11-10  Jim Meyering  <jim@meyering.net>
28635
28636         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
28637         relevant options in CFLAGS (like -O, -fno-inline) are taken into
28638         account.
28639
28640 2006-11-10  Jim Meyering  <jim@meyering.net>
28641
28642         * modules/inline: New file/module.
28643         * modules/xalloc (Files): Remove m4/inline.m4.
28644         (Depends-on): Add inline, instead.
28645         * modules/oset: Likewise.
28646         * modules/list: Likewise.
28647
28648 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28649
28650         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
28651         Problem reported by Matthew Woehlke.
28652
28653 2006-11-09  Bruno Haible  <bruno@clisp.org>
28654
28655         * lib/tempname.c (gen_tempname): Remove variant that invokes
28656         __gen_tempname.
28657         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
28658         __gen_tempname.
28659
28660 2006-11-08  Bruno Haible  <bruno@clisp.org>
28661
28662         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
28663         to 'yes' instead of 'cross-compiling'.
28664
28665 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
28666
28667         * lib/quotearg.h (quotearg_free): New decl.
28668         * lib/quotearg.c (quotearg_free): New function.
28669         (slot0, nslots, slotvec0, slotvec):
28670         Now file-scope so that quotearg_free can get at them.
28671
28672 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28673
28674         Sync from Automake.
28675         * build-aux/gnupload: Add missing 'gnu' to example URL.
28676         Report by Karl Berry.
28677
28678 2006-11-08  Bruno Haible  <bruno@clisp.org>
28679
28680         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
28681         Suggested by Paul Eggert.
28682
28683 2006-11-08  Jim Meyering  <jim@meyering.net>
28684
28685         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
28686         It's already included if !_LIBC.
28687         (fts_safe_changedir): Add a comment.
28688
28689 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
28690
28691         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
28692         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
28693         Matthew Woehlke.
28694
28695         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
28696         definitions up, to avoid colliding with change below.
28697         (static_inline) [HAVE_INLINE]: New macro.
28698         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
28699         Provide extern decls when !HAVE_INLINE.  Do not define unless
28700         static_inline is defined, either by us or by xmalloc.c.  Use
28701         static_inline rather than static inline.
28702         (XCALLOC): Optimize sizeof(T) = 1 case.
28703         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
28704
28705 2006-11-07  Bruno Haible  <bruno@clisp.org>
28706
28707         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
28708         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
28709         AC_C_INLINE.
28710         * modules/xalloc (Files): Add m4/inline.m4.
28711
28712 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28713
28714         * README: Fix typo.
28715         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
28716         (Miscellanous Notes): ...from this.
28717
28718 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
28719
28720         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
28721         Mention that offsetof should be used instead of sizeof.
28722         From Bruno Haible.
28723
28724 2006-11-07  Bruno Haible  <bruno@clisp.org>
28725
28726         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
28727
28728 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
28729
28730         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
28731         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
28732         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
28733         (gl_tree_add_before, gl_tree_add_after):
28734         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
28735         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
28736         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
28737         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
28738         (gl_linked_add_after, gl_linked_add_at): Likewise.
28739         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
28740         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
28741         (gl_tree_add_before, gl_tree_add_after): Likewise.
28742         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
28743         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
28744         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
28745
28746 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28747
28748         * lib/gl_oset.h: Use C comment style, not C++ comment style.
28749
28750 2006-11-06  Bruno Haible  <bruno@clisp.org>
28751
28752         * m4/inline.m4: New file.
28753         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
28754         * modules/list (Files): Add m4/inline.m4.
28755         * modules/oset (Files): Likewise.
28756
28757 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
28758
28759         * lib/idcache.c: Include <stddef.h>, for offsetof.
28760         (struct userid.name): Change from char * to a flexible array member.
28761         All uses changed.
28762         * modules/idcache (Depends-on): Add flexmember.
28763
28764         * MODULES.html.sh (Core language properties): New module flexmember.
28765         * modules/flexmember, m4/flexmember.m4: New files.
28766
28767         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
28768         inline functions that are identical with the old xnmalloc_inline,
28769         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
28770         that we can avoid some unnecessary integer multiplications and
28771         divisions in the common case where the element size is known at
28772         compile time.
28773         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
28774         needed.
28775         (xnboundedmalloc): Remove.
28776         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
28777         arguments, for consistency with rest of this header.
28778         (xcharalloc): Rewrite using XNMALLOC.
28779         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
28780         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
28781         versions have been moved to lib/xalloc.h and renamed to be the
28782         non-*_inline versions.
28783         (xmalloc, xrealloc): Implement without reference to the xnmalloc
28784         and xnrealloc functions, since those functions are now inline and
28785         now call us.
28786         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
28787         renaming described above.
28788         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
28789         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
28790         captures the dependency in AC_C_INLINE.
28791
28792         New module canonicalize-lgpl, proposed by Charles Wilson in
28793         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
28794         with a few small changes afterwards.
28795         * MODULES.html.sh (File system functions): New module
28796         canonicalize-lgpl.
28797         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
28798         and canonicalize_file_name.
28799         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
28800         * modules/canonicalize-lgpl: New files.
28801
28802 2006-11-05  Bruno Haible  <bruno@clisp.org>
28803
28804         * gnulib-tool (func_import, func_create_testdir): Create directories
28805         also for files in subdirectories of lib/.
28806
28807 2006-11-05  Bruno Haible  <bruno@clisp.org>
28808
28809         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
28810         ANSI C compliant.
28811
28812 2006-11-03  Bruno Haible  <bruno@clisp.org>
28813
28814         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
28815         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
28816         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
28817         (xnboundedmalloc): New inline function.
28818         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
28819         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
28820         xmalloc.
28821         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
28822         xmalloc.
28823         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
28824         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
28825         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
28826         xmalloc.
28827         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
28828         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
28829         xmalloc.
28830         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
28831         gl_tree_add_after): Use XMALLOC instead of xmalloc.
28832         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
28833         xmalloc.
28834         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
28835         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
28836         gl_tree_add_after): Use XMALLOC instead of xmalloc.
28837         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
28838         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
28839         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
28840         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
28841
28842 2006-11-03  Bruno Haible  <bruno@clisp.org>
28843
28844         * lib/c-ctype.h [C++]: Define functions without name mangling.
28845         * lib/fwriteerror.h [C++]: Likewise.
28846         * lib/gcd.h [C++]: Likewise.
28847         * lib/linebreak.h [C++]: Likewise.
28848
28849 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
28850
28851         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
28852         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
28853         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
28854         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
28855         Check for functions and headers just once.
28856         Check for declaration of canonicalize_file_name.
28857         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
28858
28859 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
28860
28861         * gnulib-tool (func_import): Fix typo in actioncmd.
28862
28863 2006-11-02  Bruno Haible  <bruno@clisp.org>
28864
28865         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
28866         newline sequence in the Makefile.am snippet as a space, like "make"
28867         does.
28868         Reported by Roger Persson <perrog@gmail.com>.
28869
28870 2006-11-01  Bruno Haible  <bruno@clisp.org>
28871
28872         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
28873         already declared in <string.h>.
28874         * lib/strcase.h (strncasecmp): Don't declare it if yes.
28875
28876 2006-11-01  Bruno Haible  <bruno@clisp.org>
28877
28878         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
28879         * lib/strcase.h: Include <string.h>.
28880         (strcasecmp): Define to rpl_strcasecmp here.
28881
28882 2006-11-01  Bruno Haible  <bruno@clisp.org>
28883
28884         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
28885
28886 2006-11-01  Eric Blake  <ebb9@byu.net>
28887
28888         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
28889
28890         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
28891
28892 2006-10-29  Bruno Haible  <bruno@clisp.org>
28893
28894         Make it compile in C++ mode.
28895         * lib/full-write.c (full_rw): Add a cast.
28896
28897 2006-11-01  Bruno Haible  <bruno@clisp.org>
28898
28899         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
28900         be POSIX compliant.
28901         Reported by Roger Persson <perrog@gmail.com>.
28902
28903 2006-11-01  Eric Blake  <ebb9@byu.net>
28904
28905         * lib/getopt_.h: Fix comments.
28906
28907 2006-10-31  Eric Blake  <ebb9@byu.net>
28908
28909         * modules/tmpdir (Depends-on): Add sys_stat.
28910         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
28911         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
28912         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
28913         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
28914         tempname.
28915
28916 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
28917
28918         Avoid some C++ diagnostics reported by Bruno Haible.
28919         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
28920         xmalloc.
28921         (quotearg_alloc): Use xcharalloc rather than xmalloc.
28922         (struct slotvec): Move to top level.
28923         (quotearg_n_options): Rewrite to avoid xmalloc.
28924         * lib/xalloc.h (xcharalloc): New function.
28925         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
28926         [defined __cplusplus]: Add function template that provides result
28927         type propagation.  This part of the change is from Bruno Haible.
28928
28929 2006-10-29  Bruno Haible  <bruno@clisp.org>
28930
28931         Make it compile in C++ mode.
28932         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
28933         * lib/strnlen1.c (strnlen1): Cast memchr result.
28934         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
28935         * lib/clean-temp.c (string_equals, string_hash): Add casts.
28936         (create_temp_dir): Rename local variable 'template'.
28937         (compile_csharp_using_sscli): Add cast.
28938         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
28939         * lib/findprog.c (find_in_path): Likewise.
28940         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
28941         * lib/wait-process.c (register_slave_subprocess): Likewise.
28942
28943 2006-10-22  Bruno Haible  <bruno@clisp.org>
28944
28945         * modules/tsearch: New file.
28946         * lib/tsearch.h: New file.
28947         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
28948         * m4/tsearch.m4: New file.
28949         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
28950
28951 2006-10-29  Eric Blake  <ebb9@byu.net>
28952
28953         * lib/arcfour.c: Assume config.h.
28954         * lib/arctwo.c: Likewise.
28955         * lib/base64.c: Likewise.
28956         * lib/check-version.c: Likewise.
28957         * lib/crc.c: Likewise.
28958         * lib/des.c: Likewise.
28959         * lib/gc-gnulib.c: Likewise.
28960         * lib/gc-libgcrypt.c: Likewise.
28961         * lib/gc-pbkdf2-sha1.c: Likewise.
28962         * lib/getaddrinfo.c: Likewise.
28963         * lib/getdelim.c: Likewise.
28964         * lib/getline.c: Likewise.
28965         * lib/hmac-md5.c: Likewise.
28966         * lib/hmac-sha1.c: Likewise.
28967         * lib/iconvme.c: Likewise.
28968         * lib/md2.c: Likewise.
28969         * lib/md4.c: Likewise.
28970         * lib/memxor.c: Likewise.
28971         * lib/read-file.c: Likewise.
28972         * lib/readline.c: Likewise.
28973         * lib/rijndael-alg-fst.c: Likewise.
28974         * lib/rijndael-api-fst.c: Likewise.
28975         * lib/xgetdomainname.c: Likewise.
28976
28977 2006-10-28  Eric Blake  <ebb9@byu.net>
28978
28979         * lib/xstrndup.c: Assume config.h.
28980
28981 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
28982
28983         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
28984         stat-macros.h is now for our own macros, whereas stat_h is for
28985         macros in the <sys/stat.h> name space.
28986         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
28987         (STAT_MACROS_H): Remove.
28988         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
28989         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
28990         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
28991         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
28992         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
28993         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
28994         Move these macros to ...
28995         * lib/stat_.h: here.  Don't include stat-macros.h.
28996         * lib/canonicalize.c: Don't include stat-macros.h.
28997         * lib/chown.c: Likewise.
28998         * lib/euidaccess.c: Likewise.
28999         * lib/file-type.c: Likewise.
29000         * lib/filemode.c: Likewise.
29001         * lib/glob.c: Likewise.
29002         * lib/isapipe.c: Likewise.
29003         * lib/lchown.c: Likewise.
29004         * lib/lstat.c: Likewise.
29005         * lib/mkdir-p.c: Likewise.
29006         * lib/rmdir.c: Likewise.
29007         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
29008         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
29009         unless mkdir isn't declared, to speed up 'configure'.
29010         Always create sys/stat.h, since it's unlikely any real sys/stat.h
29011         would define all the S_* symbols.
29012         * modules/canonicalize (Depends-on):
29013         Depend on sys_stat, not stat-macros.
29014         * modules/chown: Likewise.
29015         * modules/euidaccess: Likewise.
29016         * modules/filemode: Likewise.
29017         * modules/file-type: Likewise.
29018         * modules/glob: Likewise.
29019         * modules/isapipe: Likewise.
29020         * modules/lchown: Likewise.
29021         * modules/lstat: Likewise.
29022         * modules/mkancesdirs: Likewise.
29023         * modules/rmdir: Likewise.
29024         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
29025         * modules/modechange: Likewise.
29026         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
29027         (configure.ac): Remove gl_STAT_MACROS.
29028         * modules/sys_stat (Depends-on): Remove stat-macros.
29029
29030 2006-10-27  Bruno Haible  <bruno@clisp.org>
29031
29032         * m4/signed.m4: Remove file.
29033         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
29034         invocation.
29035         * modules/vasnprintf (Files): Remove m4/signed.m4.
29036
29037 2006-10-27  Bruno Haible  <bruno@clisp.org>
29038
29039         Update to GNU gettext 0.16.
29040         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
29041         m4/inttypes-h.m4, m4/signed.m4.
29042         * m4/gettext.m4: Update to GNU gettext 0.16.
29043         * m4/intl.m4: New file, from GNU gettext.
29044         * m4/intldir.m4: New file, from GNU gettext.
29045         * config/srclist.txt: Update
29046
29047 2006-10-27  Eric Blake  <ebb9@byu.net>
29048
29049         * MODULES.html.sh: Document tempname.
29050         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
29051         dependencies.
29052         (Files): Move lib/tempname.c...
29053         * modules/tempname: ...to this new module.
29054         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
29055         (gl_PREREQ_TEMPNAME): Move...
29056         * m4/tempname.m4: ...to this new file.
29057         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
29058         * modules/sys_stat (Depends-on): Add stat-macros.
29059         * lib/stat_.h (includes): Pick up stat macros.
29060         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
29061         if stat macros are broken.
29062         * lib/tempname.c (includes): No need to include "stat-macros.h".
29063         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
29064         (direxists, __path_search) [!_LIBC]: Don't compile these in
29065         gnulib; the tmpdir module covers that.
29066         * lib/tempname.h: New file.
29067
29068 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
29069
29070         * COPYING: Explain how gnulib-tool converts licence headers.
29071         Almost all wording by Eric Blake.
29072
29073 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
29074
29075         * lib/mbchar.h (is_basic_table): Make read-only.
29076         * lib/mbchar.c (is_basic_table): Likewise.
29077         Reported by John Darrington.
29078
29079 2006-10-25  Bruno Haible  <bruno@clisp.org>
29080
29081         * lib/progname.h (set_program_name): Undefine before defining.
29082
29083 2006-10-25  Bruno Haible  <bruno@clisp.org>
29084
29085         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
29086         false for non-gcc C++ compilers.
29087         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
29088
29089 2006-10-24  Bruno Haible  <bruno@clisp.org>
29090
29091         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
29092         iconv implementations like Irix iconv.
29093
29094 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29095
29096         * modules/vararrays: New file.
29097         * m4/vararrays.m4: New file, taken from diffutils.
29098         * MODULES.html.sh: New module vararrays.
29099
29100 2006-10-24  Karl Berry  <karl@gnu.org>
29101
29102         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
29103         Don't call GNU Unix.
29104
29105 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29106
29107         * users.txt: Add Libtool.
29108
29109         Sync from Libtool:
29110
29111         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29112
29113         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
29114         to gnulib's policy of including config.h unconditionally.
29115
29116 2006-10-24  Bruno Haible  <bruno@clisp.org>
29117
29118         * modules/wcwidth (Files): Add m4/wint_t.m4.
29119         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
29120         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
29121
29122 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29123
29124         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
29125         to pacify GCC with some -W flags enabled.  Problem reported by
29126         Bruno Haible.
29127
29128 2006-10-24  Jim Meyering  <jim@meyering.net>
29129
29130         * MODULES.html.sh: Remove uinttostr.  It's not a module.
29131         Reported by Karl Berry.
29132
29133 2006-10-23  Bruno Haible  <bruno@clisp.org>
29134
29135         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
29136
29137 2006-10-24  Bruno Haible  <bruno@clisp.org>
29138
29139         * lib/gl_list.h: Use C comment style, not C++ comment style.
29140
29141 2006-10-23  Eric Blake  <ebb9@byu.net>
29142
29143         * lib/getaddrinfo.c (includes): Add missing include.
29144
29145 2006-10-23  Bruno Haible  <bruno@clisp.org>
29146             Paul Eggert  <eggert@cs.ucla.edu>
29147
29148         Ability to rename obstack_free.
29149         * lib/obstack.h (__obstack_free): New macro. Declare instead of
29150         obstack_free.
29151         (obstack_free): Invoke the __obstack_free macro.
29152         * lib/obstack.c (obstack_free): Use __obstack_free macro.
29153
29154 2006-10-23  Bruno Haible  <bruno@clisp.org>
29155             Paul Eggert  <eggert@cs.ucla.edu>
29156
29157         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
29158         __argc, __argv from the declaration. (They are defined as macros on
29159         mingw.)
29160
29161 2006-10-22  Bruno Haible  <bruno@clisp.org>
29162
29163         * doc/gnulib-intro.texi: New file.
29164         * doc/gnulib.texi: Include it.
29165
29166 2006-10-21  Bruno Haible  <bruno@clisp.org>
29167
29168         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
29169         "Introduction", "Miscellanous Notes", "Particular Modules".
29170
29171 2006-10-21  Bruno Haible  <bruno@clisp.org>
29172
29173         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
29174         Change mostlyclean-local rule to avoid sh syntax error from bash
29175         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
29176
29177 2006-10-23  Jim Meyering  <jim@meyering.net>
29178
29179         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
29180         in place of snprintf.
29181
29182         * modules/inttostr (Files): Add lib/uinttostr.c.
29183         * lib/uinttostr.c (inttostr): New file/function.
29184         * lib/inttostr.h (uinttostr): Declare.
29185         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
29186         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
29187         Add uinttostr.
29188         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
29189
29190 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
29191
29192         * lib/canonicalize.c (ELOOP): Define if not already defined.
29193         Problem reported by Bruno Haible in
29194         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
29195
29196 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
29197
29198         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
29199         Problem reported by Perry Smith and Ville Laurikari.
29200
29201         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
29202         uses.
29203
29204 2006-10-19  Bruno Haible  <bruno@clisp.org>
29205
29206         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
29207         for mingw.
29208
29209 2006-10-19  Bruno Haible  <bruno@clisp.org>
29210
29211         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
29212         Needed for mingw.
29213
29214 2006-10-19  Bruno Haible  <bruno@clisp.org>
29215
29216         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
29217
29218 2006-10-19  Bruno Haible  <bruno@clisp.org>
29219
29220         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
29221         it.
29222
29223 2006-10-19  Bruno Haible  <bruno@clisp.org>
29224
29225         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
29226         invocation.
29227
29228 2006-10-19  Bruno Haible  <bruno@clisp.org>
29229
29230         * gnulib-tool (func_create_testdir): Don't include ftruncate and
29231         mountlist by default.
29232
29233 2006-10-16  Bruno Haible  <bruno@clisp.org>
29234
29235         * lib/c-strstr.c: Include c-strstr.h.
29236
29237 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
29238
29239         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
29240         in a slash.
29241
29242 2006-10-18  Bruno Haible  <bruno@clisp.org>
29243
29244         * lib/lock.h [C++]: Wrap definitions in extern "C".
29245
29246 2006-10-18  Bruno Haible  <bruno@clisp.org>
29247
29248         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
29249         gl_LIBOBJS list.
29250
29251 2006-10-18  Bruno Haible  <bruno@clisp.org>
29252
29253         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
29254
29255 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
29256
29257         * lib/xstrtol.h: Include gettext.h.
29258         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
29259         Problem reported by Eric Blake.
29260         * modules/xstrtol (Depends-on): Add gettext-h.
29261
29262 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
29263
29264         * lib/strftime.c (advance): New macro.
29265         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
29266         incomplete type, so you can't add 0 to it.  Problem and patch
29267         reported by Eelco Dolstra for dietlibc.
29268
29269 2006-10-18  Jim Meyering  <jim@meyering.net>
29270
29271         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
29272         type for a local, and rename it: s/up/user_proc/.
29273
29274 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
29275
29276         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
29277         READ_UTMP_USER_PROCESS.
29278         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
29279
29280 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29281
29282         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
29283         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
29284
29285 2006-10-17  Eric Blake  <ebb9@byu.net>
29286
29287         * lib/sigprocmask.c (sigprocmask): Fix typo.
29288
29289         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
29290
29291         * modules/clean-temp (Makefile.am): Don't add to make output...
29292         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
29293         config.h.
29294
29295 2006-10-17  Bruno Haible  <bruno@clisp.org>
29296
29297         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
29298         differently if DEFAULT_TEXT_DOMAIN is set.
29299
29300 2006-10-16  Bruno Haible  <bruno@clisp.org>
29301
29302         * lib/clean-temp.c: Include fwriteerror.h.
29303
29304 2006-10-16  Bruno Haible  <bruno@clisp.org>
29305
29306         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
29307
29308 2006-10-16  Bruno Haible  <bruno@clisp.org>
29309
29310         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
29311         * lib/sigprocmask.h: Include <sys/types.h>.
29312         (sigset_t): Use the system's definition if present.
29313
29314 2006-10-17  Eric Blake  <ebb9@byu.net>
29315
29316         * lib/xvasprintf.c (includes): Assume config.h.
29317         * lib/xasprintf.c (includes): Likewise.
29318
29319 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
29320
29321         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
29322         at least as wide as intmax_t.
29323
29324 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
29325
29326         (Imported from Automake.)
29327         * build-aux/gnupload: Update to version 1.1 of directive file.
29328
29329 2006-10-16  Eric Blake  <ebb9@byu.net>
29330
29331         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
29332         match Automake 1.10a.
29333
29334 2006-10-14  Bruno Haible  <bruno@clisp.org>
29335
29336         * modules/sigprocmask: New file.
29337         * lib/sigprocmask.h: New file.
29338         * lib/sigprocmask.c: New file.
29339         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
29340         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
29341         request sigprocmask.o.
29342         (gl_PREREQ_SIGPROCMASK): New macro.
29343         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
29344         (Depends-on): Add sigprocmask.
29345         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
29346         gt_SIGNALBLOCKING. Test for 'raise' only once.
29347         * lib/fatal-signal.c: Include sigprocmask.h.
29348         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
29349         unblock_fatal_signals): Define always.
29350         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29351         sigprocmask.
29352
29353 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
29354
29355         Sync from Automake.
29356         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
29357         which incorrectly sets the mode of an existing destination
29358         directory.  In some cases the unpatched install-sh could do the
29359         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
29360         system.  We hope this is rare in practice, but it's clearly worth
29361         fixing.  Problem reported by Alex Unleashed in
29362         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
29363         Also, don't bother to check for -m bugs unless we're using -m;
29364         suggested by Stepan Kasal.
29365
29366 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29367
29368         Sync from Automake.
29369         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
29370         `-c' flag, so they appear at the same position as in %FASTDEP%
29371         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
29372         which ignores unknown options only after the first non-option.
29373         Bug report against M4 by Nelson H. F. Beebe.
29374
29375 2006-10-13  Jim Meyering  <jim@meyering.net>
29376
29377         Fix a bug in yesterday's change.
29378         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
29379         p->fts_statp->st_dev would be used uninitialized.
29380         Ensures that we always call fts_stat on the very first entry.
29381         Miklos Szeredi reported that find -xdev stopped working.
29382
29383 2006-10-12  Bruno Haible  <bruno@clisp.org>
29384
29385         * gnulib-tool (func_get_automake_snippet): Append an automatically
29386         computed EXTRA_DIST augmentation.
29387         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
29388         * modules/alloca-opt (Makefile.am): Likewise.
29389         * modules/allocsa (Makefile.am): Likewise.
29390         * modules/arcfour (Makefile.am): Likewise.
29391         * modules/arctwo (Makefile.am): Likewise.
29392         * modules/argmatch (Makefile.am): Likewise.
29393         * modules/argz (Makefile.am): Likewise.
29394         * modules/atexit (Makefile.am): Likewise.
29395         * modules/backupfile (Makefile.am): Likewise.
29396         * modules/byteswap (Makefile.am): Likewise.
29397         * modules/c-strtod (Makefile.am): Likewise.
29398         * modules/c-strtold (Makefile.am): Likewise.
29399         * modules/calloc (Makefile.am): Likewise.
29400         * modules/canon-host (Makefile.am): Likewise.
29401         * modules/canonicalize (Makefile.am): Likewise.
29402         * modules/chdir-long (Makefile.am): Likewise.
29403         * modules/chdir-safer (Makefile.am): Likewise.
29404         * modules/check-version (Makefile.am): Likewise.
29405         * modules/chown (Makefile.am): Likewise.
29406         * modules/cloexec (Makefile.am): Likewise.
29407         * modules/close-stream (Makefile.am): Likewise.
29408         * modules/closeout (Makefile.am): Likewise.
29409         * modules/crc (Makefile.am): Likewise.
29410         * modules/csharpexec (Makefile.am): Likewise.
29411         * modules/cycle-check (Makefile.am): Likewise.
29412         * modules/des (Makefile.am): Likewise.
29413         * modules/dev-ino (Makefile.am): Likewise.
29414         * modules/dirfd (Makefile.am): Likewise.
29415         * modules/dirname (Makefile.am): Likewise.
29416         * modules/dup2 (Makefile.am): Likewise.
29417         * modules/eealloc (Makefile.am): Likewise.
29418         * modules/error (Makefile.am): Likewise.
29419         * modules/euidaccess (Makefile.am): Likewise.
29420         * modules/exclude (Makefile.am): Likewise.
29421         * modules/exitfail (Makefile.am): Likewise.
29422         * modules/fcntl-safer (Makefile.am): Likewise.
29423         * modules/fcntl (Makefile.am): Likewise.
29424         * modules/file-type (Makefile.am): Likewise.
29425         * modules/fileblocks (Makefile.am): Likewise.
29426         * modules/filemode (Makefile.am): Likewise.
29427         * modules/filenamecat (Makefile.am): Likewise.
29428         * modules/fnmatch (Makefile.am): Likewise.
29429         * modules/fopen-safer (Makefile.am): Likewise.
29430         * modules/fpending (Makefile.am): Likewise.
29431         * modules/fprintftime (Makefile.am): Likewise.
29432         * modules/free (Makefile.am): Likewise.
29433         * modules/fsusage (Makefile.am): Likewise.
29434         * modules/ftruncate (Makefile.am): Likewise.
29435         * modules/fts (Makefile.am): Likewise.
29436         * modules/gc-arcfour (Makefile.am): Likewise.
29437         * modules/gc-des (Makefile.am): Likewise.
29438         * modules/gc-hmac-md5 (Makefile.am): Likewise.
29439         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
29440         * modules/gc-md4 (Makefile.am): Likewise.
29441         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
29442         * modules/gc-sha1 (Makefile.am): Likewise.
29443         * modules/gc (Makefile.am): Likewise.
29444         * modules/getaddrinfo (Makefile.am): Likewise.
29445         * modules/getcwd (Makefile.am): Likewise.
29446         * modules/getdelim (Makefile.am): Likewise.
29447         * modules/getdomainname (Makefile.am): Likewise.
29448         * modules/getgroups (Makefile.am): Likewise.
29449         * modules/gethostname (Makefile.am): Likewise.
29450         * modules/gethrxtime (Makefile.am): Likewise.
29451         * modules/getline (Makefile.am): Likewise.
29452         * modules/getloadavg (Makefile.am): Likewise.
29453         * modules/getlogin_r (Makefile.am): Likewise.
29454         * modules/getndelim2 (Makefile.am): Likewise.
29455         * modules/getopt (Makefile.am): Likewise.
29456         * modules/getpagesize (Makefile.am): Likewise.
29457         * modules/getpass-gnu (Makefile.am): Likewise.
29458         * modules/getpass (Makefile.am): Likewise.
29459         * modules/getsubopt (Makefile.am): Likewise.
29460         * modules/gettime (Makefile.am): Likewise.
29461         * modules/gettimeofday (Makefile.am): Likewise.
29462         * modules/getugroups (Makefile.am): Likewise.
29463         * modules/getusershell (Makefile.am): Likewise.
29464         * modules/glob (Makefile.am): Likewise.
29465         * modules/group-member (Makefile.am): Likewise.
29466         * modules/hard-locale (Makefile.am): Likewise.
29467         * modules/hash (Makefile.am): Likewise.
29468         * modules/hmac-md5 (Makefile.am): Likewise.
29469         * modules/hmac-sha1 (Makefile.am): Likewise.
29470         * modules/human (Makefile.am): Likewise.
29471         * modules/idcache (Makefile.am): Likewise.
29472         * modules/imaxabs (Makefile.am): Likewise.
29473         * modules/imaxdiv (Makefile.am): Likewise.
29474         * modules/inet_ntop (Makefile.am): Likewise.
29475         * modules/inet_pton (Makefile.am): Likewise.
29476         * modules/intprops (Makefile.am): Likewise.
29477         * modules/inttostr (Makefile.am): Likewise.
29478         * modules/inttypes (Makefile.am): Likewise.
29479         * modules/isapipe (Makefile.am): Likewise.
29480         * modules/javaversion (Makefile.am): Likewise.
29481         * modules/lchmod (Makefile.am): Likewise.
29482         * modules/lchown (Makefile.am): Likewise.
29483         * modules/localcharset (Makefile.am): Likewise.
29484         * modules/long-options (Makefile.am): Likewise.
29485         * modules/lstat (Makefile.am): Likewise.
29486         * modules/malloc (Makefile.am): Likewise.
29487         * modules/mathl (Makefile.am): Likewise.
29488         * modules/mbchar (Makefile.am): Likewise.
29489         * modules/md2 (Makefile.am): Likewise.
29490         * modules/md4 (Makefile.am): Likewise.
29491         * modules/md5 (Makefile.am): Likewise.
29492         * modules/memcasecmp (Makefile.am): Likewise.
29493         * modules/memchr (Makefile.am): Likewise.
29494         * modules/memcmp (Makefile.am): Likewise.
29495         * modules/memcoll (Makefile.am): Likewise.
29496         * modules/memcpy (Makefile.am): Likewise.
29497         * modules/memmem (Makefile.am): Likewise.
29498         * modules/memmove (Makefile.am): Likewise.
29499         * modules/mempcpy (Makefile.am): Likewise.
29500         * modules/memrchr (Makefile.am): Likewise.
29501         * modules/memset (Makefile.am): Likewise.
29502         * modules/memxor (Makefile.am): Likewise.
29503         * modules/mkancesdirs (Makefile.am): Likewise.
29504         * modules/mkdir-p (Makefile.am): Likewise.
29505         * modules/mkdir (Makefile.am): Likewise.
29506         * modules/mkdtemp (Makefile.am): Likewise.
29507         * modules/mkstemp (Makefile.am): Likewise.
29508         * modules/mktime (Makefile.am): Likewise.
29509         * modules/modechange (Makefile.am): Likewise.
29510         * modules/mountlist (Makefile.am): Likewise.
29511         * modules/nanosleep (Makefile.am): Likewise.
29512         * modules/obstack (Makefile.am): Likewise.
29513         * modules/openat (Makefile.am): Likewise.
29514         * modules/pagealign_alloc (Makefile.am): Likewise.
29515         * modules/pathmax (Makefile.am): Likewise.
29516         * modules/physmem (Makefile.am): Likewise.
29517         * modules/poll (Makefile.am): Likewise.
29518         * modules/posixtm (Makefile.am): Likewise.
29519         * modules/posixver (Makefile.am): Likewise.
29520         * modules/putenv (Makefile.am): Likewise.
29521         * modules/quote (Makefile.am): Likewise.
29522         * modules/quotearg (Makefile.am): Likewise.
29523         * modules/raise (Makefile.am): Likewise.
29524         * modules/read-file (Makefile.am): Likewise.
29525         * modules/readline (Makefile.am): Likewise.
29526         * modules/readlink (Makefile.am): Likewise.
29527         * modules/readtokens (Makefile.am): Likewise.
29528         * modules/readutmp (Makefile.am): Likewise.
29529         * modules/realloc (Makefile.am): Likewise.
29530         * modules/regex (Makefile.am): Likewise.
29531         * modules/rename-dest-slash (Makefile.am): Likewise.
29532         * modules/rename (Makefile.am): Likewise.
29533         * modules/rijndael (Makefile.am): Likewise.
29534         * modules/rmdir (Makefile.am): Likewise.
29535         * modules/rpmatch (Makefile.am): Likewise.
29536         * modules/safe-read (Makefile.am): Likewise.
29537         * modules/safe-write (Makefile.am): Likewise.
29538         * modules/same-inode (Makefile.am): Likewise.
29539         * modules/same (Makefile.am): Likewise.
29540         * modules/save-cwd (Makefile.am): Likewise.
29541         * modules/savedir (Makefile.am): Likewise.
29542         * modules/setenv (Makefile.am): Likewise.
29543         * modules/settime (Makefile.am): Likewise.
29544         * modules/sha1 (Makefile.am): Likewise.
29545         * modules/sig2str (Makefile.am): Likewise.
29546         * modules/snprintf (Makefile.am): Likewise.
29547         * modules/stat-macros (Makefile.am): Likewise.
29548         * modules/stat-time (Makefile.am): Likewise.
29549         * modules/stdbool (Makefile.am): Likewise.
29550         * modules/stdint (Makefile.am): Likewise.
29551         * modules/stdlib-safer (Makefile.am): Likewise.
29552         * modules/stpcpy (Makefile.am): Likewise.
29553         * modules/stpncpy (Makefile.am): Likewise.
29554         * modules/strcase (Makefile.am): Likewise.
29555         * modules/strcasestr (Makefile.am): Likewise.
29556         * modules/strchrnul (Makefile.am): Likewise.
29557         * modules/strcspn (Makefile.am): Likewise.
29558         * modules/strdup (Makefile.am): Likewise.
29559         * modules/strerror (Makefile.am): Likewise.
29560         * modules/strftime (Makefile.am): Likewise.
29561         * modules/strndup (Makefile.am): Likewise.
29562         * modules/strnlen (Makefile.am): Likewise.
29563         * modules/strpbrk (Makefile.am): Likewise.
29564         * modules/strsep (Makefile.am): Likewise.
29565         * modules/strstr (Makefile.am): Likewise.
29566         * modules/strtod (Makefile.am): Likewise.
29567         * modules/strtoimax (Makefile.am): Likewise.
29568         * modules/strtok_r (Makefile.am): Likewise.
29569         * modules/strtol (Makefile.am): Likewise.
29570         * modules/strtoll (Makefile.am): Likewise.
29571         * modules/strtoul (Makefile.am): Likewise.
29572         * modules/strtoull (Makefile.am): Likewise.
29573         * modules/strtoumax (Makefile.am): Likewise.
29574         * modules/strverscmp (Makefile.am): Likewise.
29575         * modules/sys_socket (Makefile.am): Likewise.
29576         * modules/sys_stat (Makefile.am): Likewise.
29577         * modules/sysexits (Makefile.am): Likewise.
29578         * modules/time_r (Makefile.am): Likewise.
29579         * modules/timegm (Makefile.am): Likewise.
29580         * modules/timespec (Makefile.am): Likewise.
29581         * modules/tmpfile-safer (Makefile.am): Likewise.
29582         * modules/trim (Makefile.am): Likewise.
29583         * modules/unistd-safer (Makefile.am): Likewise.
29584         * modules/unlinkdir (Makefile.am): Likewise.
29585         * modules/unlocked-io (Makefile.am): Likewise.
29586         * modules/userspec (Makefile.am): Likewise.
29587         * modules/utime (Makefile.am): Likewise.
29588         * modules/utimecmp (Makefile.am): Likewise.
29589         * modules/utimens (Makefile.am): Likewise.
29590         * modules/vasnprintf (Makefile.am): Likewise.
29591         * modules/vasprintf (Makefile.am): Likewise.
29592         * modules/vsnprintf (Makefile.am): Likewise.
29593         * modules/xalloc (Makefile.am): Likewise.
29594         * modules/xgetcwd (Makefile.am): Likewise.
29595         * modules/xnanosleep (Makefile.am): Likewise.
29596         * modules/xreadlink (Makefile.am): Likewise.
29597         * modules/xstrtod (Makefile.am): Likewise.
29598         * modules/xstrtol (Makefile.am): Likewise.
29599         * modules/xstrtold (Makefile.am): Likewise.
29600         * modules/yesno (Makefile.am): Likewise.
29601         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
29602
29603 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
29604
29605         * modules/error (Makefile.am): Distribute files through
29606         EXTRA_DIST, not lib_SOURCES.
29607
29608 2006-10-12  Eric Blake  <ebb9@byu.net>
29609
29610         * modules/error (Makefile.am): Distribute files in /lib.
29611         * modules/obstack (Makefile.am): Likewise.
29612
29613 2006-10-12  Bruno Haible  <bruno@clisp.org>
29614
29615         * modules/acl (Makefile.am): Distribute all files in lib/ through
29616         EXTRA_DIST.
29617         * modules/arcfour (Makefile.am): Likewise.
29618         * modules/arctwo (Makefile.am): Likewise.
29619         * modules/argmatch (Makefile.am): Likewise.
29620         * modules/argz (Makefile.am): Likewise.
29621         * modules/atexit (Makefile.am): Likewise.
29622         * modules/backupfile (Makefile.am): Likewise.
29623         * modules/c-strtod (Makefile.am): Likewise.
29624         * modules/c-strtold (Makefile.am): Likewise.
29625         * modules/calloc (Makefile.am): Likewise.
29626         * modules/canon-host (Makefile.am): Likewise.
29627         * modules/canonicalize (Makefile.am): Likewise.
29628         * modules/chdir-long (Makefile.am): Likewise.
29629         * modules/chdir-safer (Makefile.am): Likewise.
29630         * modules/check-version (Makefile.am): Likewise.
29631         * modules/chown (Makefile.am): Likewise.
29632         * modules/cloexec (Makefile.am): Likewise.
29633         * modules/close-stream (Makefile.am): Likewise.
29634         * modules/closeout (Makefile.am): Likewise.
29635         * modules/crc (Makefile.am): Likewise.
29636         * modules/cycle-check (Makefile.am): Likewise.
29637         * modules/des (Makefile.am): Likewise.
29638         * modules/dirfd (Makefile.am): Likewise.
29639         * modules/dirname (Makefile.am): Likewise.
29640         * modules/dup2 (Makefile.am): Likewise.
29641         * modules/euidaccess (Makefile.am): Likewise.
29642         * modules/exclude (Makefile.am): Likewise.
29643         * modules/exitfail (Makefile.am): Likewise.
29644         * modules/fcntl-safer (Makefile.am): Likewise.
29645         * modules/file-type (Makefile.am): Likewise.
29646         * modules/fileblocks (Makefile.am): Likewise.
29647         * modules/filemode (Makefile.am): Likewise.
29648         * modules/filenamecat (Makefile.am): Likewise.
29649         * modules/fnmatch (Makefile.am): Likewise.
29650         * modules/fopen-safer (Makefile.am): Likewise.
29651         * modules/fpending (Makefile.am): Likewise.
29652         * modules/fprintftime (Makefile.am): Likewise.
29653         * modules/free (Makefile.am): Likewise.
29654         * modules/fsusage (Makefile.am): Likewise.
29655         * modules/ftruncate (Makefile.am): Likewise.
29656         * modules/fts (Makefile.am): Likewise.
29657         * modules/gc (Makefile.am): Likewise.
29658         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
29659         * modules/getaddrinfo (Makefile.am): Likewise.
29660         * modules/getcwd (Makefile.am): Likewise.
29661         * modules/getdelim (Makefile.am): Likewise.
29662         * modules/getdomainname (Makefile.am): Likewise.
29663         * modules/getgroups (Makefile.am): Likewise.
29664         * modules/gethostname (Makefile.am): Likewise.
29665         * modules/gethrxtime (Makefile.am): Likewise.
29666         * modules/getline (Makefile.am): Likewise.
29667         * modules/getloadavg (Makefile.am): Likewise.
29668         * modules/getlogin_r (Makefile.am): Likewise.
29669         * modules/getopt (Makefile.am): Likewise.
29670         * modules/getpass (Makefile.am): Likewise.
29671         * modules/getpass-gnu (Makefile.am): Likewise.
29672         * modules/getsubopt (Makefile.am): Likewise.
29673         * modules/gettime (Makefile.am): Likewise.
29674         * modules/gettimeofday (Makefile.am): Likewise.
29675         * modules/getugroups (Makefile.am): Likewise.
29676         * modules/getusershell (Makefile.am): Likewise.
29677         * modules/glob (Makefile.am): Likewise.
29678         * modules/group-member (Makefile.am): Likewise.
29679         * modules/hard-locale (Makefile.am): Likewise.
29680         * modules/hash (Makefile.am): Likewise.
29681         * modules/hmac-md5 (Makefile.am): Likewise.
29682         * modules/hmac-sha1 (Makefile.am): Likewise.
29683         * modules/human (Makefile.am): Likewise.
29684         * modules/idcache (Makefile.am): Likewise.
29685         * modules/imaxabs (Makefile.am): Likewise.
29686         * modules/imaxdiv (Makefile.am): Likewise.
29687         * modules/inet_ntop (Makefile.am): Likewise.
29688         * modules/inet_pton (Makefile.am): Likewise.
29689         * modules/inttostr (Makefile.am): Likewise.
29690         * modules/isapipe (Makefile.am): Likewise.
29691         * modules/lchown (Makefile.am): Likewise.
29692         * modules/long-options (Makefile.am): Likewise.
29693         * modules/lstat (Makefile.am): Likewise.
29694         * modules/malloc (Makefile.am): Likewise.
29695         * modules/mathl (Makefile.am): Likewise.
29696         * modules/mbchar (Makefile.am): Likewise.
29697         * modules/md2 (Makefile.am): Likewise.
29698         * modules/md4 (Makefile.am): Likewise.
29699         * modules/md5 (Makefile.am): Likewise.
29700         * modules/memcasecmp (Makefile.am): Likewise.
29701         * modules/memchr (Makefile.am): Likewise.
29702         * modules/memcmp (Makefile.am): Likewise.
29703         * modules/memcoll (Makefile.am): Likewise.
29704         * modules/memcpy (Makefile.am): Likewise.
29705         * modules/memmem (Makefile.am): Likewise.
29706         * modules/memmove (Makefile.am): Likewise.
29707         * modules/mempcpy (Makefile.am): Likewise.
29708         * modules/memrchr (Makefile.am): Likewise.
29709         * modules/memset (Makefile.am): Likewise.
29710         * modules/memxor (Makefile.am): Likewise.
29711         * modules/mkancesdirs (Makefile.am): Likewise.
29712         * modules/mkdir (Makefile.am): Likewise.
29713         * modules/mkdir-p (Makefile.am): Likewise.
29714         * modules/mkdtemp (Makefile.am): Likewise.
29715         * modules/mkstemp (Makefile.am): Likewise.
29716         * modules/mktime (Makefile.am): Likewise.
29717         * modules/modechange (Makefile.am): Likewise.
29718         * modules/mountlist (Makefile.am): Likewise.
29719         * modules/nanosleep (Makefile.am): Likewise.
29720         * modules/openat (Makefile.am): Likewise.
29721         * modules/pagealign_alloc (Makefile.am): Likewise.
29722         * modules/physmem (Makefile.am): Likewise.
29723         * modules/poll (Makefile.am): Likewise.
29724         * modules/posixtm (Makefile.am): Likewise.
29725         * modules/posixver (Makefile.am): Likewise.
29726         * modules/putenv (Makefile.am): Likewise.
29727         * modules/quote (Makefile.am): Likewise.
29728         * modules/quotearg (Makefile.am): Likewise.
29729         * modules/raise (Makefile.am): Likewise.
29730         * modules/read-file (Makefile.am): Likewise.
29731         * modules/readline (Makefile.am): Likewise.
29732         * modules/readlink (Makefile.am): Likewise.
29733         * modules/readtokens (Makefile.am): Likewise.
29734         * modules/readutmp (Makefile.am): Likewise.
29735         * modules/realloc (Makefile.am): Likewise.
29736         * modules/regex (Makefile.am): Likewise.
29737         * modules/rename (Makefile.am): Likewise.
29738         * modules/rename-dest-slash (Makefile.am): Likewise.
29739         * modules/rijndael (Makefile.am): Likewise.
29740         * modules/rmdir (Makefile.am): Likewise.
29741         * modules/rpmatch (Makefile.am): Likewise.
29742         * modules/safe-read (Makefile.am): Likewise.
29743         * modules/safe-write (Makefile.am): Likewise.
29744         * modules/same (Makefile.am): Likewise.
29745         * modules/save-cwd (Makefile.am): Likewise.
29746         * modules/savedir (Makefile.am): Likewise.
29747         * modules/setenv (Makefile.am): Likewise.
29748         * modules/settime (Makefile.am): Likewise.
29749         * modules/sha1 (Makefile.am): Likewise.
29750         * modules/sig2str (Makefile.am): Likewise.
29751         * modules/snprintf (Makefile.am): Likewise.
29752         * modules/stdlib-safer (Makefile.am): Likewise.
29753         * modules/stpcpy (Makefile.am): Likewise.
29754         * modules/stpncpy (Makefile.am): Likewise.
29755         * modules/strcase (Makefile.am): Likewise.
29756         * modules/strcasestr (Makefile.am): Likewise.
29757         * modules/strchrnul (Makefile.am): Likewise.
29758         * modules/strcspn (Makefile.am): Likewise.
29759         * modules/strdup (Makefile.am): Likewise.
29760         * modules/strerror (Makefile.am): Likewise.
29761         * modules/strftime (Makefile.am): Likewise.
29762         * modules/strndup (Makefile.am): Likewise.
29763         * modules/strnlen (Makefile.am): Likewise.
29764         * modules/strpbrk (Makefile.am): Likewise.
29765         * modules/strsep (Makefile.am): Likewise.
29766         * modules/strstr (Makefile.am): Likewise.
29767         * modules/strtod (Makefile.am): Likewise.
29768         * modules/strtoimax (Makefile.am): Likewise.
29769         * modules/strtok_r (Makefile.am): Likewise.
29770         * modules/strtol (Makefile.am): Likewise.
29771         * modules/strtoll (Makefile.am): Likewise.
29772         * modules/strtoul (Makefile.am): Likewise.
29773         * modules/strtoull (Makefile.am): Likewise.
29774         * modules/strtoumax (Makefile.am): Likewise.
29775         * modules/strverscmp (Makefile.am): Likewise.
29776         * modules/time_r (Makefile.am): Likewise.
29777         * modules/timegm (Makefile.am): Likewise.
29778         * modules/tmpfile-safer (Makefile.am): Likewise.
29779         * modules/unistd-safer (Makefile.am): Likewise.
29780         * modules/unlinkdir (Makefile.am): Likewise.
29781         * modules/userspec (Makefile.am): Likewise.
29782         * modules/utime (Makefile.am): Likewise.
29783         * modules/utimecmp (Makefile.am): Likewise.
29784         * modules/utimens (Makefile.am): Likewise.
29785         * modules/vasnprintf (Makefile.am): Likewise.
29786         * modules/vasprintf (Makefile.am): Likewise.
29787         * modules/vsnprintf (Makefile.am): Likewise.
29788         * modules/xalloc (Makefile.am): Likewise.
29789         * modules/xgetcwd (Makefile.am): Likewise.
29790         * modules/xnanosleep (Makefile.am): Likewise.
29791         * modules/xreadlink (Makefile.am): Likewise.
29792         * modules/xstrtod (Makefile.am): Likewise.
29793         * modules/xstrtol (Makefile.am): Likewise.
29794         * modules/xstrtold (Makefile.am): Likewise.
29795         * modules/yesno (Makefile.am): Likewise.
29796
29797 2006-10-12  Jim Meyering  <jim@meyering.net>
29798
29799         * m4/getloadavg.m4: Revert the change below.
29800
29801         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
29802         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
29803         fail with a symlink, which is what coreutils' ./bootstrap now
29804         creates by default.
29805
29806 2006-10-12  Bruno Haible  <bruno@clisp.org>
29807
29808         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
29809         mingw.
29810         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
29811         MSVC and mingw explicitly.
29812
29813 2006-10-11  Simon Josefsson  <jas@extundo.com>
29814             Bruno Haible  <bruno@clisp.org>
29815
29816         Add support for multiple gnulib-tool invocations in the scope of a
29817         single configure.ac file.
29818         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
29819         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
29820         with the same contents as the _LIBADD variable.
29821         (func_emit_initmacro_start, func_emit_initmacro_end,
29822         func_emit_initmacro_done): New functions.
29823         (func_import, func_create_testdir): Invoke them. Allow the identifiers
29824         gl_LIBOBJS and gl_LTLIBOBJS.
29825
29826 2006-10-11  Bruno Haible  <bruno@clisp.org>
29827
29828         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
29829         (func_create_testdir): Don't create po/Makefile.am, don't invoke
29830         autoreconf. Instead, invoke autopoint explicitly but move back the
29831         *.m4 files from gnulib.
29832
29833 2006-10-11  Bruno Haible  <bruno@clisp.org>
29834
29835         * gnulib-tool (func_usage): Make module names after --create-testdir
29836         optional.
29837         (func_create_testdir): If no module was specified, use nearly all
29838         modules.
29839
29840 2006-10-12  Jim Meyering  <jim@meyering.net>
29841
29842         Big performance improvement for fts-based tools that use FTS_NOSTAT.
29843         Avoid spurious inode-mismatch problems on non-POSIX file systems.
29844         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
29845         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
29846         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
29847         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
29848         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
29849         (fts_set_stat_required): New function.
29850         (fts_open): Defer the calls to fts_stat, if possible or requested.
29851         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
29852         into fts_stat itself.
29853         (fts_read): Perform any required (deferred) fts_stat call.
29854         (fts_build): Likewise, for the directory we're about to open and read.
29855         In the readdir loop, carefully decide whether each entry will require
29856         an eventual call to fts_stat, using dirent.d_type info if available.
29857         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
29858         a command line argument into this function.  Update all callers.
29859         Map a return value of FTS_DOT to FTS_D for a command line argument.
29860         * modules/fts (Depends-on): Add d-type.  Alphabetize.
29861         Thanks to Miklos Szeredi for his tenacity and for the initial
29862         bug report about "find" failing on a FUSE-based file system.
29863
29864         * lib/fts.c (fts_open): Use consistent indentation.
29865
29866 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
29867
29868         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
29869         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
29870         reported by Jim Meyering.  All uses of cache variables renamed
29871         to match Autoconf's.
29872         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
29873         the other one.
29874
29875         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
29876         Fix misspelling in diagnostic.
29877
29878 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
29879
29880         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
29881         defined.  Problem reported by Matthew Woehlke.
29882
29883         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
29884         Add support for Tandem NonStop R series.
29885         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
29886         Use new macro.
29887
29888         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
29889         (has_trailing_slash): Omit size arg; all callers changed.
29890         Omit 'inline', since it doesn't help performance and we'd
29891         need to configure it.
29892         Don't count //, ///, etc. as having a trailing slash.
29893         As a side effect, this removes a C99ism reported by Matthew Woehlke.
29894         (rpl_rename_dest_slash): On failure, use rename's errno rather
29895         than (in some cases) an incorrect or junk errno.
29896         Simplify code by removing need to compute length; this does
29897         cause it to make two passes instead of one over the file name,
29898         but it's worth it.
29899
29900         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
29901         change, since Autoconf's version may no longer be appropriate now
29902         that we are using CVS Autoconf's version.  Add support for Tandem.
29903
29904 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
29905             Bruno Haible  <bruno@clisp.org>
29906
29907         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
29908         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
29909         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
29910         gl_AC_TYPE_LONG_LONG.
29911
29912         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
29913         instead of HAVE_LONG_LONG.
29914         * lib/printf-args.c (printf_fetchargs): Likewise.
29915         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
29916         * lib/vasnprintf.c (VASNPRINTF): Likewise.
29917         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
29918         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
29919         gl_AC_TYPE_LONG_LONG.
29920
29921 2006-10-11  Bruno Haible  <bruno@clisp.org>
29922
29923         * m4/longlong.m4: Add comments.
29924         * m4/ulonglong.m4: Likewise.
29925
29926 2006-10-10  Bruno Haible  <bruno@clisp.org>
29927
29928         Make it possible to #define stpcpy, strdup to aliases.
29929         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
29930         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
29931
29932 2006-10-10  Bruno Haible  <bruno@clisp.org>
29933
29934         Make it possible to #define gcd to an alias.
29935         * lib/gcd.c: Include config.h.
29936
29937 2006-10-10  Bruno Haible  <bruno@clisp.org>
29938
29939         Make it possible to #define c_isascii to an alias.
29940         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
29941         defined. Undefine the macros before defining them, to avoid gcc
29942         warnings.
29943         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
29944         define NO_C_CTYPE_MACROS early.
29945
29946 2006-10-10  Bruno Haible  <bruno@clisp.org>
29947
29948         Make it possible to #define set_program_name to an alias.
29949         * lib/progname.c: Don't undefine set_program_name; instead, undefine
29950         ENABLE_RELOCATABLE early.
29951
29952 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
29953
29954         Port to Tandem NSK OSS, which has 64-bit signed int but at most
29955         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
29956         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
29957         More generally, don't assume that 64-bit signed int is available
29958         if unsigned int is, and vice versa.
29959         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
29960         unsigned symbols, not on their signed counterparts.
29961         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
29962         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
29963         (UINT64_C, UINTMAX_C):
29964         Likewise.
29965         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
29966         unsigned counterparts.
29967         (Have_long_long, Unsigned): New macros.
29968         (Int): Renamed from INT.
29969         (strtoimax): Use the new macros.
29970         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
29971         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
29972         * modules/inttypes (inttypes.h): Substitute
29973         HAVE_UNSIGNED_LONG_LONG_INT.
29974         * modules/stdint (stdint.h): Likewise.
29975         (Files): Add m4/ulonglong.m4.
29976
29977 2006-10-10  Bruno Haible  <bruno@clisp.org>
29978
29979         Fix a gcc -Wshadow warning.
29980         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
29981         to 'bucket'.
29982         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
29983         gl_linked_indexof_from_to): Likewise.
29984         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
29985         Likewise.
29986         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
29987         Likewise.
29988         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
29989         Reported by Eric Blake.
29990
29991 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
29992
29993         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
29994         for NetBSD.  Problem reported by Bruno Haible.
29995
29996 2006-10-09  Jim Meyering  <jim@meyering.net>
29997
29998         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
29999         Patch from Bruno Haible.
30000
30001 2006-10-09  Jim Meyering  <jim@meyering.net>
30002
30003         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
30004         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
30005         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
30006
30007 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30008
30009         Don't include <config.h> twice; this doesn't work in some cases,
30010         e.g., when config.h has "#define intmax_t long long int" and
30011         we include <config.h>, <inttypes.h>, <config.h> in that order.
30012         Problem reported by Matthew Woehlke in:
30013         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
30014         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
30015         * lib/fts-cycle.c: Don't include config.h.
30016         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
30017         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
30018         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
30019         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
30020         inttypes.h.
30021         * lib/xstrtoumax.c: Likewise.
30022         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
30023         __strtol and the like, so that this module is more like its siblings.
30024         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
30025         Remove; no longer needed now that we assume gnulib inttypes.h.
30026
30027 2006-10-08  Bruno Haible  <bruno@clisp.org>
30028
30029         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
30030         option.
30031
30032 2006-10-07  Jim Meyering  <jim@meyering.net>
30033
30034         * modules/inttypes (inttypes.h): Revert what seems to have been
30035         an inadvertent part of today's change: use "|", not "/" in the
30036         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
30037
30038 2006-10-07  Bruno Haible  <bruno@clisp.org>
30039
30040         * modules/sublist: New file.
30041
30042 2006-10-07  Bruno Haible  <bruno@clisp.org>
30043
30044         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
30045         * modules/argz (argz.h): Likewise.
30046         * modules/arpa_inet (arpa/inet.h): Likewise.
30047         * modules/byteswap (byteswap.h): Likewise.
30048         * modules/configmake (configmake.h): Likewise.
30049         * modules/fcntl (fcntl.h): Likewise.
30050         * modules/fnmatch (fnmatch.h): Likewise.
30051         * modules/getopt (getopt.h): Likewise.
30052         * modules/glob (glob.h): Likewise.
30053         * modules/inttypes (inttypes.h): Likewise.
30054         * modules/netinet_in (netinet/in.h): Likewise.
30055         * modules/poll (poll.h): Likewise.
30056         * modules/stdbool (stdbool.h): Likewise.
30057         * modules/stdint (stdint.h): Likewise.
30058         * modules/sys_select (sys/select.h): Likewise.
30059         * modules/sys_socket (sys/socket.h): Likewise.
30060         * modules/sys_stat (sys/stat.h): Likewise.
30061         * modules/sysexits (sysexits.h): Likewise.
30062         * modules/unistd (unistd.h): Likewise.
30063         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30064         Add a "DO NOT EDIT" comment to the generated file.
30065         (func_import): Likewise for gnulib-comp.m4.
30066
30067 2006-10-07  Bruno Haible  <bruno@clisp.org>
30068
30069         * lib/gl_sublist.h: New file.
30070         * lib/gl_sublist.c: New file.
30071
30072 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
30073
30074         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
30075         name (relative to the original working directory) and the file
30076         name component (relative to the temporary working directory).  All
30077         callers changed.
30078         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
30079         * lib/mkdir-p.c (make_dir_parents): Likewise.
30080         * lib/mkdir-p.h (make_dir_parents): Likewise.
30081
30082 2006-10-06  Eric Blake  <ebb9@byu.net>
30083
30084         Define several macros for use by the clean-temp module.
30085         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
30086         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
30087         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
30088
30089         * lib/clean-temp.h (close_stream_temp): New declaration.
30090         * lib/clean-temp.c (includes): Pull in headers according to what
30091         other modules are in use.
30092         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
30093
30094 2006-10-06  Bruno Haible  <bruno@clisp.org>
30095
30096         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
30097         instead of fopen, fwriteerror.
30098
30099 2006-10-06  Bruno Haible  <bruno@clisp.org>
30100
30101         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
30102         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
30103         int.
30104         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
30105         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
30106         Return an error indicator.
30107         Suggested by Eric Blake.
30108
30109 2006-10-06  Bruno Haible  <bruno@clisp.org>
30110
30111         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
30112         Reported by Eric Blake.
30113
30114 2006-10-06  Bruno Haible  <bruno@clisp.org>
30115
30116         * modules/closeout (Description): Mention stderr too.
30117
30118 2006-10-06  Bruno Haible  <bruno@clisp.org>
30119         and Paul Eggert  <eggert@cs.ucla.edu>
30120
30121         * lib/closeout.c (close_stdout): Also close stderr.
30122         * lib/closeout.h: Update comment.
30123
30124 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
30125
30126         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
30127         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
30128         * lib/dirchownmod.c: Include lchown.h.
30129         * lib/lchown.c: Don't include files that lchown.h now includes.
30130         Don't declare chown, since lchown.h now does that.
30131         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
30132         (lchown): Define to rpl_chown if lchown is declared but
30133         does not exist.  Declare using a prototype if lchown is not
30134         declared.  Add a copyright notice.
30135         * lib/mkstemp.h: Include <unistd.h>.
30136         * lib/openat.c: Include lchown.h.
30137
30138         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
30139         we now test for that separately.
30140         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
30141         rather than O_NOFOLLOW, when testing whether it's possible to
30142         avoid a race condition reliably.
30143         * lib/savewd.c (savewd_chdir): Likewise.
30144
30145         Remove macros that are no longer needed now that stdint.h is
30146         reliable.
30147         * lib/fsusage.c (UINTMAX_MAX): Remove.
30148         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
30149         * lib/utimecmp.c (SIZE_MAX): Remove.
30150
30151         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
30152
30153         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
30154         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
30155         O_NOATIME works.
30156
30157 2006-10-05  Bruno Haible  <bruno@clisp.org>
30158
30159         * lib/gl_list.h (gl_sortedlist_search_from_to,
30160         gl_sortedlist_indexof_from_to): New declarations.
30161         (gl_list_implementation): New fields sortedlist_search_from_to,
30162         sortedlist_indexof_from_to.
30163         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
30164         inline functions.
30165         * lib/gl_list.c (gl_sortedlist_search_from_to,
30166         gl_sortedlist_indexof_from_to): New functions.
30167         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
30168         function.
30169         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
30170         (gl_array_sortedlist_search_from_to): New function.
30171         (gl_array_list_implementation): Update.
30172         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
30173         function.
30174         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
30175         (gl_carray_sortedlist_search_from_to): New function.
30176         (gl_carray_list_implementation): Update.
30177         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
30178         gl_linked_sortedlist_indexof_from_to): New functions.
30179         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
30180         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
30181         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
30182         gl_tree_sortedlist_indexof_from_to): New functions.
30183         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
30184         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
30185         Update.
30186         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
30187         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
30188         Update.
30189
30190 2006-10-05  Bruno Haible  <bruno@clisp.org>
30191
30192         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
30193         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
30194         (struct gl_list_implementation): Add fields search_from_to,
30195         indexof_from_to. Remove fields search, indexof.
30196         (gl_list_search): Use the search_from_to method.
30197         (gl_list_search_from, gl_list_search_from_to): New functions.
30198         (gl_list_indexof): Use the indexof_from_to method.
30199         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
30200         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
30201         (gl_list_search_from, gl_list_search_from_to): New functions.
30202         (gl_list_indexof): Use the indexof_from_to method.
30203         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
30204         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
30205         gl_array_indexof. Add start_index, end_index arguments.
30206         (gl_array_search_from_to): Renamed from gl_array_search. Add
30207         start_index, end_index arguments.
30208         (gl_array_remove, gl_array_list_implementation): Update.
30209         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
30210         gl_carray_indexof. Add start_index, end_index arguments.
30211         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
30212         start_index, end_index arguments.
30213         (gl_carray_remove, gl_carray_list_implementation): Update.
30214         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
30215         gl_linked_search. Add start_index, end_index arguments.
30216         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
30217         start_index, end_index arguments.
30218         (gl_linked_remove): Update.
30219         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
30220         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
30221         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
30222         field to 'size_t'.
30223         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
30224         gl_tree_search. Add start_index, end_index arguments.
30225         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
30226         start_index, end_index arguments.
30227         (gl_tree_remove): Update.
30228         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
30229         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
30230         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
30231         function.
30232         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
30233         gl_tree_search. Add start_index, end_index arguments.
30234         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
30235         start_index, end_index arguments.
30236         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
30237         Update.
30238         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
30239
30240 2006-10-05  Bruno Haible  <bruno@clisp.org>
30241
30242         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
30243
30244         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
30245         fwriteerror_temp): New declarations.
30246         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
30247         (descriptors): New variable.
30248         (cleanup): First, close the descriptors.
30249         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
30250         fclose_temp, fwriteerror_temp): New functions.
30251
30252 2006-10-04  Jim Meyering  <jim@meyering.net>
30253
30254         * lib/fts.c (fts_open): Tiny comment change.
30255
30256 2006-10-04  Bruno Haible  <bruno@clisp.org>
30257
30258         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
30259         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
30260         gl_LOCK_BODY.
30261         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
30262         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
30263         gl_LOCK_EARLY_BODY.
30264         (gl_LOCK): Require gl_LOCK_BODY.
30265
30266 2006-10-04  Bruno Haible  <bruno@clisp.org>
30267
30268         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
30269         (gl_oset_search_atleast): New declaration.
30270         (struct gl_oset_implementation): Add field 'search_atleast'.
30271         (gl_oset_search_atleast): New inline function.
30272         * lib/gl_oset.c (gl_oset_search_atleast): New function.
30273         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
30274         (gl_array_oset_implementation): Update.
30275         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
30276         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
30277         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
30278
30279 2006-10-04  Bruno Haible  <bruno@clisp.org>
30280
30281         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
30282
30283 2006-10-03  Bruno Haible  <bruno@clisp.org>
30284
30285         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
30286         from gl_avltreehash_list_implementation.
30287
30288 2006-10-03  Bruno Haible  <bruno@clisp.org>
30289
30290         * lib/gl_oset.c (gl_oset_add): Fix return type.
30291
30292 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
30293
30294         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
30295
30296 2006-10-02  Eric Blake  <ebb9@byu.net>
30297
30298         * modules/strnlen (Depends-on): Add extensions.
30299
30300 2006-10-02  Eric Blake  <ebb9@byu.net>
30301
30302         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
30303         definition in 2.60+.
30304
30305 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
30306
30307         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
30308         checks.
30309
30310 2006-10-02  Bruno Haible  <bruno@clisp.org>
30311
30312         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
30313         to the AUTOMAKE_OPTIONS.
30314         Reported by Jim Meyering.
30315
30316 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
30317
30318         Work around bug in Solaris 10 /proc file system:
30319         /proc/self/fd/NNN/.. isn't the parent directory of
30320         the directory whose file descriptor is NNN.  This needs to
30321         be worked around at run time, not compile time, since a
30322         program might be built on Solaris 8, where things work, and
30323         run on Solaris 10.
30324         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
30325         to use the following interface instead:
30326         (OPENAT_BUFFER_SIZE): New macro.
30327         (openat_proc_name): New function.
30328         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
30329         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
30330         Likewise.
30331         * lib/openat-proc.c: New file.
30332         * modules/openat (Files): Add lib/openat-proc.c.
30333         (Depends-on): Add same-inode, stdbool.
30334         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
30335
30336 2006-09-29  Bruno Haible  <bruno@clisp.org>
30337
30338         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
30339         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
30340         argument. Set stdout_closed before testing for ferror, not after.
30341         (fwriteerror, fwriteerror_no_ebadf): New functions.
30342
30343 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30344
30345         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
30346
30347 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
30348
30349         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
30350         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
30351
30352 2006-09-28  Jim Meyering  <jim@meyering.net>
30353
30354         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
30355         Include <unistd.h>.
30356
30357 2006-09-28  Bruno Haible  <bruno@clisp.org>
30358
30359         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
30360         * modules/linkedhash-list (Depends-on): Likewise.
30361         * modules/rbtreehash-list (Depends-on): Likewise.
30362
30363 2006-09-28  Bruno Haible  <bruno@clisp.org>
30364
30365         * lib/strndup.h: Simplify the redefinition of strndup.
30366         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
30367         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
30368
30369 2006-09-28  Bruno Haible  <bruno@clisp.org>
30370
30371         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
30372         * lib/gl_linkedhash_list.c: Likewise.
30373         * lib/gl_rbtreehash_list.c: Likewise.
30374
30375 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
30376
30377         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
30378         getaddrinfo.
30379
30380         * lib/__fpending.h: Don't include <stdio_ext.h> unless
30381         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
30382         it causes <stdio_ext.h> to cause a compile-time error.
30383         Problem reported by Nelson H. F. Beebe.
30384         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
30385         of HAVE_DECL___PENDING.
30386
30387         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
30388         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
30389         declaration.
30390
30391 2006-09-27  Jim Meyering  <jim@meyering.net>
30392
30393         This file could end up with a definition for a function
30394         named __strndup, rather than rpl_strndup on a system with
30395         incomplete weak_alias support.
30396         * lib/strndup.c (strndup): Rename from __strndup.
30397         Remove #defines that used to map __strndup to strndup.
30398         Don't use K&R prototypes.
30399         Remove LIBC-related code, since this file is not sync'd with glibc.
30400         * lib/strndup.h: Revamp, accordingly.
30401         * m4/strndup.m4: Modernize.
30402
30403 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
30404
30405         * modules/savewd (Depends-on): Add 'raise'.
30406         * lib/savewd.c: Include <signal.h>, for 'raise'.
30407
30408 2006-09-26  Jim Meyering  <jim@meyering.net>
30409
30410         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
30411         when we detect Darwin 8.7.0's acl_get_file bug.
30412         Rearrange to perform the new (below) run-test while $LIBS
30413         contains any acl-related library.  Set USE_ACL at the end.
30414         (gl_ACL_GET_FILE): New function.
30415
30416 2006-09-26  Eric Blake  <ebb9@byu.net>
30417
30418         * lib/verror.c: Include <config.h> unconditionally.
30419
30420 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
30421
30422         * modules/clock-time (Maintainer): Add self.
30423         * modules/getlogin_r (Depends-on): Add extensions.
30424
30425 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30426
30427         * modules/clock-time: New module.
30428         * modules/nanosleep (Depends-on): Add clock-time.
30429         * modules/gethrxtime (Depends-on): Likewise.
30430         * modules/gettime (Depends-on): Likewise.
30431         * modules/settime (Depends-on): Likewise.
30432
30433         * modules/fts-lgpl: Depend on openat.
30434         * modules/mkancesdirs: Depend on savewd.
30435         * modules/mkdir-p: Likewise.
30436
30437 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30438
30439         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
30440
30441         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
30442         `gl_have_arbitrary_file_name_length_limit' to
30443         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
30444         actually works between configure runs.
30445
30446 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30447             Bruno Haible  <bruno@clisp.org>
30448
30449         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
30450
30451 2006-09-25  Jim Meyering  <jim@meyering.net>
30452
30453         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
30454         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
30455
30456 2006-09-25  Eric Blake  <ebb9@byu.net>
30457
30458         * gnulib-tool (func_import, func_create_testdir): Fix typos in
30459         exec's in 2006-09-18 patch when shuffling fds.
30460
30461 2006-09-25  Bruno Haible  <bruno@clisp.org>
30462
30463         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
30464         Reported by Jim Meyering.
30465
30466 2006-09-24  Jim Meyering  <jim@meyering.net>
30467
30468         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
30469         compare a pointer against a literal "0".  That caused failures with
30470         at least HP-UX's hpcc.
30471
30472 2006-09-22  Simon Josefsson  <jas@extundo.com>
30473
30474         * modules/gc-sha1:
30475         * modules/gc-md4:
30476         * modules/gc-hmac-sha1:
30477         * modules/gc-hmac-md5:
30478         * modules/gc-des:
30479         * modules/gc-arcfour: Distribute more files.
30480
30481 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30482
30483         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
30484         (gl_linked_iterator_from_to): Initialize struct completely.
30485         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
30486         (gl_tree_iterator_from_to): Likewise
30487         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
30488         * lib/gl_array_list.c [lint] (gl_array_iterator)
30489         (gl_array_iterator_from_to): Likewise.
30490         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
30491         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
30492         (gl_carray_iterator_from_to): Likewise.
30493
30494         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
30495         * lib/md4.c (md4_process_block): Remove unused variable.
30496         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
30497         parentheses for clarity.
30498
30499 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30500
30501         * modules/bison-i18n (Depends-on): Add gettext.
30502
30503 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30504
30505         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
30506         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
30507         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
30508         also add missing comma that caused broken test.
30509         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
30510         stdlib.h, for `abort'.
30511         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
30512         variables.
30513         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
30514         include unistd.h if present, for `rmdir'.
30515         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
30516         variables.
30517         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
30518         in the process include standard headers for prototypes.
30519         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
30520         gets declared on GNU/Linux.
30521         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
30522         unistd.h, for `rmdir'.
30523         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
30524
30525         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
30526         always true.
30527         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
30528
30529         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
30530
30531 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30532
30533         * gnulib-tool (func_version): Create output all at once.  This
30534         may help avoid triggering unnecessary SIGPIPEs, and at any
30535         rate it doesn't hurt.
30536
30537 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30538             Bruno Haible  <bruno@clisp.org>
30539
30540         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
30541         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
30542         * m4/signed.m4 (bh_C_SIGNED): Likewise.
30543
30544         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
30545         (gl_FUNC_VASPRINTF): Invoke it.
30546
30547 2006-09-22  Bruno Haible  <bruno@clisp.org>
30548
30549         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
30550         getloadavg.c as first argument.
30551
30552 2006-09-22  Bruno Haible  <bruno@clisp.org>
30553
30554         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
30555         at the beginning of the gl_INIT macro.
30556         * modules/getloadavg (configure.ac): Pass $gl_source_base to
30557         gl_GETLOADAVG.
30558
30559 2006-09-22  Bruno Haible  <bruno@clisp.org>
30560
30561         * gnulib-tool (func_create_megatestdir): Don't include the config-h
30562         module.
30563         Suggested by Ralf Wildenhues.
30564
30565 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
30566
30567         Import this patch from libc:
30568
30569         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
30570
30571         * lib/regex_internal.c (re_string_reconstruct): Handle
30572         offset < pstr->valid_raw_len && pstr->offsets_needed case.
30573         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
30574         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
30575         re_string_context_at.
30576
30577         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
30578         now requires it.
30579         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
30580         gl_REGEX now does it for us.
30581         (gl_REGEX): Add test taken from
30582         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
30583
30584         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
30585         Check that large offsets work.  Modernize Autoconf usages.
30586         Prefer "yes" to mean a good thing rather than a bad.
30587         Don't put "#define mkstemp" in config.h, as this might interfere
30588         with standard system headers that "#define mkstemp mkstemp64".
30589
30590         * modules/mkstemp (Depends-on): Add extensions, so that
30591         mkstemp is visible on some platforms.
30592         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
30593         (Include): Change to "mkstemp.h" from <stdlib.h>.
30594         (Files): Add mkstemp.h.
30595
30596         * lib/mkstemp.h: New file, since some standard headers
30597         #define mkstemp.
30598         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
30599         Include "mkstemp.h".
30600         Make the _LIBC code resemble glibc original more,
30601         e.g., use K&R style.
30602         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
30603         (mkstemp): Remove, since mkstemp.h does this for us.
30604         * lib/stdlib--.h: Include mkstemp.h.
30605
30606         Import this patch from libc:
30607
30608         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
30609
30610         * lib/tempname.c (__gen_tempname): Change attempts_min
30611         into a macro.  Use preprocessor to decide how to initialize
30612         attempts [Coverity CID 67].
30613
30614 2006-09-20  Bruno Haible  <bruno@clisp.org>
30615
30616         * lib/mkdtemp.c: Import from libc.
30617         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
30618                 * sysdeps/posix/tempname.c (__gen_tempname): Change
30619                 attempts_min into a macro.  Use preprocessor to decide how to
30620                 initialize attempts [Coverity CID 67].
30621         2001-11-27  Paul Eggert  <eggert@twinsun.com>
30622                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
30623                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
30624
30625 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30626
30627         * gnulib-tool (func_exit): New function, to allow to pass the
30628         exit status portably through the trap.  Use everywhere.
30629         (--help, --version): Signal a write error.
30630         (trap): catch SIGPIPE, for write errors.
30631         Exit at the end of the trap, with the correct exit status.
30632
30633 2006-09-19  Karl Berry  <karl@gnu.org>
30634
30635         * doc/gnulib.texi: note about the license texinfo files.
30636
30637 2006-09-19  Eric Blake  <ebb9@byu.net>
30638
30639         * gnulib-tool: Avoid space-tab.
30640
30641 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
30642
30643         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
30644         that prevented coreutils 6.1 from building.  Problem reported
30645         by Petter Reinholdtsen.
30646
30647 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
30648
30649         * gnulib-tool (avoidlist): Fix typo that broke options like
30650         --avoid=lock that are used by coreutils bootstrap.
30651
30652 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
30653
30654         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
30655         more systematically.
30656
30657 2006-09-18  Jim Meyering  <jim@meyering.net>
30658
30659         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
30660
30661 2006-09-18  Bruno Haible  <bruno@clisp.org>
30662
30663         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
30664
30665 2006-09-18  Bruno Haible  <bruno@clisp.org>
30666
30667         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
30668         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
30669         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
30670         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
30671         * m4/gettext.m4: Require autoconf >= 2.52.
30672         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
30673         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
30674         of gl_cv_header_inttypes_h.
30675
30676 2006-09-18  Bruno Haible  <bruno@clisp.org>
30677
30678         * lib/javaversion.c: Include configmake.h.
30679
30680 2006-09-18  Bruno Haible  <bruno@clisp.org>
30681
30682         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
30683         avoid that the while loops be executed in a subshell.
30684
30685 2006-09-18  Bruno Haible  <bruno@clisp.org>
30686
30687         * MODULES.html.sh (func_module): Break long lines.
30688         Suggested by Bruce Korb <bkorb@gnu.org>.
30689
30690 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30691
30692         Speed up by a factor of 1.12.
30693         * gnulib-tool (nl): New variable.
30694         (func_import): Rewrite include directive extraction to only read each
30695         directive once.
30696
30697 2006-09-17  Bruno Haible  <bruno@clisp.org>
30698
30699         * modules/javaversion (Makefile.am): Remove DEFS setting.
30700         (Depends-on): Add configmake, for PKGDATADIR definition.
30701
30702 2006-09-17  Bruno Haible  <bruno@clisp.org>
30703
30704         * gnulib-tool (func_create_testdir): Rewrite all files at once.
30705
30706 2006-09-17  Bruno Haible  <bruno@clisp.org>
30707
30708         * gnulib-tool (func_append): New function, stolen from libtool.m4.
30709         (func_modules_transitive_closure, func_modules_add_dummy,
30710         func_modules_to_filelist, func_import, func_create_testdir,
30711         func_create_megatestdir, ...): Use it wherever possible.
30712         Suggested by Ralf Wildenhues.
30713
30714 2006-09-16  Karl Berry  <karl@gnu.org>
30715
30716         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
30717         to avoid sectioning errors.
30718         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
30719         [ifinfo]: blank line after @center-ed titles.
30720         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
30721         Spell FSF address consistently with others.
30722         (These changes approved by rms.)
30723
30724 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30725
30726         Speed up by a factor of 1.61.
30727         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
30728         already checked module names again.
30729
30730 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30731
30732         Speed up by a factor of 1.13.
30733         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
30734         for new_files, and the input to func_add_or_update.
30735
30736 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30737
30738         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
30739         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
30740
30741 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30742
30743         * modules/mkancesdirs (Depends-on): Add fcntl.
30744         * modules/savewd: New file.
30745         * MODULES.html.sh (File system functions): Add savewd.
30746
30747         * modules/configmake (Makefile.am): Add support for the
30748         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
30749
30750 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30751
30752         * m4/savewd.m4: New file.
30753
30754 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30755
30756         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
30757         (dirchownmod): New arg FD.  All callers changed.
30758         Use FD rather than opening the directory ourself, as opening is
30759         now the caller's responsibility.
30760         * lib/dirchownmod.h: Likewise.
30761         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
30762         hosts that require <sys/types.h> before <sys/stat.h>.  Include
30763         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
30764         (test_dir): Remove.
30765         (mkancesdirs): Return length of prefix of FILE that has already
30766         been made, or -2 if there is a child doing the work.  Redo
30767         algorithm so that it is O(N) rather than O(N**2).  Optimize away
30768         ".", and treat ".." specially since it might stray back into
30769         already-created areas.  Use a subprocess if necessary.  New arg
30770         WD; all users changed.  MAKE_DIR function should now return 1
30771         if it creates a directory that is not readable.  Return -2 if
30772         a child process is spun off.
30773         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
30774         Adjust signature to match code.
30775         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
30776         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
30777         all users changed.
30778         * lib/savewd.c, lib/savewd.h: New files.
30779
30780 2006-09-15  Jim Meyering  <jim@meyering.net>
30781
30782         * modules/rename-dest-slash: New module.
30783         * MODULES.html.sh (posix_compat): Add it here.
30784
30785         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
30786
30787 2006-09-15  Jim Meyering  <jim@meyering.net>
30788
30789         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
30790         file.
30791
30792         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
30793
30794 2006-09-15  Jim Meyering  <jim@meyering.net>
30795
30796         * lib/rename-dest-slash.c (has_trailing_slash): Use
30797         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
30798         (rpl_rename_dest_slash): Perform the cheaper trailing slash
30799         test before testing whether SRC is a directory.
30800         Suggestions from Bruno Haible.
30801
30802         Avoid a warning about an unused variable.
30803         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
30804         into the #ifdef block where it's used.
30805
30806         * lib/rename-dest-slash.c: New file.
30807
30808 2006-09-14  Bruno Haible  <bruno@clisp.org>
30809
30810         * lib/allocsa.c: Include <config.h> unconditionally.
30811         * lib/asnprintf.c: Likewise.
30812         * lib/asprintf.c: Likewise.
30813         * lib/c-strcasecmp.c: Likewise.
30814         * lib/c-strcasestr.c: Likewise.
30815         * lib/c-strncasecmp.c: Likewise.
30816         * lib/c-strstr.c: Likewise.
30817         * lib/classpath.c: Likewise.
30818         * lib/clean-temp.c: Likewise.
30819         * lib/concatpath.c: Likewise.
30820         * lib/copy-file.c: Likewise.
30821         * lib/csharpcomp.c: Likewise.
30822         * lib/csharpexec.c: Likewise.
30823         * lib/execute.c: Likewise.
30824         * lib/fatal-signal.c: Likewise.
30825         * lib/findprog.c: Likewise.
30826         * lib/fwriteerror.c: Likewise.
30827         * lib/gl_array_list.c: Likewise.
30828         * lib/gl_array_oset.c: Likewise.
30829         * lib/gl_avltree_list.c: Likewise.
30830         * lib/gl_avltree_oset.c: Likewise.
30831         * lib/gl_avltreehash_list.c: Likewise.
30832         * lib/gl_carray_list.c: Likewise.
30833         * lib/gl_linked_list.c: Likewise.
30834         * lib/gl_linkedhash_list.c: Likewise.
30835         * lib/gl_list.c: Likewise.
30836         * lib/gl_oset.c: Likewise.
30837         * lib/gl_rbtree_list.c: Likewise.
30838         * lib/gl_rbtree_oset.c: Likewise.
30839         * lib/gl_rbtreehash_list.c: Likewise.
30840         * lib/imaxabs.c: Likewise.
30841         * lib/imaxdiv.c: Likewise.
30842         * lib/javacomp.c: Likewise.
30843         * lib/javaexec.c: Likewise.
30844         * lib/javaversion.c: Likewise.
30845         * lib/linebreak.c: Likewise.
30846         * lib/localcharset.c: Likewise.
30847         * lib/lock.c: Likewise.
30848         * lib/mbchar.c: Likewise.
30849         * lib/mbswidth.c: Likewise.
30850         * lib/mkdtemp.c: Likewise.
30851         * lib/pipe.c: Likewise.
30852         * lib/printf-args.c: Likewise.
30853         * lib/printf-parse.c: Likewise.
30854         * lib/progname.c: Likewise.
30855         * lib/progreloc.c: Likewise.
30856         * lib/readlink.c: Likewise.
30857         * lib/sh-quote.c: Likewise.
30858         * lib/stpcpy.c: Likewise.
30859         * lib/stpncpy.c: Likewise.
30860         * lib/strcasecmp.c: Likewise.
30861         * lib/strcasestr.c: Likewise.
30862         * lib/strcspn.c: Likewise.
30863         * lib/striconv.c: Likewise.
30864         * lib/strncasecmp.c: Likewise.
30865         * lib/strnlen1.c: Likewise.
30866         * lib/strstr.c: Likewise.
30867         * lib/strtok_r.c: Likewise.
30868         * lib/tls.c: Likewise.
30869         * lib/tmpdir.c: Likewise.
30870         * lib/unicodeio.c: Likewise.
30871         * lib/unsetenv.c: Likewise.
30872         * lib/vasnprintf.c: Likewise.
30873         * lib/vasprintf.c: Likewise.
30874         * lib/wait-process.c: Likewise.
30875         * lib/xallocsa.c: Likewise.
30876         * lib/xsetenv.c: Likewise.
30877         * lib/xstriconv.c: Likewise.
30878
30879 2006-09-13  Simon Josefsson  <jas@extundo.com>
30880
30881         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
30882         that internally, suggested by Ralf Wildenhues
30883         <Ralf.Wildenhues@gmx.de>.
30884
30885 2006-09-13  Simon Josefsson  <jas@extundo.com>
30886
30887         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
30888         @LIBOBJS@.
30889         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30890
30891 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
30892
30893         * lib/_fpending.c: Include <config.h> unconditionally, since we no
30894         longer worry about uses that don't define HAVE_CONFIG_H.
30895         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
30896         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
30897         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
30898         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
30899         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
30900         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
30901         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
30902         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
30903         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
30904         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
30905         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
30906         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
30907         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
30908         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
30909         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
30910         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
30911         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
30912         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
30913         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
30914         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
30915         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
30916         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
30917         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
30918         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
30919         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
30920         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
30921         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
30922         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
30923         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
30924         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
30925         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
30926         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
30927         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
30928         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
30929         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
30930         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
30931         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
30932         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
30933         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
30934         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
30935         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
30936         Likewise.
30937
30938 2006-09-13  Eric Blake  <ebb9@byu.net>
30939
30940         * lib/getopt.c: Fix typo in last commit.
30941
30942 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
30943
30944         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
30945         dgettext.
30946
30947 2006-09-12  Jim Meyering  <jim@meyering.net>
30948
30949         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
30950         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
30951         Reported by Nelson H. F. Beebe.
30952
30953 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
30954
30955         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
30956         program_invocation_name and program_invocation_short_name are
30957         initialized.
30958         * lib/argp-namefrob.h: Move declarations of program_invocation_name
30959         and program_invocation_short_name to argp.h, so they are visible
30960         to user programs.
30961         * lib/argp.h: Likewise
30962
30963 2006-09-10  Bruno Haible  <bruno@clisp.org>
30964
30965         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
30966         m4/inttypes_h.m4, m4/uintmax_t.m4.
30967
30968 2006-09-10  Bruno Haible  <bruno@clisp.org>
30969
30970         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
30971         gl_AC_TYPE_UINTMAX_T.
30972
30973 2006-09-10  Bruno Haible  <bruno@clisp.org>
30974
30975         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
30976
30977 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30978
30979         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
30980         convention.  Text proposed by Bruno Haible.
30981         (struct argp_option): Document the use of N_() wrappers.
30982
30983         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
30984         '\v', and translate the two parts separately, instead of feeding
30985         the whole string to gettext.  This allows to exclude
30986         '\v' from the strings visible to the translator by writing doc
30987         strings as N_("..") "\v" N_("..").
30988
30989 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
30990
30991         * config/srclist.txt: Undo latest change; the bug was fixed.
30992
30993 2006-09-09  Bruno Haible  <bruno@clisp.org>
30994
30995         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
30996         assignments if building a library without libtool.
30997         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
30998         in func_emit_lib_Makefile_am.
30999         (func_import): When building a static library libfoo.a, arrange to
31000         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
31001         (func_create_testdir): Likewise.
31002         * modules/gc (configure.ac, Makefile.am): If building statically,
31003         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
31004         * modules/iconvme (configure.ac, Makefile.am): Likewise.
31005         * modules/striconv (configure.ac, Makefile.am): Likewise.
31006         Based on a suggestion by Ralf Wildenhues.
31007
31008 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
31009
31010         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
31011         Check for unistd.h too, since Autoconf doesn't assume POSIX.
31012         Also:
31013
31014         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
31015         Add year_2050_test to catch glibc bug 2821
31016         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
31017
31018         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
31019         Prefer #ifdef to #if.
31020
31021         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
31022         Return from 'main' instead of calling 'exit'.
31023
31024 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
31025
31026         * lib/mktime.c (guess_time_tm): Fix bug where mktime
31027         returned the maximum time_t value rather than (time_t) -1.
31028         Problem originally reported by William Bardwell
31029         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
31030
31031         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
31032         Moved to here ...
31033         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
31034         ... from here.
31035
31036 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
31037
31038         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
31039         2821 is fixed.
31040
31041 2006-09-08  Jim Meyering  <jim@meyering.net>
31042
31043         Don't make generated files read-only.  That would bother too many
31044         people.  However, do retain the ability to work when targets are
31045         read-only: remove the destination and temporary files before writing
31046         them (when generated via sed or echo), or by using the -f option for
31047         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
31048         * modules/alloca-opt, modules/argz, modules/arpa_inet:
31049         * modules/byteswap, modules/configmake, modules/fcntl:
31050         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
31051         * modules/localcharset, modules/netinet_in, modules/poll:
31052         * modules/stdbool, modules/stdint, modules/sys_select:
31053         * modules/sys_socket, modules/sys_stat, modules/sysexits:
31054
31055 2006-09-08  Jim Meyering  <jim@meyering.net>
31056
31057         Avoid new build failure on FreeBSD 6.0.
31058         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
31059         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
31060         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
31061
31062 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31063
31064         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
31065
31066 2006-09-07  Jim Meyering  <jim@meyering.net>
31067
31068         Fix global typo in last change: use chmod u-w, not chmod u-x.
31069         Spotted by Paul Eggert and Bruce Korb.
31070         * modules/alloca-opt, modules/argz, modules/arpa_inet:
31071         * modules/byteswap, modules/configmake, modules/fcntl:
31072         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
31073         * modules/localcharset, modules/netinet_in, modules/poll:
31074         * modules/stdbool, modules/stdint, modules/sys_select:
31075         * modules/sys_socket, modules/sys_stat, modules/sysexits:
31076
31077 2006-09-06  Jim Meyering  <jim@meyering.net>
31078
31079         Make generated files be read-only.
31080         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
31081         Ensure that each generated file is now read-only.
31082         * modules/argz: Likewise.
31083         * modules/arpa_inet: Likewise.
31084         * modules/byteswap: Likewise.
31085         * modules/configmake: Likewise.
31086         * modules/fcntl: Likewise.
31087         * modules/fnmatch: Likewise.
31088         * modules/getopt: Likewise.
31089         * modules/glob: Likewise.
31090         * modules/inttypes: Likewise.
31091         * modules/netinet_in: Likewise.
31092         * modules/poll: Likewise.
31093         * modules/stdbool: Likewise.
31094         * modules/stdint: Likewise.
31095         * modules/sys_select: Likewise.
31096         * modules/sys_socket: Likewise.
31097         * modules/sys_stat: Likewise.
31098         * modules/sysexits: Likewise.
31099         * modules/localcharset: Same as above, but continue using temporary
31100         file named "t-$@" (why different?) rather than the "$@-t" used
31101         everywhere else.
31102
31103         * modules/sysexits (Makefile.am): Replace literal occurrences
31104         of "sysexit.h" more readable, and more consistent, "$@".
31105
31106 2006-09-06  Bruno Haible  <bruno@clisp.org>
31107
31108         * modules/striconv: New file.
31109         * modules/xstriconv: New file.
31110         * MODULES.html.sh (Internationalization functions): Add striconv,
31111         xstriconv.
31112
31113 2006-09-06  Bruno Haible  <bruno@clisp.org>
31114
31115         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
31116         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
31117         not using libtool correctly.
31118
31119 2006-09-06  Bruno Haible  <bruno@clisp.org>
31120
31121         * lib/striconv.h: New file.
31122         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
31123         iconvstring.c.
31124         * lib/xstriconv.h: New file.
31125         * lib/xstriconv.c: New file.
31126
31127 2006-09-06  Bruno Haible  <bruno@clisp.org>
31128
31129         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
31130         lib_..._LDFLAGS.
31131
31132 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31133
31134         * lib/argz_.h: Sync from Libtool.
31135
31136         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
31137                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
31138
31139         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
31140
31141 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
31142
31143         * modules/trim: New file.
31144
31145 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
31146
31147         * lib/trim.h: New file.
31148         * lib/trim.c: New file.
31149
31150 2006-09-05  Bruno Haible  <bruno@clisp.org>
31151
31152         * MODULES.html.sh (String handling): Add trim.
31153
31154 2006-09-04  Karl Berry  <karl@gnu.org>
31155
31156         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
31157         until next release.
31158
31159 2006-09-03  Bruno Haible  <bruno@clisp.org>
31160
31161         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
31162         correctly.
31163
31164 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
31165
31166         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
31167         not gl_GETLOADAVG.  Omit unneeded semicolons.
31168         Problems reported by Ralf Wildenhues in
31169         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
31170         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
31171         at the end, which is the usual gnulib style.
31172
31173         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
31174         of doing all the work ourselves.
31175         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
31176         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
31177
31178 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
31179
31180         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
31181         Problem reported by Ralf Wildenhues in
31182         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
31183
31184         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
31185         HAVE_STRUCT_STATFS_F_FSTYPENAME.
31186
31187 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
31188
31189         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
31190         yesterday's patch by changing test -n to test -z.
31191
31192 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31193
31194         * modules/getloadavg (Files): Add m4/getloadavg.m4.
31195         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
31196         the former is now obsolescent.
31197
31198         * modules/chdir-long (Depends-on): Add fcntl.
31199
31200 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31201
31202         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
31203         obsolescent, and programs should use gnulib instead.
31204         * m4/getloadavg.m4: New file, with contents taken from Autoconf
31205         but with prefixes changed.
31206
31207 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31208
31209         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
31210         or stdbool.h, because they might not exist while configuring.
31211
31212         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
31213         Don't include unistd.h or limits.h; not needed, since chdir-long.h
31214         does that for us.
31215         (O_DIRECTORY): Remove.
31216
31217 2006-08-31  Eric Blake  <ebb9@byu.net>
31218
31219         * gnulib-tool: Don't let emacs change spaces to TAB.
31220
31221 2006-08-31  Bruno Haible  <bruno@clisp.org>
31222
31223         * gnulib-tool: When calling func_import more than once, do it in a
31224         subshell.
31225         Reported by Eric Blake <ebb9@byu.net>.
31226
31227 2006-08-31  Bruno Haible  <bruno@clisp.org>
31228
31229         * gnulib-tool (nl): Remove variable.
31230         (sed_transform_lib_file): Use more robust test for config-h module.
31231         (func_import): Fix typo in 2006-08-25 patch.
31232
31233 2006-08-31  Bruno Haible  <bruno@clisp.org>
31234
31235         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
31236         specified, augment Makefile.am variables instead of assigning them.
31237
31238 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31239
31240         Work around a bug in both the Linux and SunOS 64-bit kernels:
31241         nanosleep mishandles sleeps for longer than 2**31 seconds.
31242         Problem reported by Frank v Waveren in
31243         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
31244         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
31245         Check for nanosleep bug.
31246         (LIB_NANOSLEEP): Append clock_gettime library if needed.
31247
31248 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31249
31250         Work around a bug in both the Linux and SunOS 64-bit kernels:
31251         nanosleep mishandles sleeps for longer than 2**31 seconds.
31252         Problem reported by Frank v Waveren in
31253         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
31254         * lib/nanosleep.c (BILLION): New constant.
31255         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
31256         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
31257         implementation.
31258
31259 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31260
31261         * modules/nanosleep (Depends-on): Add gettime.
31262
31263 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31264         and Simon Josefsson  <jas@extundo.com>
31265         and Oskar Liljeblad  <oskar@osk.mine.nu>
31266
31267         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
31268         * gnulib-tool (func_import): New license type 'unmodifiable license
31269         text'.
31270         * modules/fdl: Use it.  Longer description.
31271         * module/gpl, module/lgpl: New files.
31272
31273 2006-08-30  Jim Meyering  <jim@meyering.net>
31274
31275         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
31276         shadowing the parameter.
31277
31278 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31279
31280         Sync from Libtool:
31281
31282         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31283
31284         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
31285         sharing with gnulib.  Report by Eric Blake.
31286
31287 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31288
31289         * modules/isapipe: New file.
31290         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
31291
31292 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31293
31294         * modules/configmake (Makefile.am): Add a comment, and omit
31295         the CONFIGMAKE_ prefix from generated macro names.  Suggested
31296         by Bruno Haible.
31297
31298 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31299
31300         * m4/isapipe.m4: New file.
31301
31302 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31303
31304         * lib/isapipe.c, lib/isapipe.h: New files.
31305
31306 2006-08-29  Jim Meyering  <jim@meyering.net>
31307
31308         * modules/configmake (Makefile.am): Make configmake.h depend on
31309         Makefile.  Otherwise, a stale configmake.h could hang around.
31310
31311 2006-08-29  Eric Blake  <ebb9@byu.net>
31312
31313         * lib/error.c (error_at_line, print_errno_message): Match libc, after
31314         resolution of upstream bug 3044.
31315
31316 2006-08-29  Bruno Haible  <bruno@clisp.org>
31317
31318         * modules/localcharset (Depends-on): Add configmake.
31319         (Makefile.am): Remove setting of LIBDIR through DEFS.
31320
31321 2006-08-29  Bruno Haible  <bruno@clisp.org>
31322
31323         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
31324         defined.
31325
31326 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31327
31328         * modules/fcntl: New file.
31329         * modules/chdir-safer (Depends-on): Add fcntl.
31330         * modules/fts: Likewise.
31331         * modules/mkdir-p: Likewise.
31332
31333         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
31334         This undoes the most recent change, since we're now addressing the
31335         problem in a different way.
31336
31337         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
31338         into output, since the output might be called Makefile.am even
31339         if $makefile_name is something different.
31340         (func_import): Use $makefile_am rather than
31341         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
31342         empty.
31343
31344         * modules/inttypes (Files): Add m4/inttypes-h.m4.
31345
31346 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31347
31348         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
31349         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
31350         recent change to stdint.m4, since we're now addressing the problem in a
31351         different way.
31352
31353 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31354
31355         * m4/fcntl_h.m4: New file.
31356
31357 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31358
31359         * lib/fcntl_.h: New file.
31360         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
31361         the fcntl module.
31362         * lib/dirchownmod.c: Likewise.
31363         * lib/fts.c: Likewise.
31364
31365         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
31366         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
31367         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
31368         just before including <inttypes.h>, to avoid circular inclusion.
31369
31370 2006-08-28  Jim Meyering  <jim@meyering.net>
31371
31372         * doc/visibility.texi: Actually read and correct the grammar of the
31373         sentence affected by yesterday's change.
31374
31375 2006-08-28  Eric Blake  <ebb9@byu.net>
31376
31377         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
31378         needs wrapper.
31379
31380 2006-08-28  Eric Blake  <ebb9@byu.net>
31381
31382         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
31383
31384 2006-08-28  Eric Blake  <ebb9@byu.net>
31385
31386         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
31387
31388 2006-08-28  Bruno Haible  <bruno@clisp.org>
31389
31390         * modules/c-strstr: New file, from GNU gettext.
31391         * MODULES.html.sh (String handling): Add c-strstr.
31392
31393 2006-08-28  Bruno Haible  <bruno@clisp.org>
31394
31395         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
31396         macros.
31397         Reported by Eric Blake.
31398
31399 2006-08-28  Bruno Haible  <bruno@clisp.org>
31400
31401         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
31402         (VASNPRINTF): Return a string of length > INT_MAX without failing.
31403         * lib/vasprintf.c: Include errno.h, limits.h.
31404         (EOVERFLOW): New fallback definition.
31405         (vasprintf): Test here whether the string length is > INT_MAX.
31406         * lib/vsnprintf.c: Include errno.h, limits.h.
31407         (EOVERFLOW): New fallback definition.
31408         (vsnprintf): Fix bug when generated string was too long for the buffer.
31409         Test here whether the string length is > INT_MAX.
31410
31411 2006-08-28  Bruno Haible  <bruno@clisp.org>
31412
31413         * lib/inttypes_.h (SCNX*): Remove definitions.
31414         Reported by Eric Blake.
31415
31416 2006-08-28  Bruno Haible  <bruno@clisp.org>
31417
31418         * lib/c-strstr.h: New file, from GNU gettext.
31419         * lib/c-strstr.c: New file, from GNU gettext.
31420
31421 2006-08-28  Bruno Haible  <bruno@clisp.org>
31422
31423         * gnulib-tool: Reorder some statements.
31424
31425 2006-08-28  Bruno Haible  <bruno@clisp.org>
31426
31427         * gnulib-tool: New option --makefile-name.
31428         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
31429         $makefile_name.
31430         (func_import): Write $makefile_name to the cache file, and read it from
31431         there unless explicitly specified. Use $makefile_name as file name
31432         instead of Makefile.am. Adjust the recommendations accordingly.
31433
31434 2006-08-28  Bruno Haible  <bruno@clisp.org>
31435
31436         * gnulib-tool (func_verify_module): Check against misapplying patch.
31437
31438 2006-08-28  Bruno Haible  <bruno@clisp.org>
31439
31440         * gnulib-tool (func_relativize, func_relconcat): New functions.
31441         Give an error if --local-dir is given with --update.
31442         Remove trailing slashes from $local_gnulib_dir.
31443         (func_import): Store the relativized $local_gnulib_dir in
31444         gnulib-cache.m4, and read it from there if not specified explicitly.
31445
31446 2006-08-28  Bruno Haible  <bruno@clisp.org>
31447
31448         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
31449         is the current directory. Respect also $local_gnulib_dir.
31450
31451 2006-08-28  Bruno Haible  <bruno@clisp.org>
31452             Simon Josefsson  <jas@extundo.com>
31453
31454         BeOS portability.
31455         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
31456
31457 2006-08-27  Jim Meyering  <jim@meyering.net>
31458
31459         * doc/visibility.texi: Remove duplicate word: "pointer".
31460
31461 2006-08-26  Bruno Haible  <bruno@clisp.org>
31462
31463         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
31464         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
31465         (Makefile.am): Create inttypes.h from inttypes_.h.
31466         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
31467
31468         * modules/imaxabs: New file.
31469
31470         * modules/imaxdiv: New file.
31471
31472 2006-08-26  Bruno Haible  <bruno@clisp.org>
31473
31474         * m4/inttypes.m4: New file.
31475         * m4/_inttypes_h.m4: Remove file.
31476         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
31477         PRI_MACROS_BROKEN.
31478         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
31479
31480         * m4/imaxabs.m4: New file.
31481
31482         * m4/imaxdiv.m4: New file.
31483
31484 2006-08-26  Bruno Haible  <bruno@clisp.org>
31485
31486         * lib/inttypes_.h: New file.
31487         * lib/inttypes.h: Remove file.
31488         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
31489
31490         * lib/imaxabs.c: New file.
31491
31492         * lib/imaxdiv.c: New file.
31493
31494 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
31495
31496         New config-h module, so that "make" output needn't be cluttered
31497         by -DHAVE_CONFIG_H.
31498         * MODULES.html.sh (Support for building libraries and executables):
31499         Add config-h.
31500         * modules/config-h: New file.
31501         * gnulib-tool (nl, sed_transform_lib_file): New vars.
31502         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
31503         the config-h module is used.
31504
31505         New configmake module, so that "make" output needn't be cluttered
31506         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
31507         * MODULES.html.sh (Support for building libraries and executables):
31508         Add configmake.
31509         * modules/configmake: New file.
31510
31511 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
31512
31513         * m4/config-h.m4: New file.
31514
31515 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
31516
31517         * config/srclist.txt: Add elisp-comp.
31518
31519 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
31520
31521         * MODULES.html.sh (Support for building libraries and executables):
31522         Add elisp-comp.
31523         * build-aux/elisp-comp: New file.
31524         * modules/elisp-comp: New file.
31525
31526 2006-08-24  Bruno Haible  <bruno@clisp.org>
31527
31528         * gnulib-tool (func_create_testdir): Use non-default values of
31529         sourcebase and m4base.
31530
31531 2006-08-24  Bruno Haible  <bruno@clisp.org>
31532
31533         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
31534         HTML structure.
31535
31536 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
31537
31538         * modules/openat (Depends-on): Add lchown.
31539
31540 2006-08-23  Bruno Haible  <bruno@clisp.org>
31541
31542         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
31543         of gl_LOCK_EARLY instead of gl_LOCK.
31544
31545 2006-08-23  Bruno Haible  <bruno@clisp.org>
31546
31547         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
31548         on OSF/1 to no.
31549         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
31550
31551 2006-08-23  Bruno Haible  <bruno@clisp.org>
31552
31553         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
31554         as unusable.
31555
31556         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
31557         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
31558         (gl_LOCK): New macro.
31559
31560 2006-08-22  Simon Josefsson  <jas@extundo.com>
31561
31562         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
31563         to md5 module.
31564
31565 2006-08-22  Simon Josefsson  <jas@extundo.com>
31566
31567         * MODULES.html.sh: Add "Support for maintaining and release
31568         projects".
31569
31570         * build-aux/gnupload: New file, from coreutils.
31571
31572 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31573
31574         Avoid the need for AC_LIBSOURCES in m4 macros.
31575         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
31576         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
31577         * modules/check-version (EXTRA_DIST): Add check-version.h.
31578         * modules/crc (EXTRA_DIST): Add crc.h.
31579         * modules/des (EXTRA_DIST): Add des.h.
31580         * modules/gc (EXTRA_DIST): Add gc.h.
31581         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
31582         * modules/getline (EXTRA_DIST): Add getline.h.
31583         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
31584         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
31585         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
31586         * modules/md2 (EXTRA_DIST): Add md2.h.
31587         * modules/md4 (EXTRA_DIST): Add md4.h.
31588         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
31589         * modules/read-file (EXTRA_DIST): Add read-file.h.
31590         * modules/readline (EXTRA_DIST): Add readline.h.
31591         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
31592         rijndael-api-fst.h.
31593
31594 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31595
31596         * m4/rijndael.m4 (gl_ARCFOUR):
31597         * m4/arctwo.m4 (gl_ARCTWO):
31598         * m4/check-version.m4 (gl_CHECK_VERSION):
31599         * m4/crc.m4 (gl_CRC):
31600         * m4/des.m4 (gl_DES):
31601         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
31602         * m4/gc.m4 (gl_GC):
31603         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
31604         * m4/getline.m4 (gl_FUNC_GETLINE):
31605         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
31606         * m4/hmac-md5.m4 (gl_HMAC_MD5):
31607         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
31608         * m4/md2.m4 (gl_MD2):
31609         * m4/md4.m4 (gl_MD4):
31610         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
31611         * m4/read-file.m4 (gl_FUNC_READ_FILE):
31612         * m4/readline.m4 (gl_FUNC_READLINE):
31613         * m4/rijndael.m4 (gl_RIJNDAEL):
31614         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
31615         to get the necessary .h files and whatnot.
31616
31617 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31618
31619         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
31620         gnulib rather than the other way around.
31621         * config/srclistvars.sh (COREUTILS): Remove.
31622
31623 2006-08-22  Jim Meyering  <jim@meyering.net>
31624
31625         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
31626
31627         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
31628
31629 2006-08-22  Eric Blake  <ebb9@byu.net>
31630
31631         * modules/regexprops-generic: New file.
31632         * MODULES.html.sh (Support for building documentation): List it.
31633
31634 2006-08-22  Eric Blake  <ebb9@byu.net>
31635
31636         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
31637         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
31638         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
31639         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
31640
31641 2006-08-22  Bruno Haible  <bruno@clisp.org>
31642
31643         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
31644         and lib_LTLIBRARIES like the other lib_* variables.
31645
31646 2006-08-22  Bruno Haible  <bruno@clisp.org>
31647
31648         * build-aux/x-to-1.in: New file, from GNU gettext.
31649
31650 2006-08-22  Bruno Haible  <bruno@clisp.org>
31651
31652         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
31653         <utmpx.h> exists.
31654
31655 2006-08-22  Bruno Haible  <bruno@clisp.org>
31656
31657         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
31658         <utmpx.h> exists.
31659
31660 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31661
31662         BeOS portability.
31663         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
31664         exist.
31665         Problem reported by Bruno Haible.
31666
31667 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31668
31669         Avoid the need for AC_LIBSOURCES in m4 macros.
31670         * modules/acl (EXTRA_DIST): Add acl.h.
31671         * modules/argmatch (Files): Add m4/argmatch.m4.
31672         (configure.ac): Add gl_ARGMATCH.
31673         (EXTRA_DIST): Renamed from lib_SOURCES, for
31674         consistency with the other modules.  Remove argmatch.c.
31675         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
31676         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
31677         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
31678         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
31679         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
31680         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
31681         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
31682         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
31683         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
31684         * modules/closeout (EXTRA_DIST): Add closeout.h.
31685         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
31686         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
31687         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
31688         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
31689         dirname.h; remove basename.c and stripslash.c.
31690         * modules/exclude (EXTRA_DIST): Add exclude.h.
31691         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
31692         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
31693         * modules/file-type (EXTRA_DIST): Add file-type.h.
31694         * modules/filemode (EXTRA_DIST): Add filemode.h.
31695         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
31696         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
31697         * modules/fpending (EXTRA_DIST): Add __fpending.h.
31698         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
31699         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
31700         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
31701         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
31702         * modules/getdate (EXTRA_DIST): Add getdate.c.
31703         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
31704         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
31705         * modules/getpass (EXTRA_DIST): Add getpass.h.
31706         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
31707         * modules/group-member (EXTRA_DIST): Add group-member.h.
31708         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
31709         * modules/hash (EXTRA_DIST): Add hash.h.
31710         * modules/human (EXTRA_DIST): Add human.h.
31711         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
31712         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
31713         * modules/lchown (EXTRA_DIST): Add lchown.h.
31714         * modules/long-options (EXTRA_DIST): Add long-options.h.
31715         * modules/lstat (EXTRA_DIST): Add lstat.h.
31716         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
31717         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
31718         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
31719         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
31720         * modules/memxor (EXTRA_DIST): Add memxor.h.
31721         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
31722         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
31723         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
31724         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
31725         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
31726         * modules/physmem (EXTRA_DIST): Add physmem.h.
31727         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
31728         * modules/posixver (EXTRA_DIST): Add posixver.h.
31729         * modules/quote (EXTRA_DIST): Add quote.h.
31730         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
31731         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
31732         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
31733         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
31734         regex_internal.h regexec.c.
31735         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
31736         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
31737         * modules/same (EXTRA_DIST): Add same.h.
31738         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
31739         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
31740         * modules/savedir (EXTRA_DIST): Add savedir.h.
31741         * modules/sha1 (EXTRA_DIST): Add sha1.h.
31742         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
31743         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
31744         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
31745         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
31746         * modules/strdup (EXTRA_DIST): Add strdup.h.
31747         * modules/strftime (EXTRA_DIST): Add strftime.h.
31748         * modules/strndup (EXTRA_DIST): Add strndup.h.
31749         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
31750         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
31751         * modules/time_r (EXTRA_DIST): Add time_r.h.
31752         * modules/timespec (EXTRA_DIST): Add timespec.h.
31753         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
31754         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
31755         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
31756         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
31757         * modules/userspec (EXTRA_DIST): Add userspec.h.
31758         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
31759         * modules/utimens (EXTRA_DIST): Add utimens.h.
31760         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
31761         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
31762         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
31763         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
31764         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
31765         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
31766         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
31767         * modules/yesno (EXTRA_DIST): Add yesno.h.
31768
31769 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31770
31771         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
31772
31773         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
31774         * m4/dev-ino.m4, same-inode.m4: Remove.
31775
31776         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
31777         * m4/acl.m4 (AC_FUNC_ACL):
31778         * m4/backupfile.m4 (gl_BACKUPFILE):
31779         * m4/c-strtod.m4 (gl_C99_STRTOLD):
31780         * m4/canon-host.m4 (gl_CANON_HOST):
31781         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
31782         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
31783         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
31784         * m4/cloexec.m4 (gl_CLOEXEC):
31785         * m4/close-stream.m4 (gl_CLOSE_STREAM):
31786         * m4/closeout.m4 (gl_CLOSEOUT):
31787         * m4/dirfd.m4 (gl_FUNC_DIRFD):
31788         * m4/dirname.m4 (gl_DIRNAME):
31789         * m4/exclude.m4 (gl_EXCLUDE):
31790         * m4/exitfail.m4 (gl_EXITFAIL):
31791         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
31792         * m4/file-type.m4 (gl_FILE_TYPE):
31793         * m4/filemode.m4 (gl_FILEMODE):
31794         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
31795         * m4/fpending.m4 (gl_FUNC_FPENDING):
31796         * m4/fprintftime.m4 (gl_FPRINTFTIME):
31797         * m4/fts.m4 (gl_FUNC_FTS):
31798         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
31799         * m4/getdate.m4 (gl_GETDATE):
31800         * m4/gethrxtime.m4 (gl_GETHRXTIME):
31801         * m4/getpagesize.m4 (gl_GETPAGESIZE):
31802         * m4/getpass.m4 (gl_FUNC_GETPASS):
31803         * m4/gettime.m4 (gl_GETTIME):
31804         * m4/getugroups.m4 (gl_GETUGROUPS):
31805         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
31806         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
31807         * m4/hard-locale.m4 (gl_HARD_LOCALE):
31808         * m4/hash.m4 (gl_HASH):
31809         * m4/idcache.m4 (gl_IDCACHE):
31810         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
31811         * m4/lchown.m4 (gl_FUNC_LCHOWN):
31812         * m4/long-options.m4 (gl_LONG_OPTIONS):
31813         * m4/lstat.m4 (gl_FUNC_LSTAT):
31814         * m4/md5.m4 (gl_MD5):
31815         * m4/memcasecmp.m4 (gl_MEMCASECMP):
31816         * m4/memcoll.m4 (gl_MEMCOLL):
31817         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
31818         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
31819         * m4/memxor.m4 (gl_MEMXOR):
31820         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
31821         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
31822         * m4/modechange.m4 (gl_MODECHANGE):
31823         * m4/mountlist.m4 (gl_MOUNTLIST):
31824         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31825         * m4/openat.m4 (gl_FUNC_OPENAT):
31826         * m4/pathmax.m4 (gl_PATHMAX):
31827         * m4/physmem.m4 (gl_PHYSMEM):
31828         * m4/posixtm.m4 (gl_POSIXTM):
31829         * m4/posixver.m4 (gl_POSIXVER):
31830         * m4/quote.m4 (gl_QUOTE):
31831         * m4/quotearg.m4 (gl_QUOTEARG):
31832         * m4/readtokens.m4 (gl_READTOKENS):
31833         * m4/readutmp.m4 (gl_READUTMP):
31834         * m4/regex.m4 (gl_REGEX):
31835         * m4/safe-read.m4 (gl_SAFE_READ):
31836         * m4/safe-write.m4 (gl_SAFE_WRITE):
31837         * m4/same.m4 (gl_SAME):
31838         * m4/save-cwd.m4 (gl_SAVE_CWD):
31839         * m4/savedir.m4 (gl_SAVEDIR):
31840         * m4/settime.m4 (gl_SETTIME):
31841         * m4/sha1.m4 (gl_SHA1):
31842         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
31843         * m4/stat-macros.m4 (gl_STAT_MACROS):
31844         * m4/stat-time.m4 (gl_STAT_TIME):
31845         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
31846         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
31847         * m4/strdup.m4 (gl_FUNC_STRDUP):
31848         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
31849         * m4/strndup.m4 (gl_FUNC_STRNDUP):
31850         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
31851         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
31852         * m4/time_r.m4 (gl_TIME_R):
31853         * m4/timespec.m4 (gl_TIMESPEC):
31854         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
31855         * m4/unlinkdir.m4 (gl_UNLINKDIR):
31856         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
31857         * m4/userspec.m4 (gl_USERSPEC):
31858         * m4/utimecmp.m4 (gl_UTIMECMP):
31859         * m4/utimens.m4 (gl_UTIMENS):
31860         * m4/xalloc.m4 (gl_XALLOC):
31861         * m4/xgetcwd.m4 (gl_XGETCWD):
31862         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
31863         * m4/xreadlink.m4 (gl_XREADLINK):
31864         * m4/xstrtod.m4 (gl_XSTRTOD):
31865         * m4/yesno.m4 (gl_YESNO):
31866         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
31867         to get the necessary .h files and whatnot.
31868
31869 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
31870             Bruno Haible  <bruno@clisp.org>
31871
31872         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
31873         /bin/sh understanding of '!' conditional negation.
31874
31875 2006-08-21  Jim Meyering  <jim@meyering.net>
31876
31877         * modules/openat (Depends-on): Really alphabetize.
31878
31879         * modules/acl (Depends-on): Add error and quote.
31880
31881         * check-module (find_included_lib_files): Add at-func.c to the
31882         ok-to-include-more-than-once white list.
31883
31884         * modules/openat (Depends-on): Add lstat.  Alphabetize.
31885
31886 2006-08-21  Bruno Haible  <bruno@clisp.org>
31887
31888         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
31889         Emit a pkgdata_DATA variable only if some snippets add contents to it.
31890         Reported by Martin Lambers <marlam@marlam.de>.
31891
31892 2006-08-21  Bruno Haible  <bruno@clisp.org>
31893
31894         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
31895         specify an installation location, don't emit a noinst_LIBRARIES or
31896         noinst_LTLIBRARIES assignment.
31897
31898 2006-08-21  Bruno Haible  <bruno@clisp.org>
31899
31900         BeOS portability.
31901         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
31902         BeOS has mbrtowc() but no <wctype.h>.
31903
31904 2006-08-21  Bruno Haible  <bruno@clisp.org>
31905
31906         BeOS portability.
31907         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
31908         exist.
31909
31910 2006-08-21  Bruno Haible  <bruno@clisp.org>
31911
31912         BeOS portability.
31913         * lib/mbchar.h: Include <wctype.h> only if it exists.
31914
31915 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
31916
31917         Remove files that are no longer needed by their respective modules.
31918         * m4/obstack.m4: Remove.
31919         * m4/strerror_r.m4: Remove.
31920         * m4/uint32_t.m4: Remove.
31921         * m4/uintptr_t.m4: Remove.
31922         * m4/ullong_max.m4: Remove.
31923         * m4/xstrtoimax.m4: Remove.
31924         * m4/xstrtoumax.m4: Remove.
31925
31926         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
31927         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
31928         dependencies now capture this.
31929
31930         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
31931         Do not use AC_LIBSOURCES, since gnulib modules now do this.
31932         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
31933         * m4/human.m4 (gl_HUMAN): Likewise.
31934         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
31935         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
31936
31937         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
31938
31939         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
31940         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
31941         stdint.
31942         * m4/human.m4 (gl_HUMAN): Likewise.
31943         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
31944         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
31945         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
31946         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
31947         * m4/xstrtol (gl_XSTRTOL): Likewise.
31948
31949         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
31950         AC_TYPE_LONG_LONG_INT.
31951         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
31952         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
31953         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
31954         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
31955
31956         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
31957         on stdbool.
31958
31959         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
31960         (gl_PREREQ_XSTRTOUL): Remove.
31961
31962         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
31963
31964         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
31965         mode.
31966
31967 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
31968
31969         Add and change modules to make it easier for coreutils to use
31970         gnulib-tool.
31971         * modules/backupfile (Files): Remove m4/d-ino.m4.
31972         (Depends-on): Add d-ino.
31973         * modules/cycle-check (Depends-on): Add stdint.
31974         (lib_SOURCES): Add cycle-check.h.
31975         * modules/d-ino: New module.
31976         * modules/d-type: New module.
31977         * modules/error (Files): Remove m4/strerror_r.m4.
31978         * modules/filemode (Files): Add m4/st_dm_mode.m4.
31979         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
31980         m4/inttypes_h.m4, m4/uintmax_t.m4.
31981         (Depends-on): Add stdint.
31982         (lib_SOURCES): Add fsusage.h.
31983         * modules/getcwd (Files): Remove d-ino.m4.
31984         (Depends-on): Add d-ino.
31985         * modules/getndelim2 (Depends-on): Add stdint.
31986         * modules/glob (Files): Remove m4/d-type.m4.
31987         (Depends-on): Add d-type.
31988         * modules/host-os: New module.
31989         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
31990         m4/inttypes_h.m4, m4/uintmax_t.m4.
31991         * Depends-on: Add stdint.
31992         (lib_SOURCES): Add human.h.
31993         * modules/inttostr (Files): Remove m4/intmax_t.m4,
31994         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
31995         m4/uintmax_t.m4, m4/ulonglong.m4.
31996         (Depends-on): Add stdint.
31997         (EXTRA_DIST): Add inttostr.h.
31998         * modules/lchmod: New module.
31999         * modules/link-follow: New module.
32000         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
32001         (Depends-on): Add lchmod.
32002         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
32003         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
32004         (Depends-on): Add stdint.
32005         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
32006         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
32007         (Depends-on): Add stdint.
32008         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
32009         * modules/perl: New module.
32010         * modules/regex (Depends-on): Add stdint.
32011         * modules/rmdir-errno: New module.
32012         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
32013         m4/intmax_t.m4.
32014         (Depends-on): Add stdint.
32015         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
32016         m4/uintmax_t.m4.
32017         (Depends-on): Add stdint.
32018         * modules/unlink-busy: New module.
32019         * modules/utimecmp (Depends-on): Add stdint.
32020         * modules/uptime: New module.
32021         * modules/winsz-ioctl: New module.
32022         * modules/winsz-termios: New module.
32023         * modules/xnanosleep (Depends-on): Add nanosleep.
32024         * modules/ullong_max: Remove.
32025         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
32026         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
32027         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
32028         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
32029         (Depends-on): Add inttypes.
32030         (lib_SOURCES): Add xstrtol.h.
32031         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
32032         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
32033         * MODULES.html.sh: Move 'assert' into the assert section.
32034         Move 'dummy' into the linking section.
32035         Remove ullong_max.
32036         Add section for compatibility checks for POSIX:2001 functions,
32037         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
32038         winsz-ioctl, and winsz-termios into it.
32039         Add lchmod.
32040         Add top-level Misc section and put host-os, perl, and uptime
32041         into it.
32042
32043 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
32044
32045         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
32046         now assume the stdint module.  Do not include inttypes.h.
32047         * lib/fsusage.h: Likewise.
32048         * lib/getndelim2.c: Likewise.
32049         * lib/human.h: Likewise.
32050         * lib/inttostr.h: Likewise.
32051         * lib/obstack.c: Likewise.
32052         * lib/regex_internal.h: Likewise.
32053         * lib/tempname.c: Likewise.
32054         * lib/utimecmp.c: Likewise.
32055         * lib/xstrtol.h: Likewise.
32056
32057         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
32058
32059         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
32060         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
32061         * lib/xtime.h: Likewise.
32062
32063 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
32064
32065         * modules/openat (Files): Add lib/fchmodat.c.
32066         Fixes problem reported by Jay Youngman.
32067
32068 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
32069
32070         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
32071         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
32072
32073 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
32074             Bruno Haible  <bruno@clisp.org>
32075
32076         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
32077         and is a script that invokes bison. Tighten the code. Add comments.
32078
32079 2006-08-18  Jim Meyering  <jim@meyering.net>
32080
32081         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
32082         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
32083         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
32084         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
32085
32086 2006-08-18  Bruno Haible  <bruno@clisp.org>
32087
32088         * modules/bison-i18n: New file.
32089         * MODULES.html.sh (Internationalization functions): Add it.
32090
32091 2006-08-18  Bruno Haible  <bruno@clisp.org>
32092
32093         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
32094         sys/statvfs.h. When getmntinfo was found, check its declaration and
32095         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
32096
32097 2006-08-18  Bruno Haible  <bruno@clisp.org>
32098
32099         * m4/bison-i18n.m4: New file, from bison.
32100
32101 2006-08-18  Bruno Haible  <bruno@clisp.org>
32102
32103         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
32104         (ME_DUMMY): Treat "kernfs" as a dummy.
32105         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
32106
32107 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
32108
32109         Update from coreutils.
32110
32111         2006-08-15  Jim Meyering  <jim@meyering.net>
32112
32113         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
32114
32115         2006-01-17  Jim Meyering  <jim@meyering.net>
32116
32117         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
32118
32119         2006-01-11  Jim Meyering  <jim@meyering.net>
32120
32121         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
32122         Check for the lchmod function.
32123
32124 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
32125
32126         Update from coreutils.
32127
32128         * lib/__fpending.h: Add copyright notice.
32129         * lib/fprintftime.h: Likewise.
32130         * lib/savedir.c: Use (C) in copyright notice.
32131         * lib/savedir.h: Likewise.
32132
32133         2006-08-15  Jim Meyering  <jim@meyering.net>
32134
32135         * lib/at-func.c: New file, with the logic of all emulated at-functions.
32136         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
32137         in support of the EXPECTED_ERRNO macro.
32138         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
32139         definitions.  Instead, define the appropriate symbols and include
32140         "at-func.c".
32141         * lib/mkdirat.c (mkdirat): Likewise.
32142         * lib/fchmodat.c (fchmodat): Likewise.
32143         (ENOSYS): Remove definition.
32144         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
32145         it.  Don't include "unistd--.h" -- it wasn't ever used.
32146
32147         2006-01-17  Jim Meyering  <jim@meyering.net>
32148
32149         Rewrite fts.c not to change the current working directory,
32150         by using openat, fstatat, fdopendir, etc..
32151
32152         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
32153         (HAVE_OPENAT_SUPPORT): Define.
32154         [_LIBC] (fchdir): Don't undef or define; no longer used.
32155         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
32156         Now, this `function' always succeeds, and consumes its file descriptor
32157         parameter -- so callers must not close such FDs.  Update callers.
32158         (diropen_fd, opendirat, cwd_advance_fd): New functions.
32159         (diropen): Add parameter, SP.  Adjust all callers.
32160         Implement using diropen_fd, rather than open.
32161         (fts_open): Initialize new member, fts_cwd_fd.
32162         Remove fts_rft-setting code.
32163         (fts_close): Close fts_cwd_fd, if necessary.
32164         (__opendir2): Define in terms of opendir or opendirat,
32165         depending on whether the FST_NOCHDIR flag is set.
32166         (fts_build): Since fts_safe_changedir consumes its FD, and since
32167         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
32168         and close the dup'd file descriptor upon failure.
32169         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
32170         (fts_safe_changedir): Tweak semantics to reflect that this function
32171         now calls cwd_advance_fd and hence consumes its FD argument.
32172         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
32173         [struct FTS] (fts_rft): Remove now-unused member.
32174         [struct FTS] (fts_cycle.state): Improve comment.
32175
32176         * lib/openat.c (openat_needs_fchdir): New function.
32177         * lib/openat.h (openat_needs_fchdir): Declare it.
32178
32179 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
32180
32181         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
32182         Problem and fix reported by Pádraig Brady in
32183         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
32184
32185 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32186
32187         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
32188
32189 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32190
32191         * lib/memcoll.c (memcoll): Optimize for the common case where the
32192         arguments are bytewise equal.
32193
32194 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32195
32196         * doc/regexprops-generic.texi: Add a copyright notice.
32197
32198 2006-08-15  Bruno Haible  <bruno@clisp.org>
32199
32200         * modules/tmpdir (License): Change to LGPL.
32201
32202 2006-08-15  Bruno Haible  <bruno@clisp.org>
32203
32204         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
32205         module.
32206
32207 2006-08-14  Simon Josefsson  <jas@extundo.com>
32208
32209         * config/srclist.txt: Add gnupload.
32210
32211 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32212
32213         Change copyright notice from LGPL 2 to GPL 2, since that's the
32214         standard form used in the gnulib repository.
32215         * tests/test-lock.c: Likewise.
32216         * tests/test-stdint.c: Likewise.
32217         * tests/test-tls.c: Likewise.
32218
32219         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
32220         prelude-manager.  User shorter URLs for GNU projects, without '?'.
32221         Add copyright notice.
32222
32223         * check-module: Add copyright notice.  Output a copyright
32224         notice if "--version" is specified.
32225         * modules/COPYING: New file.
32226         * tests/test-getaddrinfo.c: Add copyright notice.
32227         * tests/test-verify.c: Likewise.
32228
32229 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32230
32231         Change copyright notice from LGPL 2 to GPL 2, since that's the
32232         standard form used in the gnulib repository.
32233         * lib/lock.c: LGPL -> GPL.
32234         * lib/lock.h: Likewise.
32235         * lib/strnlen1.c: Likewise.
32236         * lib/strnlen1.h: Likewise.
32237         * lib/tls.c: Likewise.
32238         * lib/tls.h: Likewise.
32239         * lib/tmpdir.c: Likewise.
32240
32241         * lib/TODO: Remove; this belongs only in coreutils.
32242
32243 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32244
32245         Add copyright notices to long-enough files that lack them, since
32246         otherwise the files aren't clearly free.  Use the same notice that
32247         getdate.texi already uses.
32248         * doc/alloca-opt.texi: Add copyright notice.
32249         * doc/alloca.texi: Likewise.
32250         * doc/ctime.texi: Likewise.
32251         * doc/functions.texi: Likewise.
32252         * doc/gcd.texi: Likewise.
32253         * doc/gnulib-tool.texi: Likewise.
32254         * doc/inet_ntoa.texi: Likewise.
32255         * doc/visibility.texi: Likewise.
32256
32257         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
32258         * doc/quote.texi: Add copyright notice.
32259
32260         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
32261         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
32262         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
32263         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
32264         is now obsolete, and give a pointer to the Sun list.
32265         Add copyright notice.
32266
32267 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32268
32269         * config/srclistvars.sh: Add copyright notice.
32270
32271 2006-08-14  Eric Blake  <ebb9@byu.net>
32272
32273         Import the following change from libc:
32274
32275         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
32276
32277         Upstream bug 2997.
32278         * lib/misc/error.c: Add space between program name and message if file
32279         name is missing.
32280
32281 2006-08-12  Karl Berry  <karl@gnu.org>
32282
32283         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
32284         remove, these originate in gnulib now.
32285
32286 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32287
32288         * doc/Makefile (standards.info standards.html standards.dvi):
32289         Also depend on make-stds.texi.
32290
32291 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
32292
32293         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
32294         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
32295
32296         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
32297         in wchar_t.  Problem reported by Eric Blake.
32298
32299         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
32300         LEN is smaller than SIZE.  Suggested by Bruno Haible.
32301         Also, help the compiler to keep LEN in a register.
32302
32303 2006-08-11  Eric Blake  <ebb9@byu.net>
32304
32305         * users.txt: Sort.  Add tar.
32306
32307 2006-08-11  Bruno Haible  <bruno@clisp.org>
32308
32309         * users.txt: New file.
32310
32311 2006-08-11  Bruno Haible  <bruno@clisp.org>
32312
32313         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
32314         before <wchar.h>. Needed for OSF/1 and BSD/OS.
32315
32316 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32317
32318         * modules/snprintf (Depends-on): Remove minmax.
32319         (Maintainer): Add self and Bruno.
32320
32321 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32322
32323         * lib/.cppi-disable: Add snprintf.h, socket_.h.
32324         * lib/snprintf.c: Include <errno.h> and <limits.h>.
32325         (EOVERFLOW): Define if the system does not.
32326         Do not include "minmax.h"; it wasn't used.
32327         (snprintf): Don't assume size_t promotes to an unsigned type.
32328         Fix bug when generated string was too long for the buffer: the
32329         buffer's contents are supposed to be the initial prefix of the
32330         output.  Don't assume vasnprintf returns EOVERFLOW if the size
32331         exceeds INT_MAX; do the check ourselves.
32332
32333         Import the following changes from libc:
32334
32335         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
32336
32337         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
32338         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
32339         set wc to the byte which couldn't be converted.
32340         (re_string_reconstruct): Don't clear valid_raw_len before calling
32341         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
32342         tip_context using re_string_context_at.
32343
32344         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
32345
32346         * lib/posix/regex.h: g++ still cannot handled [restrict].
32347
32348         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
32349
32350         * lib/posix/regex.h: Remove special handling for VMS.
32351
32352 2006-08-10  Jim Meyering  <jim@meyering.net>
32353
32354         * modules/same-inode: New module.
32355         * modules/dev-ino: New module.
32356         * modules/cycle-check: Depend on these modules, rather than simply
32357         including their .h files.
32358         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
32359         required via m4/cycle-check.m4.
32360         * modules/same: Depend on new same-inode module, rather than
32361         including same-inode.h.
32362         * modules/chdir-safer: New file.
32363
32364         * modules/chown (Depends-on): Add stat-macros.
32365
32366 2006-08-10  Jim Meyering  <jim@meyering.net>
32367
32368         * m4/cycle-check.m4: New file.
32369         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
32370         * m4/dev-ino.m4, m4/same-inode.m4: New files.
32371
32372 2006-08-10  Eric Blake  <ebb9@byu.net>
32373
32374         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
32375         in from original proposal.
32376
32377 2006-08-10  Eric Blake  <ebb9@byu.net>
32378         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
32379
32380         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
32381         namespace.
32382
32383 2006-08-10  Bruno Haible  <bruno@clisp.org>
32384
32385         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
32386         as well.
32387
32388 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32389
32390         Sync from coreutils.
32391
32392         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
32393
32394         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
32395         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
32396
32397 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32398
32399         * modules/restrict: Remove; no longer needed now that we assume
32400         Autoconf 2.59 or later.
32401         * MODULES.html.sh: Remove 'restrict'.
32402         * modules/argp (Depends-on): Remove 'restrict'.
32403         * modules/base64 (Depends-on): Likewise.
32404         * modules/gc (Depends-on): Likewise.
32405         * modules/getaddrinfo (Depends-on): Likewise.
32406         * modules/glob (Depends-on): Likewise.
32407         * modules/inet_ntop (Depends-on): Likewise.
32408         * modules/inet_pton (Depends-on): Likewise.
32409         * modules/memxor (Depends-on): Likewise.
32410         * modules/regex (Depends-on): Likewise.
32411         * modules/strtok_r (Depends-on): Likewise.
32412         * modules/time_r (Depends-on): Likewise.
32413
32414 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32415
32416         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
32417         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
32418         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
32419         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
32420         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
32421         * m4/memxor.m4 (gl_MEMXOR): Likewise.
32422         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
32423         gl_C_RESTRICT replaced by AC_C_RESTRICT.
32424
32425         Merge from coreutils.
32426         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
32427         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
32428         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32429         * m4/time_r.m4 (gl_TIME_R): Likewise.
32430
32431 2006-08-09  Karl Berry  <karl@gnu.org>
32432
32433         * config/srclist.txt: no more gettext-tools, per Bruno.
32434
32435 2006-08-08  Eric Blake  <ebb9@byu.net>
32436
32437         * modules/verror: New module.
32438         * MODULES.html.sh: Document it.
32439
32440 2006-08-08  Eric Blake  <ebb9@byu.net>
32441
32442         * lib/verror.h, lib/verror.c: New files.
32443
32444 2006-08-08  Eric Blake  <ebb9@byu.net>
32445
32446         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
32447         verror_at_line output complies with GNU Coding Standards even when
32448         file is NULL.
32449
32450 2006-08-07  Bruno Haible  <bruno@clisp.org>
32451
32452         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
32453         versions of AIX.
32454         Reported by Ralf Wildenhues.
32455
32456 2006-08-07  Bruno Haible  <bruno@clisp.org>
32457
32458         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
32459         in an AC_DEFUN. Needed so that the autoconf snippets can use
32460         AC_REQUIRE.
32461
32462 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32463
32464         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32465         Initialize pkgdata_DATA.
32466         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
32467         overriding it.
32468
32469 2006-08-06  Eric Blake  <ebb9@byu.net>
32470
32471         * lib/error.h: Fold in some upstream changes from glibc.
32472         * lib/error.c: Likewise.
32473
32474 2006-08-04  Bruno Haible  <bruno@clisp.org>
32475
32476         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32477         Make the mostlyclean-local rule depend on mostlyclean-generic.
32478         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
32479
32480 2006-07-31  Bruno Haible  <bruno@clisp.org>
32481
32482         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
32483         <stdlib.h>, <string.h>.
32484
32485 2006-07-30  Bruno Haible  <bruno@clisp.org>
32486
32487         * modules/readlink (License): Change to LGPL.
32488
32489 2006-07-30  Bruno Haible  <bruno@clisp.org>
32490
32491         * modules/javaversion (Makefile.am): Distribute javaversion.java and
32492         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
32493         set PKGDATADIR to point to it.
32494
32495 2006-07-30  Bruno Haible  <bruno@clisp.org>
32496
32497         * modules/csharpexec (configure.ac): Comment out macro invocation.
32498         * modules/javaexec (configure.ac): Likewise.
32499         * modules/javacomp-script (configure.ac): Likewise.
32500
32501         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
32502
32503 2006-07-30  Bruno Haible  <bruno@clisp.org>
32504
32505         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
32506         linked-list.
32507
32508 2006-07-30  Bruno Haible  <bruno@clisp.org>
32509
32510         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
32511
32512 2006-07-30  Bruno Haible  <bruno@clisp.org>
32513
32514         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32515         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
32516         get removed.
32517
32518 2006-07-29  Bruno Haible  <bruno@clisp.org>
32519
32520         Make it possible for gnulib-tool to work with locally modified or
32521         augmented gnulib repositories.
32522         * gnulib-tool (func_usage): Document --local-dir option.
32523         (local_gnulib_dir): New variable.
32524         Handle --local-dir option.
32525         (func_lookup_file): New function.
32526         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
32527         (func_get_description, func_get_filelist, func_get_description,
32528         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
32529         func_get_automake_snippet, func_get_include_directive,
32530         func_get_license, func_get_maintainer): Use func_lookup_file.
32531         (func_import, func_create_testdir): Use func_lookup_file.
32532
32533 2006-07-29  Bruno Haible  <bruno@clisp.org>
32534
32535         * modules/setenv (Depends-on): Add unistd.
32536
32537 2006-07-29  Bruno Haible  <bruno@clisp.org>
32538
32539         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
32540
32541 2006-07-29  Bruno Haible  <bruno@clisp.org>
32542
32543         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
32544
32545 2006-07-29  Bruno Haible  <bruno@clisp.org>
32546
32547         * gnulib-tool (import, update): If there is no Makefile.am, look at
32548         aclocal.m4, instead of bailing out.
32549
32550 2006-07-29  Bruno Haible  <bruno@clisp.org>
32551
32552         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
32553         Categorize the options by when they are useful.
32554
32555 2006-07-29  Bruno Haible  <bruno@clisp.org>
32556
32557         * gnulib-tool (func_usage): Document option --no-libtool.
32558         Handle option --no-libtool.
32559         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
32560         for changed semantics of $libtool variable.
32561         (func_import): Likewise. If libtool is not used, show this through
32562         an option --no-libtool.
32563         (func_create_testdir): Update.
32564
32565 2006-07-29  Bruno Haible  <bruno@clisp.org>
32566
32567         * gnulib-tool (func_import): Extend error message about missing
32568         --doc-base.
32569
32570 2006-07-29  Bruno Haible  <bruno@clisp.org>
32571
32572         * gnulib-tool (func_import): Don't create the $docbase directory if
32573         there is no file to store there.
32574
32575 2006-07-29  Bruno Haible  <bruno@clisp.org>
32576
32577         * gnulib-tool (autoconf_minversion): If a --dir option is given and
32578         relevant, look for configure.ac there, not in the current directory.
32579         Also use a simple search for AC_PREREQ, not "autoconf --trace".
32580
32581 2006-07-29  Bruno Haible  <bruno@clisp.org>
32582
32583         * gnulib-tool (SORT): New variable.
32584         (func_usage): Undocument --assume-autoconf option.
32585         Remove --assume-autoconf option handling.
32586         (autoconf_minversion): Determine from the contents of configure.ac.
32587         (func_import): Remove autoconf_minversion handling.
32588         Suggested by Eric Blake.
32589
32590 2006-07-29  Bruno Haible  <bruno@clisp.org>
32591
32592         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
32593
32594 2006-07-29  Bruno Haible  <bruno@clisp.org>
32595
32596         * config/srclist.txt (*setenv.[ch]): Remove rules.
32597
32598 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32599
32600         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
32601
32602 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32603
32604         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
32605         arpa/inet.h.
32606
32607 2006-07-28  Simon Josefsson  <jas@extundo.com>
32608
32609         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
32610         * modules/inet_pton (Depends-on): Likewise.
32611
32612 2006-07-28  Simon Josefsson  <jas@extundo.com>
32613
32614         * m4/netinet_in_h.m4: New file.
32615
32616 2006-07-28  Simon Josefsson  <jas@extundo.com>
32617
32618         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
32619         #include's.
32620
32621 2006-07-28  Simon Josefsson  <jas@extundo.com>
32622
32623         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
32624         #include's.
32625
32626 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
32627
32628         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
32629         setgid on directories only if they set these bits.
32630         * lib/modechange.h: Remove obsolete comment about masks.
32631
32632 2006-07-28  Eric Blake  <ebb9@byu.net>
32633
32634         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
32635         macro expansion.
32636
32637 2006-07-28  Bruno Haible  <bruno@clisp.org>
32638
32639         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
32640
32641 2006-07-28  Bruno Haible  <bruno@clisp.org>
32642
32643         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
32644
32645 2006-07-28  Bruno Haible  <bruno@clisp.org>
32646
32647         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
32648         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
32649         Define fallbacks.
32650         Avoids link error on FreeBSD 4.x.
32651         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
32652
32653         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
32654         encoding.
32655         * lib/mbswidth.c (iswcntrl): Likewise.
32656
32657 2006-07-27  Bruno Haible  <bruno@clisp.org>
32658
32659         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
32660         test.
32661
32662 2006-07-27  Bruno Haible  <bruno@clisp.org>
32663
32664         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
32665         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
32666         defined.
32667
32668 2006-07-26  Eric Blake  <ebb9@byu.net>
32669
32670         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
32671
32672 2006-07-26  Eric Blake  <ebb9@byu.net>
32673
32674         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
32675         like mingw that lack mkstemp.
32676         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
32677         avoid compilation warning on mingw.
32678
32679 2006-07-26  Bruno Haible  <bruno@clisp.org>
32680
32681         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
32682         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
32683         INT_FAST*_MIN, INTPTR_MIN.
32684
32685 2006-07-25  Bruno Haible  <bruno@clisp.org>
32686
32687         * modules/version-etc (Depends-on): Add stdarg.
32688
32689 2006-07-25  Bruno Haible  <bruno@clisp.org>
32690
32691         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
32692         complex commands.
32693
32694 2006-07-25  Bruno Haible  <bruno@clisp.org>
32695
32696         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
32697         defined in <stdarg.h> or config.h.
32698
32699 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
32700
32701         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
32702         (gl_STDIO_SAFER): Remove.
32703
32704 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
32705
32706         * MODULES.html.sh (File stream based Input/Output):
32707         Add fopen-safer, tmpfile-safer; remove stdio-safer.
32708         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
32709         * modules/fopen-safer, modules/tmpfile-safer: New files.
32710         * modules/stdio-safer: Remove.
32711
32712 2006-07-24  Bruno Haible  <bruno@clisp.org>
32713
32714         * modules/tmpdir: New file.
32715         * MODULES.html.sh (File system functions): Add it.
32716
32717 2006-07-24  Bruno Haible  <bruno@clisp.org>
32718
32719         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
32720         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
32721
32722 2006-07-24  Bruno Haible  <bruno@clisp.org>
32723
32724         * modules/clean-temp: New file.
32725
32726 2006-07-24  Bruno Haible  <bruno@clisp.org>
32727
32728         * m4/tmpdir.m4: New file, from GNU gettext.
32729
32730 2006-07-24  Bruno Haible  <bruno@clisp.org>
32731
32732         * lib/tmpdir.h: New file, from GNU gettext.
32733         * lib/tmpdir.c: New file, from GNU gettext.
32734
32735 2006-07-24  Bruno Haible  <bruno@clisp.org>
32736
32737         * lib/clean-temp.h: New file, from GNU gettext.
32738         * lib/clean-temp.c: New file, from GNU gettext.
32739
32740 2006-07-23  Eric Blake  <ebb9@byu.net>
32741
32742         * modules/stdio-safer (Files): Add tmpfile-safer.c.
32743         (Depends-on): Add binary-io.
32744
32745 2006-07-23  Eric Blake  <ebb9@byu.net>
32746
32747         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
32748
32749 2006-07-23  Eric Blake  <ebb9@byu.net>
32750
32751         * lib/tmpfile-safer.c: New file.
32752         * lib/stdio-safer.h (fopen_safer): Add prototype.
32753         * lib/stdio--.h (tmpfile): Make safer.
32754
32755 2006-07-23  Bruno Haible  <bruno@clisp.org>
32756
32757         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
32758         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
32759         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
32760         gl_linked_remove_at): Use it.
32761
32762 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32763         and Simon Josefsson <jas@extundo.com>
32764
32765         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
32766
32767         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
32768
32769 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32770
32771         * modules/close-stream: New file.
32772         * modules/closeout (Description): Make it clear that it exits
32773         with a diagnostic on error.
32774         (Depends-on): Add close-stream.  Remove fpending, stdbool.
32775         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
32776
32777 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32778
32779         * m4/close-stream.m4: New file.
32780
32781 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32782
32783         * lib/close-stream.c, lib/close-stream.h: New files.
32784
32785 2006-07-22  Bruno Haible  <bruno@clisp.org>
32786
32787         Merge from GNU gettext 0.15.
32788
32789         2006-05-01  Bruno Haible  <bruno@clisp.org>
32790
32791                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
32792
32793         2006-07-22  Bruno Haible  <bruno@clisp.org>
32794
32795                 * modules/javaversion: New file.
32796                 * MODULES.html.sh (Java): Add javaversion.
32797
32798         2006-03-12  Bruno Haible  <bruno@clisp.org>
32799
32800                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
32801
32802         2005-12-04  Bruno Haible  <bruno@clisp.org>
32803
32804                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
32805                 (untested).
32806
32807         2006-06-21  Bruno Haible  <bruno@clisp.org>
32808
32809                 Avoid warnings from recent versions of mcs.
32810                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
32811                 -o, -L, -r any more. Use options documented since mcs-1.0
32812                 instead. Similarly for -g.
32813
32814         2005-12-04  Bruno Haible  <bruno@clisp.org>
32815
32816                 * build-aux/csharpcomp.sh.in: Suffix for resources is
32817                 .resources, not .resource.
32818
32819         2005-07-09  Bruno Haible  <bruno@clisp.org>
32820
32821                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
32822                 add a .dll suffix.
32823                 Reported by Mark Junker <mjscod@gmx.de>.
32824
32825         2006-07-22  Bruno Haible  <bruno@clisp.org>
32826
32827                 * modules/gettext: Upgrade to gettext-0.15.
32828                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
32829                 m4/visibility.m4.
32830                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
32831
32832 2006-07-22  Bruno Haible  <bruno@clisp.org>
32833
32834         Merge from GNU gettext 0.15.
32835
32836         2006-03-25  Bruno Haible  <bruno@clisp.org>
32837
32838                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
32839
32840         2006-07-21  Bruno Haible  <bruno@clisp.org>
32841
32842                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
32843                 "1.1".
32844
32845         2006-05-09  Bruno Haible  <bruno@clisp.org>
32846
32847                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
32848                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
32849                 for the conftestver execution.
32850
32851         2006-05-01  Bruno Haible  <bruno@clisp.org>
32852
32853                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
32854                 optional target-version argument. Verify that the compiler
32855                 groks source of the specified source-version, or add -source
32856                 option as necessary. Verify that the compiler produces
32857                 bytecode in the specified target-version, or add -target and
32858                 -source options as necessary. Make the result of the test
32859                 available as variable CONF_JAVAC. Also log error output in
32860                 config.log.
32861
32862         2006-03-11  Bruno Haible  <bruno@clisp.org>
32863
32864                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
32865
32866         2006-05-09  Bruno Haible  <bruno@clisp.org>
32867
32868                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
32869                 CLASSPATH_SEPARATOR to a semicolon.
32870
32871         2006-03-12  Bruno Haible  <bruno@clisp.org>
32872
32873                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
32874                 available as variable CONF_JAVA, for subsequent autoconf
32875                 tests. Also log error output in config.log.
32876
32877         2006-07-19  Bruno Haible  <bruno@clisp.org>
32878
32879                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
32880                 that getline works on glibc2 systems. Needed to avoid trouble
32881                 in relocatable.c.
32882                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
32883
32884         2005-12-04  Bruno Haible  <bruno@clisp.org>
32885
32886                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
32887                 launcher (untested).
32888
32889         2005-12-04  Bruno Haible  <bruno@clisp.org>
32890
32891                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
32892
32893         2006-07-22  Bruno Haible  <bruno@clisp.org>
32894
32895                 * gettext.m4: Update from GNU gettext-0.15.
32896                 * nls.m4: Likewise.
32897                 * po.m4: Likewise.
32898                 * inttypes-pri.m4: Likewise.
32899                 * inttypes-h.m4: Renamed from inttypes.m4.
32900                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
32901
32902 2006-07-22  Bruno Haible  <bruno@clisp.org>
32903
32904         Merge from GNU gettext 0.15.
32905
32906         2005-07-05  Bruno Haible  <bruno@clisp.org>
32907
32908                 * printf-args.c (printf_fetchargs): Work around broken
32909                 definition of wint_t on mingw.
32910
32911         2005-02-12  Bruno Haible  <bruno@clisp.org>
32912
32913                 * xallocsa.h: Add extern "C" for C++.
32914
32915         2006-05-17  Bruno Haible  <bruno@clisp.org>
32916
32917                 Cygwin portability.
32918                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
32919
32920         2006-04-30  Bruno Haible  <bruno@clisp.org>
32921
32922                 * progreloc.c: Include <mach-o/dyld.h> if available.
32923                 (find_executable): Use _NSGetExecutablePath when possible.
32924
32925         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
32926
32927                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
32928                 function.
32929
32930         2005-12-29  Bruno Haible  <bruno@clisp.org>
32931
32932                 * progreloc.c (set_program_name_and_installdir): Fix
32933                 compilation error.
32934
32935         2005-12-04  Bruno Haible  <bruno@clisp.org>
32936
32937                 Cygwin portability.
32938                 * progreloc.c: Include <windows.h> also on Cygwin.
32939                 (find_executable): Add support for Cygwin.
32940                 (set_program_name_and_installdir): Handle also platforms with
32941                 nonempty EXEEXT.
32942
32943         2006-07-11  Bruno Haible  <bruno@clisp.org>
32944
32945                 * javacomp.c: Fix a comment.
32946                 Reported by Jim Meyering.
32947
32948         2006-04-30  Bruno Haible  <bruno@clisp.org>
32949
32950                 * javacomp.h (compile_java_class): Add source_version,
32951                 target_version arguments.
32952                 * javacomp.c: Rewritten to choose only a compiler that
32953                 respects the specified source_version and target_version.
32954
32955         2006-06-27  Bruno Haible  <bruno@clisp.org>
32956
32957                 Assume correct S_ISDIR macro.
32958                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
32959
32960         2006-07-22  Bruno Haible  <bruno@clisp.org>
32961
32962                 * javaversion.h: New file, from GNU gettext.
32963                 * javaversion.c: New file, from GNU gettext.
32964                 * javaversion.java: New file, from GNU gettext.
32965                 * javaversion.class: New file, from GNU gettext.
32966
32967         2006-05-17  Bruno Haible  <bruno@clisp.org>
32968
32969                 Cygwin portability.
32970                 * javaexec.c (execute_java_class): Test for jview program
32971                 also on Cygwin.
32972
32973         2006-04-09  Bruno Haible  <bruno@clisp.org>
32974
32975                 * fatal-signal.c: Don't include string.h.
32976                 (at_fatal_signal): Use a copying loop instead of memcpy.
32977
32978         2005-12-04  Bruno Haible  <bruno@clisp.org>
32979
32980                 * csharpexec.c: Add support for 'clix' launcher (untested).
32981                 (execute_csharp_using_sscli): New function.
32982                 (execute_csharp_program): Call it.
32983
32984         2006-06-21  Bruno Haible  <bruno@clisp.org>
32985
32986                 Avoid warnings from recent versions of mcs.
32987                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
32988                 -o, -L, -r any more. Use options documented since mcs-1.0
32989                 instead. Similarly for -g.
32990
32991         2005-07-09  Bruno Haible  <bruno@clisp.org>
32992
32993                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
32994                 add a .dll suffix.
32995                 Reported by Mark Junker <mjscod@gmx.de>.
32996
32997         2006-06-17  Bruno Haible  <bruno@clisp.org>
32998
32999                 * config.charset: Update for NetBSD 3.0.
33000
33001         2006-05-17  Bruno Haible  <bruno@clisp.org>
33002
33003                 Cygwin portability.
33004                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
33005
33006         2006-05-16  Bruno Haible  <bruno@clisp.org>
33007
33008                 * localcharset.c [CYGWIN]: Include <windows.h>.
33009                 (get_charset_aliases): For Cygwin, return the same CPxxx
33010                 aliases list as under WIN32.
33011                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
33012                 the environment variables. Fall back to GetACP().
33013
33014         2006-04-05  Bruno Haible  <bruno@clisp.org>
33015
33016                 * config.charset: Update Juan Manuel Guerrero's address.
33017
33018         2005-02-12  Bruno Haible  <bruno@clisp.org>
33019
33020                 * allocsa.h: Add extern "C" for C++.
33021
33022         2005-02-10  Bruno Haible  <bruno@clisp.org>
33023
33024                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
33025                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
33026
33027         2006-07-22  Bruno Haible  <bruno@clisp.org>
33028
33029                 * gettext.h: Update to GNU gettext-0.15.
33030
33031 2006-07-22  Bruno Haible  <bruno@clisp.org>
33032
33033         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
33034         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
33035         lib-prefix.m4, longdouble.m4, ssize_t.m4.
33036
33037 2006-07-21  Eric Blake  <ebb9@byu.net>
33038
33039         * modules/stdlib-safer: New file.
33040         * MODULES.html.sh (File stream based Input/Output): Add
33041         stdlib-safer.
33042
33043 2006-07-21  Eric Blake  <ebb9@byu.net>
33044
33045         * lib/stdlib-safer.h: New file from coreutils, required by
33046         stdlib--.h.
33047
33048 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
33049
33050         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
33051
33052 2006-07-20  Bruno Haible  <bruno@clisp.org>
33053
33054         * gnulib-tool: Recognize new option --assume-autoconf.
33055         (autoconf_minversion): New variable.
33056         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
33057
33058 2006-07-20  Bruno Haible  <bruno@clisp.org>
33059
33060         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
33061
33062 2006-07-19  Derek R. Price  <derek@ximbiot.com>
33063
33064         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
33065         Reindent and repaginate.
33066
33067 2006-07-19  Derek Price  <derek@ximbiot.com>
33068
33069         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
33070         Correct grammar.
33071
33072 2006-07-17  Bruno Haible  <bruno@clisp.org>
33073
33074         * modules/list: New file.
33075         * modules/array-list: New file.
33076         * modules/carray-list, modules/carray-list-tests: New files.
33077         * modules/linked-list, modules/linked-list-tests: New files.
33078         * modules/avltree-list, modules/avltree-list-tests: New files.
33079         * modules/rbtree-list, modules/rbtree-list-tests: New files.
33080         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
33081         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
33082         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
33083         * modules/oset: New file.
33084         * modules/array-oset: New file.
33085         * modules/avltree-oset, modules/avltree-oset-tests: New files.
33086         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
33087         * tests/test-carray_list.c: New file.
33088         * tests/test-linked_list.c: New file.
33089         * tests/test-avltree_list.c: New file.
33090         * tests/test-rbtree_list.c: New file.
33091         * tests/test-linkedhash_list.c: New file.
33092         * tests/test-avltreehash_list.c: New file.
33093         * tests/test-rbtreehash_list.c: New file.
33094         * tests/test-avltree_oset.c: New file.
33095         * tests/test-rbtree_oset.c: New file.
33096         * MODULES.html.sh (Container data structures): New section.
33097
33098 2006-07-17  Bruno Haible  <bruno@clisp.org>
33099
33100         * m4/gl_list.m4: New file.
33101
33102 2006-07-17  Bruno Haible  <bruno@clisp.org>
33103
33104         * lib/gl_list.h: New file.
33105         * lib/gl_list.c: New file.
33106         * lib/gl_array_list.h: New file.
33107         * lib/gl_array_list.c: New file.
33108         * lib/gl_carray_list.h: New file.
33109         * lib/gl_carray_list.c: New file.
33110         * lib/gl_linked_list.h: New file.
33111         * lib/gl_linked_list.c: New file.
33112         * lib/gl_anylinked_list1.h: New file.
33113         * lib/gl_anylinked_list2.h: New file.
33114         * lib/gl_avltree_list.h: New file.
33115         * lib/gl_avltree_list.c: New file.
33116         * lib/gl_anyavltree_list1.h: New file.
33117         * lib/gl_anyavltree_list2.h: New file.
33118         * lib/gl_rbtree_list.h: New file.
33119         * lib/gl_rbtree_list.c: New file.
33120         * lib/gl_anyrbtree_list1.h: New file.
33121         * lib/gl_anyrbtree_list2.h: New file.
33122         * lib/gl_anytree_list1.h: New file.
33123         * lib/gl_anytree_list2.h: New file.
33124         * lib/gl_linkedhash_list.h: New file.
33125         * lib/gl_linkedhash_list.c: New file.
33126         * lib/gl_anyhash_list1.h: New file.
33127         * lib/gl_anyhash_list2.h: New file.
33128         * lib/gl_avltreehash_list.h: New file.
33129         * lib/gl_avltreehash_list.c: New file.
33130         * lib/gl_rbtreehash_list.h: New file.
33131         * lib/gl_rbtreehash_list.c: New file.
33132         * lib/gl_anytreehash_list1.h: New file.
33133         * lib/gl_anytreehash_list2.h: New file.
33134
33135         * lib/gl_oset.h: New file.
33136         * lib/gl_oset.c: New file.
33137         * lib/gl_array_oset.h: New file.
33138         * lib/gl_array_oset.c: New file.
33139         * lib/gl_avltree_oset.h: New file.
33140         * lib/gl_avltree_oset.c: New file.
33141         * lib/gl_rbtree_oset.h: New file.
33142         * lib/gl_rbtree_oset.c: New file.
33143         * lib/gl_anytree_oset.h: New file.
33144
33145 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
33146
33147         * m4/mkancesdirs.m4: New file.
33148         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
33149         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
33150         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
33151         it.
33152
33153 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
33154
33155         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
33156         * lib/mkancesdirs.h: New files.
33157         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
33158         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
33159         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
33160         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
33161         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
33162         callers changed.  Revamp internals significantly, by not
33163         attempting to create directories that are temporarily more
33164         permissive than the final results.  Do not attempt to use
33165         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
33166         This removes some race conditions, fixes some bugs, and simplifies
33167         things.  Use new dirchownmod function to do owner and mode changes.
33168         * lib/mkdir-p.h: Likewise.
33169         * lib/modechange.c (octal_to_mode): New function.
33170         (struct mode_change): New member mentioned.
33171         (make_node_op_equals): New arg mentioned.  All callers changed.
33172         (mode_compile): Keep track of which mode bits the user has explicitly
33173         mentioned.
33174         (mode_adjust): New arg DIR, so that we implement the X op correctly.
33175         New arg PMODE_BITS, to keep track of which mode bits the user
33176         mentioned; it treats S_ISUID and S_ISGID speciall.
33177         All callers changed.
33178         * lib/modechange.h: Likewise.
33179
33180 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
33181
33182         * MODULES.html.sh: Add mkancestors.
33183         * modules/mkancesdirs: New module.
33184         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
33185         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
33186         The chdir-safer and afs files are now orphans; I'll remove them
33187         unless someone speaks up.
33188         Add lib/dirchownmod.c, lib/dirchownmod.h.
33189         (Depends-on): Remove alloca, chown, save-cwd, dirname.
33190         Add lchown, mkancesdirs.
33191         (Maintainer): Add self.
33192
33193 2006-07-15  Karl Berry  <karl@gnu.org>
33194
33195         * gnulib-tool: help message wording/arrangement.
33196
33197 2006-07-14  Simon Josefsson  <jas@extundo.com>
33198
33199         * doc/gnulib.texi (Libtool and Windows): New section.
33200
33201 2006-07-12  Simon Josefsson  <jas@extundo.com>
33202
33203         * modules/gendocs (License): Fix license, approved by Karl.
33204
33205 2006-07-12  Eric Blake  <ebb9@byu.net>
33206
33207         * MODULES.html.sh: Add gendocs.
33208
33209 2006-07-11  Eric Blake  <ebb9@byu.net>
33210
33211         * modules/fdl: New module, to install doc/fdl.texi.
33212         * MODULES.html.sh: Add new section for documentation modules.
33213         * gnulib-tool: Avoid space-tab.
33214         (--doc-base): New option, to manage files from doc.
33215
33216 2006-07-11  Eric Blake  <ebb9@byu.net>
33217
33218         * m4/absolute-header.m4: Fix comments to match recent change.
33219
33220 2006-07-11  Eric Blake  <ebb9@byu.net>
33221
33222         * gnulib-tool: List --doc-base before --tests-base.
33223
33224 2006-07-11  Derek R. Price  <derek@ximbiot.com>
33225
33226         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
33227
33228 2006-07-11  Bruno Haible  <bruno@clisp.org>
33229
33230         * README: Mention where to put documentation.
33231
33232 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33233
33234         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
33235
33236 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
33237
33238         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
33239         to stdint.m4.
33240
33241 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
33242
33243         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
33244         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
33245         "no/such/file/stdint.h" when there is no such file, so that
33246         the resulting C code can be parsed by dodgy compilers.
33247         Problems reported by Bob Proulx.
33248
33249 2006-07-10  Derek R. Price  <derek@ximbiot.com>
33250
33251         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
33252         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
33253         macros into the GNU _D_EXACT_NAMLEN.
33254         * lib/savedir.c:  Likewise.
33255         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
33256
33257 2006-07-10  Derek R. Price  <derek@ximbiot.com>
33258         and Paul Eggert  <eggert@cs.ucla.edu>
33259
33260         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
33261         * m4/savedir.m4:
33262         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
33263         macros into the GNU _D_EXACT_NAMLEN.
33264
33265 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33266
33267         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
33268         around the absolute name, to work around a problem with the HP-UX
33269         11.23 native C compiler, reported by Bob Proulx.
33270
33271 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33272
33273         * doc/maintain.texi, make-stds.texi: Sync from
33274         <http://savannah.gnu.org/projects/gnustandards>.
33275
33276 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33277
33278         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
33279
33280 2006-07-09  Jim Meyering  <jim@meyering.net>
33281
33282         * m4/glob.m4: Remove a doubled word in a comment.
33283
33284 2006-07-09  Jim Meyering  <jim@meyering.net>
33285
33286         * lib/argp-pv.c: Remove a doubled word in a comment.
33287         * lib/check-version.c (check_version): Likewise.
33288         * lib/javacomp.c (compile_java_class): Likewise.
33289
33290 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
33291
33292         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
33293         for the benefit of people using Autoconf 2.60.  If you want to
33294         support older Autoconf versions you can copy m4/onceonly_2_57.m4
33295         (or m4/onceonly.m4, if pre-2.57) manually.
33296
33297 2006-07-08  Jim Meyering  <jim@meyering.net>
33298
33299         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
33300         comment.
33301         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
33302         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
33303         comment.
33304
33305 2006-07-08  Jim Meyering  <jim@meyering.net>
33306
33307         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
33308
33309 2006-07-07  Simon Josefsson  <jas@extundo.com>
33310
33311         * tests/test-crc.c: Change expected crc value, the test vector
33312         were probably computed using the old broken crc.c?
33313
33314 2006-07-06  Simon Josefsson  <jas@extundo.com>
33315
33316         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
33317         now the canonical place for the M4 file).
33318
33319         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
33320         from the sys_socket dependency now.
33321
33322         * modules/inet_pton (Files): Ditto.
33323
33324         * modules/inet_ntop (Files): Ditto.
33325
33326 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
33327
33328         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
33329         not gl_PREREQ_GETUSERSHELL.
33330
33331 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33332
33333         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
33334         with only one argument, for Autoconf 2.60.
33335         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
33336         expand to nothing, so add a shell command to avoid syntax error.
33337         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
33338
33339 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33340
33341         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
33342
33343 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33344
33345         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
33346         no longer needed.  Check for isblank decl.
33347         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
33348         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
33349         of existence.
33350
33351 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33352
33353         * lib/getloadavg.c: Use __VMS, not VMS.
33354         * lib/getopt.c: Likewise.
33355         * lib/getpagesize.h: Likewise.
33356         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
33357         and probably does not work.
33358
33359 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33360
33361         * lib/.cppi-disable: Add wcwidth.
33362         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
33363         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
33364         (ISGRAPH): Remove.  All uses changed to isgraph.
33365         (FOLD) [!defined _LIBC]: Remove special case.
33366         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
33367         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
33368         HAVE_ISBLANK.
33369         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
33370         case.
33371
33372 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
33373
33374         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
33375         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
33376         brackets.  Other minor changes to suppress some compiler
33377         warnings.
33378
33379 2006-07-06  Derek R. Price  <derek@ximbiot.com>
33380         and Paul Eggert  <eggert@cs.ucla.edu>
33381
33382         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
33383         of invoking obsolescent AC_HEADER_DIRENT macro.
33384         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
33385         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
33386         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
33387         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
33388         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
33389         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
33390         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
33391         * m4/readdir.m4: Remove; no longer needed.
33392
33393 2006-07-06  Derek R. Price  <derek@ximbiot.com>
33394         and Paul Eggert  <eggert@cs.ucla.edu>
33395
33396         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
33397         Don't worry about this obsolete case any more.
33398         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
33399         directories.
33400         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
33401         worry about this obsolete case any more.
33402         * lib/fts.c: Likewise.
33403         * lib/getcwd.c: Likewise.
33404         * lib/glob.h: Likewise.
33405         * lib/savedir.c: Likewise.
33406
33407 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
33408
33409         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
33410         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
33411         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
33412         needed.
33413         All uses removed.
33414         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33415         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
33416         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
33417         needed.
33418         * m4/getdate.m4 (gl_GETDATE): Likewise.
33419         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
33420         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
33421         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
33422         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33423         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
33424         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33425         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
33426         needed.
33427
33428 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
33429
33430         * lib/memcasecmp.c: Include <limits.h>.
33431         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
33432         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
33433         Don't assume isdigit succeeds only on '0' through '9'.
33434
33435 2006-07-05  Eric Blake  <ebb9@byu.net>
33436
33437         * modules/getaddrinfo (Depends-on): Add snprintf.
33438
33439 2006-07-05  Eric Blake  <ebb9@byu.net>
33440
33441         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
33442         to avoid 'header present but could not be compiled' on cygwin.
33443
33444 2006-07-05  Eric Blake  <ebb9@byu.net>
33445
33446         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
33447         missing from netdb.h.
33448         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
33449
33450 2006-07-05  Derek R. Price  <derek@ximbiot.com>
33451
33452         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
33453         no longer needed.
33454         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
33455         * m4/getdate.m4 (gl_GETDATE): Likewise.
33456         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
33457         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
33458         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
33459         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33460         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33461
33462 2006-07-05  Derek R. Price  <derek@ximbiot.com>
33463
33464         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
33465         All uses of is_space replaced by isspace.
33466         * lib/exit.h: Don't talk about STDC_HEADERS.
33467         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
33468         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
33469         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
33470         replaced by isprint etc.
33471         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
33472         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
33473         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
33474         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
33475         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
33476         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
33477
33478 2006-07-05  Bruno Haible  <bruno@clisp.org>
33479
33480         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
33481         the function exists, before testing against AIX.
33482         Reported by Martin Lambers <marlam@marlam.de>.
33483
33484 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
33485
33486         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
33487         From Mark D. Baushke.
33488
33489 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
33490
33491         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
33492         to the absolute name, not just one, to bypass Sun C 5.8's
33493         "warning: #include of /usr/include/... may be non-portable".
33494
33495 2006-07-04  Eric Blake  <ebb9@byu.net>
33496
33497         * modules/dirname-tests: New test module.
33498         * tests/test-dirname.c: New file, replacing dirname.c
33499         TEST_DIRNAME section that was recently deleted.
33500
33501 2006-07-04  Bruno Haible  <bruno@clisp.org>
33502
33503         Assume ANSI C header files and <ctype.h> functions.
33504         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
33505         (mbsnwidth): Use isprint, iscntrl instead.
33506
33507 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33508
33509         Merge from coreutils.
33510         * MODULES.html.sh: Add xstrtold.
33511         * modules/xstrtold: New file.
33512         * modules/cycle-check (Files): Add lib/same-inode.h.
33513         * modules/dirname (Files): Add m4/double-slash-root.m4.
33514         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
33515         * modules/mkdir-p (Files): Add lib/same-inode.h.
33516         * modules/same (Files): Add lib/same-inode.h.
33517
33518 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33519
33520         * m4/absolute-header.m4: Renamed from full-header-path.m4.
33521         This is to keep the terminology clean; POSIX talks about
33522         "absolute pathnames", not "full pathnames", but the GNU
33523         Coding Standards say to use "path" for something else;
33524         so use "absolute" to keep both sides happy.
33525         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
33526         Set gl_absolute_header, not gl_full_header_path.
33527         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
33528         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
33529         All uses changed.
33530
33531         Merge from coreutils.
33532
33533         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
33534
33535         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
33536         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
33537         want to require the building of c-strtod.o.
33538         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
33539         needs -lm directly.
33540         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
33541
33542         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
33543
33544         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
33545         --as-needed option if available.  Problem reported by Albert Chin in
33546         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
33547         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
33548         cc merely issues a bunch of annoying warnings for --as-needed
33549         (this problem was reported by Bob Proulx).  Also, try linking with
33550         -lm to detect a bug in binutils 2.16 (this problem was reported
33551         by Ralf Wildenhues).
33552
33553         2006-06-18  Jim Meyering  <jim@meyering.net>
33554
33555         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
33556         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
33557         macro.
33558         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
33559         also check for glibc-2.4's abort-inducing bug.
33560
33561         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
33562         Low-probability clean-up should be to use rmdir to get rid of
33563         the just-created directory, not unlink.
33564
33565         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
33566         configure fail, and request a bug report to inform us about it.
33567         Add a comment that, barring reports to the contrary, in 2007 we'll
33568         assume ftruncate is universally available.
33569
33570         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
33571
33572         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
33573
33574         2006-03-12  Jim Meyering  <jim@meyering.net>
33575
33576         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
33577         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
33578         * m4/same.m4 (gl_SAME): Likewise.
33579         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
33580
33581         2006-03-11  Eric Blake  <ebb9@byu.net>
33582
33583         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
33584         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
33585         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
33586         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
33587
33588 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33589
33590         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
33591         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
33592         reported by Mark D. Baushke, one in
33593         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
33594
33595         Merge from coreutils.
33596
33597         * lib/.cppi-disable: Add stdint_.h.
33598         * lib/.cvsignore: Add stdint.h.
33599
33600         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
33601
33602         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
33603         both double and long double versions.
33604         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
33605         * lib/xstrtold.c: New file.
33606         * lib/xstrtod.h (xstrtold): New decl.
33607
33608         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
33609
33610         * lib/filemode.c (setst): Remove.
33611         (strmode): Rewrite to avoid setst.  This makes the code shorter,
33612         (arguably) clearer, and the generated code is a bit smaller on my
33613         Debian GNU/Linux stable x86 host.
33614
33615         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
33616
33617         * lib/filemode.c: Include "filemode.h" first, to test the interface.
33618         Assume that filemode.h includes sys/types.h and sys/stat.h.
33619         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
33620         (ftypelet): Reorder to put common cases first, for efficiency.
33621         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
33622         to do 'M'.
33623         (strmode): Renamed from mode_string, and now stores 12 bytes instead
33624         of 10, for compatibility with FreeBSD.  All callers changed.
33625         (filemodestring): Now stores 12 bytes instead of 10, and sets file
33626         types that can't be deduced solely from st_mode.  First arg is now a
33627         const pointer.
33628         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
33629         (strmode): Renamed from mode_string.
33630         (filemodestring): New decl.
33631         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
33632         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
33633         needed.
33634         (S_ISPORT, S_ISWHT): New macros, if not already defined.
33635
33636         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
33637
33638         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
33639         fsusage.h now does that.  Include fsusage.h first, to test interface.
33640         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
33641         at most one method (the old code could have generated decls that
33642         didn't conform to C89, not that this was ever exercised).
33643         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
33644
33645         2006-03-19  Jim Meyering  <jim@meyering.net>
33646
33647         Work even in a chroot where d_ino values for entries in "/"
33648         don't match the stat.st_ino values for the same names.
33649         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
33650         number, iterate through all entries again, using lstat instead.
33651         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
33652         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
33653
33654         * lib/getcwd.c (__getcwd): Clarify a comment.
33655         Use memcpy in place of a call to strcpy.
33656
33657         2006-03-12  Jim Meyering  <jim@meyering.net>
33658
33659         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
33660         matches that of the current directory (which we're about to chdir ".."
33661         out of), then save the dev-ino of the parent, instead.
33662
33663         * lib/same-inode.h (SAME_INODE): New file/macro.
33664         * lib/chdir-safer.c (SAME_INODE): Remove definition.
33665         Include "same-inode.h", instead.
33666         * lib/same.c: Likewise.
33667         * lib/cycle-check.h: Include "same-inode.h".
33668         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
33669         * lib/cycle-check.c (SAME_INODE): Remove definition.
33670         * lib/root-dev-ino.h: Include "same-inode.h".
33671
33672         2006-03-11  Eric Blake  <ebb9@byu.net>
33673
33674         * lib/same.c (same_name): s/base_name/last_component/
33675         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
33676         * lib/filenamecat.c (file_name_concat): Likewise.
33677
33678         2006-03-11  Eric Blake  <ebb9@byu.net>,
33679                     Paul Eggert  <eggert@cs.ucla.edu>
33680
33681         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
33682         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
33683         drive prefix.
33684         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
33685         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
33686         (last_component): New method.
33687         * lib/dirname.c (dir_len): Determine when drive letters need a
33688         subsequent slash.  Preserve // when it is special.
33689         (dir_name): Don't append dot when drive letter is absolute.
33690         [TEST_DIRNAME]: Move into a full-blown gnulib test.
33691         * lib/basename.c (base_name): New semantics - malloc the result.
33692         Preserve // when it is special.  Preserve relative files that look
33693         like drive letters.
33694         (base_len): Preserve // when it is special.
33695         (last_component): New method, similar to old base_name semantics.
33696         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
33697         base_name.  Strip redundant slashes from ///.
33698
33699 2006-07-03  Jim Meyering  <jim@meyering.net>
33700
33701         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
33702         macro is used before the first cycle_check call.
33703
33704 2006-07-03  Eric Blake  <ebb9@byu.net>
33705
33706         * modules/dirname (Depends-on): Add xstrndup.
33707
33708 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33709
33710         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
33711         test cases, so that config.log is a bit easier to follow.
33712
33713 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33714
33715         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
33716         both are 64 bits, since this seems to be the tradition, and this
33717         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
33718         we ever run into a host that prefers long long to long in this
33719         case, we'll need another configure-time test.  Problem reported by
33720         Jim Meyering.
33721
33722 2006-07-02  Eric Blake  <ebb9@byu.net>
33723
33724         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
33725
33726 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33727
33728         * modules/inttypes (Depends-on): No longer depends on stdint.
33729         * modules/stdint (Description): Say more about assumptions.
33730         Say that the fast types might differ.  Say macros are used.
33731         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
33732         (Makefile.am): Revise list of substituted symbols to match
33733         new stdint.m4.
33734         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
33735         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
33736         * tests/test-stdint.c (verify_same_types)
33737         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
33738         the code conforms to C99/C89.
33739         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
33740         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
33741
33742 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33743
33744         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
33745         but fix a bug, by requiring at least 64 bits.
33746         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
33747         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
33748         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
33749         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
33750
33751         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
33752         changes.  Make 2.59 a prerequisite.  Check and substitute for
33753         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
33754         inttypes.h.  Do not use special include files; just use the
33755         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
33756         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
33757         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
33758         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
33759         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
33760         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
33761         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
33762         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
33763         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
33764         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
33765         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
33766         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
33767         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
33768         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
33769         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
33770         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
33771         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
33772         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
33773         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
33774         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
33775         WINT_MAX.  Check for C99 conformance more strictly, by detecting
33776         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
33777         not check for things that C99 does not require, e.g., int8_t.  If
33778         a test isn't needed unless <stdint.h> isn't working, and is
33779         unlikely to be needed for any other reason, then don't do it
33780         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
33781         size_t, since we assume C89 freestanding at least.  Do not check
33782         for sig_atomic_t, wchar_t, or wint_t, since the code now does
33783         the right thing even if the types are not defined.  Instead use:
33784         (gl_STDINT_TYPE_PROPERTIES): New macro.
33785         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
33786         testing whether <sys/types.h> clashes, as Autoconf does this for
33787         us now.  All uses removed.
33788         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
33789         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
33790         (gl_CHECK_TYPE_SAME):
33791         Remove; no longer needed.
33792         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
33793         exists, since we'll return 0 anyway in that case.
33794         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
33795
33796 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33797
33798         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
33799         possible collision with system files.
33800         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
33801         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
33802         WCHAR_MIN and WCHAR_MAX in this case.
33803         (<stddef.h>): Do not include; no longer needed.
33804         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
33805         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
33806         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
33807         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
33808         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
33809         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
33810         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
33811         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
33812         !defined(__c99))]: Include in this case too, since it's harmless
33813         now.
33814         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
33815         dangerous to do so.
33816         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
33817         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
33818         (_STDINT_MIN, _STDINT_MAX): New macros.
33819         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
33820         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
33821         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
33822         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
33823         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
33824         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
33825         macros, not typedefs; this simplifies things quite a bit.
33826         Use long int for all types narrower than int64_t.
33827         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
33828         Define in terms of long long int or int64_t or long int,
33829         not int64_t or int32_t.  This saves some compile-time testing.
33830         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
33831         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
33832         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
33833         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
33834         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
33835         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
33836         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
33837         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
33838         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
33839         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
33840         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
33841         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
33842         undef any previous version and define our own version, for
33843         simplicity and consistency with the new macros for types.
33844         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
33845         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
33846         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
33847         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
33848         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
33849         @WINT_T_SUFFIX@ to keep things simple here.
33850         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
33851         Simplify by assuming typical 8/16/32/64 host, since we're
33852         already doing that elsewhere anyway.
33853         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
33854         and assume long long int is 64 bits if available.  This
33855         speeds up 'configure'.
33856
33857 2006-07-01  Eric Blake  <ebb9@byu.net>
33858
33859         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
33860         Reported by Andreas Buening.
33861
33862 2006-07-01  Eric Blake  <ebb9@byu.net>
33863
33864         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
33865
33866 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
33867
33868         * lib/getaddrinfo.c: fixed typo
33869
33870 2006-06-29  Jim Meyering  <jim@meyering.net>
33871
33872         * modules/strftime (Maintainer): Add my name, since with the
33873         FPRINTFTIME changes strftime.c has forked from glibc.
33874
33875 2006-06-29  Eric Blake  <ebb9@byu.net>
33876
33877         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
33878
33879 2006-06-29  Eric Blake  <ebb9@byu.net>
33880
33881         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
33882
33883 2006-06-29  Eric Blake  <ebb9@byu.net>
33884
33885         * lib/stat_.h: New file.
33886
33887 2006-06-29  Eric Blake  <ebb9@byu.net>
33888
33889         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
33890         unused static function.
33891
33892 2006-06-29  Eric Blake  <ebb9@byu.net>
33893
33894         * doc/functions.texi (Function Portability): Document missing lstat
33895         on mingw.
33896
33897 2006-06-29  Eric Blake  <ebb9@byu.net>
33898
33899         * MODULES.html.sh: Add sys_stat.
33900         * modules/sys_stat: New module.
33901         * modules/mkstemp (Depends-on): Add sys_stat.
33902
33903 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33904
33905         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
33906
33907 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33908
33909         * m4/c-bs-a.m4: Removed.
33910
33911 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33912
33913         * lib/strftime.c: Assume strftime() exists.
33914
33915 2006-06-29  Derek Price  <derek@ximbiot.com>
33916
33917         * modules/c-bs-a: Removed - \a is C89.
33918         * MODULES.html.sh: Remove c-bs-a.
33919
33920 2006-06-29  Bruno Haible  <bruno@clisp.org>
33921
33922         * modules/wcwidth (License): Change to LGPL.
33923
33924 2006-06-28  Simon Josefsson  <jas@extundo.com>
33925
33926         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
33927         on _WIN32.
33928
33929         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
33930         getnameinfo.
33931
33932 2006-06-28  Simon Josefsson  <jas@extundo.com>
33933
33934         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
33935
33936 2006-06-28  Simon Josefsson  <jas@extundo.com>
33937
33938         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
33939         functions there.  It will succeed on Windows XP, but on Windows
33940         2000 and (presumably) earlier, it will fail, and use the internal
33941         re-implementation.
33942         (use_win32_p): New function.
33943         (getaddrinfo): Use strtoul on servname, to support numeric ports.
33944         Support AI_NUMERICSERV to disable getservbyname.
33945         (getnameinfo): New function, only supports
33946         NI_NUMERICHOST|NI_NUMERICSERV for now.
33947
33948         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
33949         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
33950         getnameinfo.
33951
33952 2006-06-28  Eric Blake  <ebb9@byu.net>
33953
33954         * modules/wcwidth: New file.
33955         * modules/mbchar (Depends-on): Add wcwidth.
33956         * modules/mbswidth (Depends-on): Add wcwidth.
33957         * MODULES.html.sh: Add wcwidth.
33958
33959 2006-06-28  Eric Blake  <ebb9@byu.net>
33960
33961         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
33962         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
33963
33964 2006-06-28  Eric Blake  <ebb9@byu.net>
33965
33966         * lib/xvasprintf.h: Fix comments.
33967
33968 2006-06-28  Eric Blake  <ebb9@byu.net>
33969
33970         * lib/mbchar.h (wcwidth): Include wcwidth.h.
33971         * lib/mbswidth.c (wcwidth): Move from here...
33972         * lib/wcwidth.h: ...to this new file.
33973
33974 2006-06-28  Derek R. Price  <derek@ximbiot.com>
33975
33976         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
33977
33978         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
33979         it's obsolete.
33980         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
33981
33982 2006-06-28  Derek R. Price  <derek@ximbiot.com>
33983
33984         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
33985         Autoconf 2.60 says this stuff was obsolete.
33986
33987 2006-06-28  Bruno Haible  <bruno@clisp.org>
33988
33989         * modules/wcwidth (Files): Add m4/wchar_t.m4.
33990
33991 2006-06-28  Bruno Haible  <bruno@clisp.org>
33992
33993         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
33994         gt_TYPE_WCHAR_T.
33995
33996 2006-06-28  Bruno Haible  <bruno@clisp.org>
33997
33998         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
33999         declaration for wcwidth.
34000         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
34001
34002 2006-06-28  Bruno Haible  <bruno@clisp.org>
34003
34004         * lib/mkdtemp.c [MINGW]: Include <io.h>.
34005         (mkdir): Define using _mkdir.
34006
34007 2006-06-28  Bruno Haible  <bruno@clisp.org>
34008
34009         * lib/getaddrinfo.h: Fix POSIX URL.
34010         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
34011         _WIN32.
34012         (use_win32_p): Make static.
34013         (getaddrinfo): Reject service name if it is empty or does not consist
34014         solely of decimal digits, or if its value is > 65535.
34015         (getnameinfo): Remove useless casts.
34016
34017 2006-06-27  Simon Josefsson  <jas@extundo.com>
34018
34019         * modules/sys_select: New file, suggested by Bruno Haible, Paul
34020         Eggert and Martin Lambers.
34021
34022 2006-06-27  Simon Josefsson  <jas@extundo.com>
34023
34024         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
34025         Eggert and Martin Lambers.
34026
34027 2006-06-27  Bruno Haible  <bruno@clisp.org>
34028
34029         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
34030         result to 0, not to empty.
34031         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
34032
34033 2006-06-27  Bruno Haible  <bruno@clisp.org>
34034
34035         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
34036
34037 2006-06-26  Simon Josefsson  <jas@extundo.com>
34038
34039         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
34040         present.
34041
34042 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
34043
34044         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
34045         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
34046         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
34047
34048 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
34049
34050         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
34051
34052 2006-06-26  Bruno Haible  <bruno@clisp.org>
34053
34054         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
34055
34056 2006-06-26  Bruno Haible  <bruno@clisp.org>
34057
34058         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
34059
34060 2006-06-26  Bruno Haible  <bruno@clisp.org>
34061
34062         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
34063         SGI C compiler in pre-C99 mode.
34064         Suggested by Mark D. Baushke and Larry Jones.
34065
34066 2006-06-26  Bruno Haible  <bruno@clisp.org>
34067
34068         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
34069         WCHAR_MAX.
34070         Reported by Mark D. Baushke and Larry Jones.
34071
34072 2006-06-26  Bruno Haible  <bruno@clisp.org>
34073
34074         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
34075         in pre-C99 mode.
34076         Suggested by Mark D. Baushke and Larry Jones.
34077
34078 2006-06-23  Simon Josefsson  <jas@extundo.com>
34079             Bruno Haible  <bruno@clisp.org>
34080
34081         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
34082         Emit mostlyclean-local rule.
34083         (func_emit_tests_Makefile_am): Likewise.
34084         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
34085
34086 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
34087
34088         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
34089
34090 2006-06-23  Bruno Haible  <bruno@clisp.org>
34091
34092         * tests/test-stdint.c: Update to match ISO C 99 Technical
34093         Corrigendum 1.
34094
34095 2006-06-23  Bruno Haible  <bruno@clisp.org>
34096
34097         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
34098
34099 2006-06-23  Bruno Haible  <bruno@clisp.org>
34100
34101         * lib/stdint_.h: Treat IRIX like OpenBSD.
34102
34103 2006-06-23  Bruno Haible  <bruno@clisp.org>
34104
34105         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
34106         ISO C 99 Technical Corrigendum 1.
34107
34108 2006-06-22  Simon Josefsson  <jas@extundo.com>
34109
34110         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
34111         MinGW.
34112
34113 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
34114
34115         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
34116         needed.  Some compiler complained about some of them.  Problem reported
34117         by Larry Jones in
34118         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
34119
34120 2006-06-21  Simon Josefsson  <jas@extundo.com>
34121
34122         * tests/test-getaddrinfo.c: New file.
34123
34124         * modules/getaddrinfo-tests: New file.
34125
34126         * MODULES.html.sh: Add inet_pton.
34127
34128         * modules/inet_pton: New file.
34129
34130 2006-06-21  Simon Josefsson  <jas@extundo.com>
34131
34132         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
34133         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
34134         of using the (limited) gnulib implementation on Windows XP.
34135
34136         * m4/inet_pton.m4: New file.
34137
34138 2006-06-21  Simon Josefsson  <jas@extundo.com>
34139
34140         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
34141         variable.
34142
34143         * lib/socket_.h: Don't define WINVER.
34144
34145         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
34146         slightly modified to work in gnulib.
34147
34148 2006-06-21  Simon Josefsson  <jas@extundo.com>
34149
34150         * doc/gnulib.texi (Windows sockets): Add.
34151
34152 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
34153
34154         * lib/read-file.c (fread_file): Start with buffer allocation of
34155         0 bytes rather than 1 byte; this simplifies the code.
34156         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
34157         code to free buffer and save/restore errno.
34158         (internal_read_file): Remove unused local.
34159
34160 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
34161
34162         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
34163         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
34164         Problem reported by Denis Excoffier in
34165         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
34166
34167 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34168
34169         * modules/sys_socket, modules/socklen: Include sys/types since
34170         FreeBSD 4.x's sys/socket.h needs it.
34171
34172 2006-06-19  Simon Josefsson  <jas@extundo.com>
34173
34174         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
34175
34176 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
34177
34178         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
34179
34180 2006-06-19  Bruno Haible  <bruno@clisp.org>
34181
34182         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
34183         and FULL_PATH_INTTYPES_H in angle brackets.
34184         Reported by Mark D. Baushke <mdb@gnu.org>.
34185
34186 2006-06-17  Eric Blake  <ebb9@byu.net>
34187
34188         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
34189         errno.
34190
34191 2006-06-17  Bruno Haible  <bruno@clisp.org>
34192
34193         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
34194         <sys/inttypes.h>.
34195
34196 2006-06-17  Bruno Haible  <bruno@clisp.org>
34197
34198         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
34199         whether errno is declared. Assume <errno.h> declares errno.
34200
34201 2006-06-17  Bruno Haible  <bruno@clisp.org>
34202
34203         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
34204
34205 2006-06-17  Bruno Haible  <bruno@clisp.org>
34206
34207         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
34208         problem on Solaris 2.5.1.
34209
34210 2006-06-16  Eric Blake  <ebb9@byu.net>
34211
34212         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
34213         * lib/unicodeio.c [!defined errno]: Likewise.
34214         * lib/strtol.c [!defined errno]: Likewise.
34215         * lib/strtod.c [!defined errno]: Likewise.
34216
34217 2006-06-15  Eric Blake  <ebb9@byu.net>
34218
34219         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
34220
34221 2006-06-15  Eric Blake  <ebb9@byu.net>
34222
34223         * config/srclist.txt (ssize_t.m4): Lose sync.
34224
34225 2006-06-15  Bruno Haible  <bruno@clisp.org>
34226
34227         * modules/stdint (Files): Include m4/full-header-path.m4,
34228         m4/size_max.m4, m4/wchar_t.m4.
34229         (Makefile.am): Many more substitutions.
34230         * modules/stdint-tests: New file.
34231         * tests/test-stdint.c: New file.
34232
34233 2006-06-15  Bruno Haible  <bruno@clisp.org>
34234
34235         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
34236         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
34237         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
34238         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
34239         gl_CHECK_TYPE_SAME): New macros.
34240
34241 2006-06-15  Bruno Haible  <bruno@clisp.org>
34242
34243         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
34244
34245 2006-06-15  Bruno Haible  <bruno@clisp.org>
34246
34247         * lib/stdint_.h: Rewritten to be fully auto-configured.
34248         Fixes bug on HP-UX/IA64.
34249
34250 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
34251
34252         * lib/getdate.y (__attribute__): Don't define if already defined.
34253         Problem reported by Larry Jones.
34254         * lib/utimens.c (__attribute__): Likewise.
34255
34256 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
34257
34258         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
34259         reported by Andreas Schwab.
34260
34261 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34262             Bruno Haible  <bruno@clisp.org>
34263
34264         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
34265         check for the declaration of strnlen and a run test that exposes the
34266         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
34267         rpl_strndup.
34268
34269 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34270             Bruno Haible  <bruno@clisp.org>
34271
34272         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
34273
34274 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34275
34276         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
34277         compile test, for Tru64 4.0D.
34278
34279 2006-05-28  Karl Berry  <karl@gnu.org>
34280
34281         * config/srclist.txt (printf-args.c): lose sync.
34282
34283 2006-05-26  Martin Lambers  <marlam@marlam.de>
34284
34285         * lib/getpass.c: Updates the test for the native W32 API, and adds
34286         missing includes, thus fixing compilation warnings.
34287
34288 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
34289
34290         * lib/exclude.c (exclude_fnmatch): New function.
34291         (excluded_file_name): Call exclude_fnmatch.
34292         * lib/exclude.h (excluded_file_name): New prototype
34293
34294 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
34295
34296         * lib/tempname.c (small_open, large_open): New macros.
34297         (__open, __open64) [!_LIBC]: Remove.
34298         (__gen_tempname): Use small_open and large_open instead of __open
34299         and __open64.  This fixes a portability bug on HP-UX 11.11i
34300         reported by Simon Wing-Tang in
34301         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
34302
34303 2006-05-24  Bruno Haible  <bruno@clisp.org>
34304
34305         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
34306         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
34307         Reported by Thorsten Maerz <torte@netztorte.de> via
34308         Aaron Stone <aaron@serendipity.cx>.
34309
34310 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
34311
34312         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
34313         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
34314         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
34315         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
34316         not really conditional on the cache.
34317         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
34318
34319 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
34320
34321         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
34322         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
34323         (my_usleep): Don't mishandle maximum value.
34324
34325 2006-05-19  Jim Meyering  <jim@meyering.net>
34326
34327         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
34328
34329 2006-05-17  Bruno Haible  <bruno@clisp.org>
34330
34331         Cygwin portability.
34332         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
34333
34334 2006-05-17  Bruno Haible  <bruno@clisp.org>
34335
34336         * lib/stdint_.h: Fix recognition of Cygwin.
34337
34338 2006-05-15  Bruno Haible  <bruno@clisp.org>
34339
34340         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
34341         on libtool patch by Ralf Wildenhues.
34342
34343 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
34344
34345         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
34346         test for C99 conformance; (bool) 0.5 is an integer constant
34347         expression, but (bool) -0.5 is not.  Problem reported by Fedor
34348         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
34349
34350 2006-05-11  Simon Josefsson  <jas@extundo.com>
34351
34352         * m4/xvasprintf.m4: Fix obvious typo.
34353
34354 2006-05-11  Jim Meyering  <jim@meyering.net>
34355
34356         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
34357         James Lemley.
34358
34359 2006-05-10  Simon Josefsson  <jas@extundo.com>
34360
34361         * lib/md4.c: Typo fix, update copyright years.
34362         (K1, K2): Don't use L because it turn computations into 64-bit on
34363         64-bit platforms.
34364
34365 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
34366
34367         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
34368         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
34369         unwanted sign propagation, e.g., on hosts with 64-bit int.
34370         There still are some problems with reeelly weird theoretical hosts
34371         (e.g., 33-bit int) but it's not worth worrying about now.
34372         * lib/sha1.c (rol): Likewise.
34373         (K1, K2, K3, K4): Remove unnecessary L suffix.
34374
34375 2006-05-10  Bruno Haible  <bruno@clisp.org>
34376
34377         * lib/des.c: Cast to avoid warnings.
34378
34379 2006-05-09  Bruno Haible  <bruno@clisp.org>
34380
34381         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
34382         (Depends-on): Depend also on xsize, stdarg.
34383         (configure.ac): Add gl_XVASPRINTF.
34384
34385 2006-05-09  Bruno Haible  <bruno@clisp.org>
34386
34387         * m4/xvasprintf.m4: New file.
34388
34389 2006-05-09  Bruno Haible  <bruno@clisp.org>
34390
34391         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
34392         (EOVERFLOW): Define fallback value.
34393         (xstrcat): New function.
34394         (xvasprintf): Recognize the special case of a string concatenation.
34395
34396 2006-05-08  Eric Blake  <ebb9@byu.net>
34397
34398         * gnulib-tool (func_version): Base copyright year on CVS date.
34399         (func_emit_copyright_notice): New function.
34400         (func_emit_lib_Makefile_am): Use it.
34401         (func_emit_tests_Makefile_am): Likewise.
34402         (func_import): Likewise.
34403
34404 2006-05-08  Bruno Haible  <bruno@clisp.org>
34405
34406         * modules/stdarg: New file.
34407         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
34408
34409 2006-05-08  Bruno Haible  <bruno@clisp.org>
34410
34411         * m4/stdarg.m4: New file, from GNU gettext.
34412
34413 2006-05-08  Bruno Haible  <bruno@clisp.org>
34414
34415         * config/srclist.txt (build-aux/config.rpath): different from latest
34416         release.
34417
34418 2006-05-08  Bruno Haible  <bruno@clisp.org>
34419
34420         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
34421
34422 2006-05-05  Jim Meyering  <jim@meyering.net>
34423
34424         * m4/warning.m4: New file, derived from bison's file by the same name.
34425
34426 2006-05-03  Bruno Haible  <bruno@clisp.org>
34427
34428         * lib/stdint_.h: Shorter URL.
34429         * lib/inttypes.h: Likewise.
34430
34431 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34432
34433         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
34434
34435 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34436
34437         * lib/verify.h: Document the internals better.  Most of this change
34438         was written by Bruno Haible.
34439
34440 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34441
34442         * doc/verify.texi: New file, partly based on a proposal by
34443         Bruno Haible.
34444
34445 2006-05-02  Bruno Haible  <bruno@clisp.org>
34446
34447         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
34448         test from here...
34449         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
34450
34451 2006-04-29  Bruno Haible  <bruno@clisp.org>
34452
34453         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
34454         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
34455
34456 2006-04-29  Bruno Haible  <bruno@clisp.org>
34457
34458         * gnulib-tool: Make --update option actually work.
34459
34460 2006-04-29  Bruno Haible  <bruno@clisp.org>
34461
34462         * doc/gcd.texi: New file.
34463         * doc/gnulib.texi: Include it.
34464
34465 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
34466
34467         * lib/getdate.y (get_date): When adding relative date, start with the
34468         initial time, not with the result of the first mktime call.
34469
34470 2006-04-25  Bruno Haible  <bruno@clisp.org>
34471
34472         * gnulib-tool (func_import): Output the include directives in three
34473         blocks, sorted separately.
34474         Reported by Ben Pfaff <blp@cs.stanford.edu>.
34475
34476 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
34477
34478         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
34479         to define main with arguments, for C++.  Reported by Eric Blake.
34480         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
34481         Prefer 'int main ()' to 'int main (void)', for C++.
34482         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
34483         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
34484         for 'main', for C99 and C++.
34485
34486 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
34487
34488         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
34489         Don't assume that exit status -1 is valid.
34490         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
34491         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
34492         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
34493         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
34494         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
34495         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
34496         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
34497         functions can be used without declaring them, or that you can
34498         exit with status -1.
34499         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
34500
34501 2006-04-24  Karl Berry  <karl@gnu.org>
34502
34503         * config/srclist.txt (longdouble.m4): sync lost.
34504
34505 2006-04-24  Eric Blake  <ebb9@byu.net>
34506
34507         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
34508
34509 2006-04-24  Bruno Haible  <bruno@clisp.org>
34510
34511         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
34512         poll() implementation in AIX.
34513         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34514
34515 2006-04-24  Bruno Haible  <bruno@clisp.org>
34516
34517         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
34518         assigned exactly once.
34519
34520 2006-04-23  Claudio Fontana  <claudio@gnu.org>
34521             Bruno Haible  <bruno@clisp.org>
34522
34523         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
34524         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
34525         for AM_CPPFLAGS.
34526
34527 2006-04-23  Bruno Haible  <bruno@clisp.org>
34528
34529         * modules/copy-file: Depend on unistd.
34530         * modules/execute: Likewise.
34531         * modules/fatal-signal: Likewise.
34532         * modules/findprog: Likewise.
34533         * modules/mkdtemp : Likewise.
34534         * modules/pipe: Likewise.
34535         * modules/wait-process: Likewise.
34536
34537 2006-04-23  Bruno Haible  <bruno@clisp.org>
34538
34539         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
34540         condition was already detected.
34541         Reported by Ben Pfaff <blp@cs.stanford.edu>.
34542
34543 2006-04-23  Bruno Haible  <bruno@clisp.org>
34544
34545         * lib/copy-file.c: Include <unistd.h> unconditionally.
34546         * lib/execute.c: Likewise.
34547         * lib/fatal-signal.c: Likewise.
34548         * lib/findprog.c: Likewise.
34549         * lib/mkdtemp.c: Likewise.
34550         * lib/pipe.h: Likewise.
34551         * lib/pipe.c: Likewise.
34552         * lib/wait-process.h: Likewise.
34553
34554 2006-04-23  Bruno Haible  <bruno@clisp.org>
34555
34556         * gnulib-tool (func_usage): Fix --import description. Document
34557         --update.
34558         (func_import): Create temporary file in a temporary directory, if
34559         --dry-run is specified. Silence errors from 'grep' when there are no
34560         m4 files in $m4dir.
34561         (func_create_testdir): Silence errors from 'grep' when there are no
34562         m4 files in $m4dir.
34563         Reported by Karl Berry <karl@freefriends.org>.
34564
34565 2006-04-20  Bruno Haible  <bruno@clisp.org>
34566
34567         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
34568         one argument, so that the code will be portable to Autoconf 2.60.
34569         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
34570         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
34571         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
34572
34573 2006-04-19  Derek Price  <derek@ximbiot.com>
34574             Eric Blake  <ebb9@byu.net>
34575
34576         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
34577         rather than "/full/path.h".  Update comment to match.  Shorten &
34578         generalize m4_translit call via AS_TR_CPP.
34579
34580 2006-04-19  Derek Price  <derek@ximbiot.com>
34581             Eric Blake  <ebb9@byu.net>
34582
34583         * lib/inttypes.h: Correct grammar in comment.
34584
34585 2006-04-18  Derek Price  <derek@ximbiot.com>
34586             Paul Eggert  <eggert@cs.ucla.edu>
34587
34588         * modules/inttypes: New file.
34589         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
34590
34591 2006-04-18  Derek Price  <derek@ximbiot.com>
34592             Paul Eggert  <eggert@cs.ucla.edu>
34593
34594         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
34595         New files.
34596
34597 2006-04-18  Derek Price  <derek@ximbiot.com>
34598             Paul Eggert  <eggert@cs.ucla.edu>
34599
34600         * lib/inttypes.h: New file.
34601         * lib/strtoimax.c: Assume <inttypes.h>.
34602
34603 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
34604
34605         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
34606         isn't mounted.  Problem reported by Kir Kolyshkin.
34607
34608 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
34609
34610         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
34611         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
34612         Derek R. Price.
34613         * lib/regex.h (RE_DUP_MAX): Update comment to match current
34614         implementation.
34615
34616 2006-04-12  Eric Blake  <ebb9@byu.net>
34617
34618         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
34619         is now done automatically by the corresponding Autoconf macro.
34620
34621 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
34622
34623         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
34624         time_r.h.
34625
34626 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34627
34628         Merge regex changes from libc, removing some of our
34629         POSIX-conformance changes that were rejected and redoing them in a
34630         less-intrusive way.
34631
34632         * lib/regcomp.c (re_compile_internal, init_dfa):
34633         Length arg is now size_t, not Idx.  All uses changed.
34634         (peek_token): Forward decl now says internal_function.
34635         (__re_error_msgid, __re_error_msgid_idx):
34636         Now static rather than extern with attribute_hidden.
34637         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
34638         For some reason libc prefers K&R style defns for external functions.
34639         (regerror) [!defined _LIBC]: Likewise.
34640         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
34641         (seek_collating_symbol_entry, lookup_collation_sequence_value):
34642         (build_range_exp, build_collating_symbol):
34643         Use K&R-style defn.
34644         (re_compile_fastmap): Use '\0' to memset, not 0.
34645         (utf8_sb_map): Make the calculations more obvious.
34646         (init_dfa, parse_bracket_exp, build_charclass_op):
34647         Call calloc and cast result, as glibc does.
34648         (init_word_char, fetch_token, peek_token, peek_token_bracket):
34649         (build_range_exp, build_collating_symbol):
34650         Now internal functions.
34651
34652         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
34653
34654         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
34655         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
34656         Don't depend on VMS; depend on __VMS instead, for POSIX
34657         namespace cleanness.
34658         (regoff_t): Define to ssize_t, not long int.
34659
34660         Remove the REG_ macros named below.  Instead, make the old names
34661         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
34662         __USE_GNU_REGEX.
34663         (REG_BACKSLASH_ESCAPE_IN_LISTS):
34664         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
34665         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
34666         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
34667         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
34668         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
34669         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
34670         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
34671         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
34672         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
34673         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
34674         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
34675         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
34676         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
34677         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
34678         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
34679         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
34680         (REG_NREGS):
34681         Remove.  All uses replaced by the old RE_* names.
34682         (RE_BACKSLASH_ESCAPE_IN_LISTS):
34683         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
34684         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
34685         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
34686         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
34687         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
34688         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
34689         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
34690         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
34691         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
34692         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
34693         Don't bother having these macros be independent of each others'
34694         values, since they no longer exist in the POSIX name space.
34695
34696         Rename the following member names back to their old names,
34697         unless !__USE_GNU_REGEX.  All uses changed back.
34698         (buffer): Renamed from re_buffer.
34699         (allocated): Renamed from re_allocated.
34700         (used): Renamed from re_used.
34701         (syntax): Renamed from re_syntax.
34702         (fastmap): Renamed from re_fastmap.
34703         (translate): Renamed from re_translate.
34704         (can_be_null): Renamed from re_can_be_null.
34705         (regs_allocated): Renamed from re_regs_allocated.
34706         (fastmap_accurate): Renamed from re_fastmap_accurate.
34707         (no_sub): Renamed from re_no_sub.
34708         (not_bol): Renamed from re_not_bol.
34709         (not_eol): Renamed from re_not_eol.
34710         (newline_anchor): Renamed from re_newline_anchor.
34711         (num_regs): Renamed from rm_num_regs.
34712         (start): Renamed from rm_start.
34713         (end): Renamed from rm_end.
34714
34715         (free_state): Move up a bit.
34716
34717         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
34718         #define to be empty.
34719         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
34720         when that is what is intended.
34721         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
34722         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
34723         (MAX): New macro.
34724         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
34725         All uses changed back to re_malloc, etc.  It's now the caller's
34726         responsibility to check for overflow; all callers changed.
34727         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
34728         (re_x2nrealloc): Remove.
34729         (free_state): Remove decl.
34730
34731         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
34732         (re_set_registers, re_exec):
34733         Use K&R-style defn.
34734
34735         2006-01-31  Roland McGrath  <roland@redhat.com>
34736
34737         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
34738         Reported by Mike Frysinger <vapier@gentoo.org>.
34739
34740         2006-01-15  Andreas Jaeger  <aj@suse.de>
34741
34742         [BZ #1950]
34743         * lib/regex_internal.c (re_string_reconstruct): Adjust for
34744         build_wcs_upper_buffer change.
34745         (build_wcs_upper_buffer): Change return type.
34746
34747         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
34748
34749         * lib/regex_internal.h: Include <stdint.h> if available.
34750
34751         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
34752
34753         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
34754
34755         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
34756
34757         * lib/regcomp.c: Adjust for changed secondary hash function.
34758
34759         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
34760
34761         * lib/regex.h: Pretty printing.
34762         Clean up namespace a bit.
34763
34764         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
34765
34766         * lib/regexec.c (update_cur_sifted_state, check_arrival,
34767         check_arrival_add_next_nodes): Avoid using uninitialized variable.
34768
34769         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
34770                     Ulrich Drepper  <drepper@redhat.com>
34771
34772         [BZ #1302]
34773         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
34774         changed.
34775         (bitset_word_t): Renamed from bitset_word.  All uses changed.
34776
34777         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
34778
34779         [BZ #281]
34780         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
34781         * lib/regcomp.c: Remove unnecessary uses of
34782         unsigned RE_TRANSLATE_TYPE.
34783         * lib/regex_internal.h: Likewise.
34784         * lib/regex_internal.c: Likewise.
34785         * lib/regexec.c: Likewise.
34786         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
34787
34788         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
34789
34790         * lib/regexec.c (find_recover_state): Remove unnecessary
34791         initialization.
34792         (transit_state_bkref): Make DFA a const pointer.
34793         (get_subexp): Likewise.
34794         (check_arrival): Likewise.
34795         (update_cur_sifted_state): Likewise.
34796         (re_search_internal): Likewise.
34797         (prune_impossible_nodes): Likewise.
34798         (acquire_init_state_context): Likewise.
34799         (proceed_next_node): Likewise.
34800         (set_regs): Likewise.
34801         (free_fail_stack_return): Likewise.
34802         (check_arrival_expand_ecl): Mark DFA parameter as const.
34803         (check_arrival_expand_ecl_sub): Likewise.
34804         (check_subexp_limits): Likewise.
34805         (sub_epsilon_src_nodes):  Likewise.
34806         (add_epsilon_src_nodes):  Likewise.
34807         (merge_state_array): Likewise.
34808         (update_regs): Likewise.
34809         (build_trtable): Likewise.
34810         (sift_states_backward): Mark MCTX parameter as const.
34811         (build_sifted_states): Likewise.
34812         (update_cur_sifted_state): Likewise.
34813         (sift_states_mkref): Likewise.
34814         (check_arrival_expand_ecl): Mark eclosure as const.
34815         (check_dst_limits_calc_pos_1): Likewise.
34816         * lib/regex_internal.h (re_match_context_t): Make dfa a const
34817         pointer.
34818
34819         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
34820
34821         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
34822         (transit_state_sb): Likewise.
34823         (transit_state_mb): Likewise.
34824         (sift_states_iter_mb): Likewise.
34825         (check_arrival_add_next_nodes): Likewise.
34826         (check_node_accept_bytes): Change first parameter to pointer-to-const.
34827         [_LIBC] (re_search_2_stub): Use mempcpy.
34828
34829         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
34830         mbrtowc for very simple UTF-8 case.
34831
34832         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
34833         a pointer-to-const.
34834         (re_acquire_state_context): Likewise.
34835         * lib/regex_internal.h: Adjust prototypes.
34836
34837         * lib/regex.c: Prevent using C++ compilers.
34838
34839         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
34840         (re_acquire_state_context): Likewise.
34841
34842 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34843
34844         * modules/regex (Depends-on): Add ssize_t.
34845
34846 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34847
34848         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
34849         translation table.
34850
34851 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34852
34853         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
34854
34855 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
34856             Bruno Haible  <bruno@clisp.org>
34857
34858         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
34859         <sys/types.h> and <inttypes.h>.
34860
34861 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34862
34863         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
34864         `__error_t_defined', so argp.h will not typedef the former.
34865
34866 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
34867
34868         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
34869         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
34870         glibc names.  Even if glibc is changed to conform to POSIX, the
34871         traditional names will be available anyway, since regex depends on
34872         the extensions module.  Also, fix a longstanding typo in the
34873         implementation of Spencer ERE test #75 from grep 2.3.  Problems
34874         reported by Emanuele Giaquinta.  Also, change sense of cached
34875         variable, so that the message makes sense.
34876
34877 2006-03-24  Simon Josefsson  <jas@extundo.com>
34878
34879         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
34880         including some doc fixes.
34881         (base64_encode_alloc): Fix +1 bug on allocation failures.
34882
34883 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34884
34885         * lib/base64.c (base64_encode): Do not read past end of array with
34886         unsanitized input on systems with CHAR_BIT > 8.
34887
34888 2006-03-24  Eric Blake  <ebb9@byu.net>
34889
34890         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
34891
34892 2006-03-22  Karl Berry  <karl@gnu.org>
34893
34894         * config/srclist.txt (*setenv.[ch]): get from coreutils.
34895         * config/srclistvars.sh (COREUTILS): new var.
34896
34897 2006-03-17  Jim Meyering  <jim@meyering.net>
34898
34899         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
34900         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
34901
34902 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
34903
34904         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
34905         no longer needs it.  Instead, check that regoff_t is as least
34906         as wide as ptrdiff_t.
34907
34908         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
34909         so that our regex.h stays compatible with the installed regex.
34910         This is helpful for installers who configure --without-included-regex.
34911         Problem reported by Emanuele Giaquinta.
34912
34913 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
34914
34915         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
34916         Typedef to long int, not to off_, as POSIX will likely change
34917         in that direction.
34918
34919 2006-03-15  Eric Blake  <ebb9@byu.net>
34920
34921         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
34922
34923 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
34924
34925         * lib/argp-help.c (validate_uparams): Fix typo
34926         * lib/argp-parse.c (argp_default_options): Consistently begin help
34927         messages with a lowercase letter.
34928
34929 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
34930
34931         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
34932         overrun buffers and shouldn't be used (much as gets shouldn't be
34933         used).
34934         * lib/time_r.c (asctime_r, ctime_r): Likewise.
34935
34936 2006-03-08  Simon Josefsson  <jas@extundo.com>
34937
34938         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
34939         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34940
34941 2006-03-08  Simon Josefsson  <jas@extundo.com>
34942
34943         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
34944         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34945
34946 2006-03-08  Simon Josefsson  <jas@extundo.com>
34947
34948         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
34949         signal that configure disabled the device.
34950
34951 2006-03-08  Simon Josefsson  <jas@extundo.com>
34952
34953         * build-aux/maint.mk: Fix refresh-po, to handle no translated
34954         languages.
34955
34956 2006-03-07  Simon Josefsson  <jas@extundo.com>
34957
34958         * modules/getopt (Depends-on): Add unistd.
34959
34960         * modules/unistd: New file.
34961
34962 2006-03-07  Simon Josefsson  <jas@extundo.com>
34963
34964         * modules/gc-random: New file.
34965
34966 2006-03-07  Simon Josefsson  <jas@extundo.com>
34967
34968         * m4/unistd_h.m4: New file.
34969
34970 2006-03-07  Simon Josefsson  <jas@extundo.com>
34971
34972         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
34973         test to be side-effect free by storing the result in the cache
34974         variable gl_cv_lib_readline, and moving the assignment of
34975         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
34976         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34977
34978 2006-03-07  Simon Josefsson  <jas@extundo.com>
34979
34980         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
34981         error on missing devices (the functions will return an error).
34982
34983         * m4/gc.m4: Move random stuff to gc-random.m4
34984
34985 2006-03-07  Simon Josefsson  <jas@extundo.com>
34986
34987         * lib/unistd_.h: New file.
34988
34989 2006-03-07  Simon Josefsson  <jas@extundo.com>
34990
34991         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
34992
34993 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
34994
34995         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
34996         Problem reported by Juan Manuel Guerrero.
34997
34998 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
34999
35000         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
35001         the unistd module.
35002         * lib/getlogin_r.c: Likewise.
35003         * lib/getlogin_r.h: Likewise.
35004         * lib/glob.c: Likewise.
35005         * lib/pagealign_alloc.c: Likewise.
35006         * lib/unistd_.h: Remove; no longer needed.
35007
35008 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
35009
35010         * MODULES.html.sh (Support for systems lacking POSIX:2001):
35011         Add unistd.
35012         * modules/c-stack (Depends-on): Add unistd.
35013         * modules/getlogin_r: Likewise.
35014         * modules/glob: Likewise.
35015         * modules/pagealign_alloc: Likewise.
35016         * modules/unistd (Files): Remove lib/unistd_.h.
35017         (EXTRA_DIST): Remove.
35018         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
35019         need unistd_.h.
35020         (MOSTLYCLEANFILES): Remove unistd.h-t.
35021
35022 2006-03-03  Simon Josefsson  <jas@extundo.com>
35023
35024         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
35025
35026 2006-03-03  Simon Josefsson  <jas@extundo.com>
35027
35028         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
35029         libidn and bison.
35030
35031 2006-03-03  Simon Josefsson  <jas@extundo.com>
35032
35033         * build-aux/maint.mk: Add indent target.
35034
35035 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
35036
35037         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
35038         our replacement poll.h in any case, to avoid a differing
35039         declaration from a system header.  Seen on AIX.
35040
35041 2006-03-01  Simon Josefsson  <jas@extundo.com>
35042
35043         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
35044         <kasal@ucw.cz>.
35045
35046 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
35047
35048         * modules/gettime (Depends-on): Add extensions module.
35049         * modules/nanosleep (Depends-on): Likewise.
35050         * modules/settime (Depends-on): Likewise.
35051
35052 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
35053
35054         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
35055         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
35056         pedantically.
35057         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
35058         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
35059
35060         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
35061         not "==".  Reported by Ralf Wildenhues.
35062
35063 2006-03-01  Karl Berry  <karl@gnu.org>
35064
35065         * doc/Copyright/request-*: new files, synced from gnuorg.
35066
35067 2006-03-01  Karl Berry  <karl@gnu.org>
35068
35069         * config/srclist.txt (Copyright/*): new entries.
35070
35071 2006-02-28  Simon Josefsson  <jas@extundo.com>
35072
35073         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
35074
35075 2006-02-27  Simon Josefsson  <jas@extundo.com>
35076
35077         * lib/base64.h: Indent #define's.  From Jim Meyering
35078         <jim@meyering.net>.
35079
35080 2006-02-27  Jim Meyering  <jim@meyering.net>
35081
35082         Revert the change of 2006-02-24, so these files can continue
35083         to be sync'd from gettext.
35084         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
35085         of `config.h'.
35086
35087 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
35088
35089         * modules/intprops: New file.
35090         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35091         Add intprops.
35092         * modules/getloadavg (Files): Remove lib/intprops.h.
35093         (Depends-on): Add intprops.
35094         * modules/human: Likewise.
35095         * modules/inttostr: Likewise.
35096         * modules/openat: Likewise.
35097         * modules/sig2str: Likewise.
35098         * modules/userspec: Likewise.
35099         * modules/utimecmp: Likewise.
35100         * modules/xnanosleep: Likewise.
35101         * modules/xstrtol: Likewise.
35102
35103 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
35104
35105         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
35106         * modules/lock-tests (TESTS): Use $(EXEEXT).
35107         * modules/tls-tests: Likewise.
35108         * modules/argp-tests: Likewise.
35109         (check_PROGRAMS): New var, replacing...
35110         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
35111
35112 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35113
35114         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
35115         `config.h'.
35116
35117 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
35118
35119         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
35120
35121 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35122
35123         Sync from coreutils.
35124         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
35125         gl_CHDIR_SAFER.
35126
35127 2006-02-22  Jim Meyering  <jim@meyering.net>
35128
35129         Sync from coreutils.
35130         * m4/chdir-safer.m4: New file.
35131
35132 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
35133
35134         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
35135         AT_FDCWD exceeds INT_MAX.
35136         * lib/openat.h (AT_FDCWD): Likewise.
35137
35138 2006-02-17  Eric Blake  <address@hidden>
35139
35140         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
35141
35142 2006-02-16  Simon Josefsson  <jas@extundo.com>
35143
35144         * modules/getaddrinfo (Depends-on): Add sys_socket.
35145
35146 2006-02-15  Simon Josefsson  <jas@extundo.com>
35147
35148         * build-aux/maint.mk: Add dsyntax-check rule.
35149
35150 2006-02-15  Eric Blake  <ebb9@byu.net>
35151
35152         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
35153         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
35154         'present but cannot compile' warnings on cygwin.
35155         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
35156         use ws2tcpip.h if sys/socket.h works.
35157         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
35158         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
35159
35160 2006-02-14  Simon Josefsson  <jas@extundo.com>
35161
35162         * modules/maintainer-makefile (Files): Rename.
35163
35164         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
35165         and (the local) Makefile.cfg to maint-cfg.mk.
35166
35167         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
35168         to the latter.
35169
35170         * modules/maintainer-makefile: New module.
35171
35172         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
35173         severaly stripped to make it possible to build it up from scratch
35174         with reliable tests.
35175
35176         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
35177         fixes to permit overriding the default actions when configure and
35178         makefile are not available.
35179
35180 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
35181
35182         Sync from coreutils.
35183         * modules/lstat (Depends-on): Don't depend on xalloc.
35184         (License): Change from GPL to LGPL, since this is now simply a
35185         replacement for a libc function.
35186
35187 2006-02-14  Jim Meyering  <jim@meyering.net>
35188
35189         Sync from coreutils.
35190
35191         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
35192         failure on deficient systems, and simplify gnulib lgpl dependencies.
35193         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
35194         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
35195
35196         * lib/xalloc-die.c: Remove unused definition of N_.
35197
35198 2006-02-14  Jim Meyering  <jim@meyering.net>
35199
35200         Sync from coreutils.
35201         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
35202         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
35203         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
35204         double-quote uses of that variable, to accommodate the rare case in
35205         which getmntent is available in none of the libraries checked.  This
35206         happens at least on FreeBSD 5.0.
35207
35208 2006-02-13  Simon Josefsson  <jas@extundo.com>
35209
35210         * gnulib-tool (Usage): Fix --import, from
35211         karl@freefriends.org (Karl Berry).
35212
35213 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
35214
35215         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
35216
35217 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
35218
35219         * lib/argp-namefrob.h: Restore changes accidentally lost during the
35220         "autoupdate" on 2005-12-12.
35221
35222 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
35223
35224         * modules/closeout (Depends-on): Remove atexit.
35225
35226 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
35227
35228         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
35229         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
35230
35231 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
35232
35233         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
35234         __EXTENSIONS__ if this causes compilation to fail.  Problem
35235         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
35236         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
35237
35238 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
35239
35240         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
35241         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
35242         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
35243         All uses changed.
35244
35245 2006-01-26  Simon Josefsson  <jas@extundo.com>
35246
35247         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
35248         prototype is visible on mingw32.
35249
35250         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
35251         for mingw32.
35252
35253         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
35254         mingw32).
35255
35256 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
35257
35258         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
35259         attempt to open for write; this always fails, at least on POSIX
35260         hosts.  This reinstates the 2006-01-09 change, which was
35261         inadvertently removed.
35262
35263 2006-01-26  Bruno Haible  <bruno@clisp.org>
35264
35265         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
35266         Reported by Paul Eggert.
35267
35268 2006-01-26  Bruno Haible  <bruno@clisp.org>
35269             Paul Eggert  <eggert@cs.ucla.edu>
35270
35271         * lib/stdbool_.h (_Bool)
35272         [(! (defined __cplusplus || defined __BEOS__)
35273           && !defined __GNUC__
35274           && !(defined __HP_cc || defined __xlc__
35275                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
35276                || defined __sgi))]:
35277         #define to signed char in these cases too; this simplifies
35278         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
35279         etc., separately) and makes it more conservative.
35280
35281 2006-01-25  Simon Josefsson  <jas@extundo.com>
35282
35283         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
35284         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
35285         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
35286
35287 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
35288
35289         * lib/argp-namefrob.h: Bugfix. Remove stray #
35290
35291 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
35292
35293         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
35294         so that we test the test.
35295         Check for yet another HP-UX cc bug involving *bool |= bool.
35296
35297 2006-01-25  Karl Berry  <karl@gnu.org>
35298
35299         * config/srclist.txt (vasnprintf.c): sync lost.
35300
35301 2006-01-25  Jim Meyering  <jim@meyering.net>
35302
35303         Sync from the stable (b5) branch of coreutils:
35304
35305         * lib/fts.c (fts_children): Don't let close() clobber errno from
35306         failed fchdir().
35307
35308         * lib/fts.c (fts_stat): When following a symlink-to-directory,
35309         don't necessarily interpret stat-fails+lstat-succeeds as indicating
35310         a dangling symlink.  That can also happen at least for ELOOP.
35311         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
35312         FYI, this bug predates the inclusion of fts.c in coreutils.
35313
35314         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
35315         in their own block, so pre-c99 compilers don't object.
35316
35317         Avoid the double-free (first in fts_read, second in fts_close) that
35318         would occur when an `active' directory is made inaccessible (e.g.,
35319         via chmod a-x) during a traversal.
35320         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
35321         before returning.  Reproduce this failure by
35322         mkdir -p a/b; cd a; chmod a-x . b
35323         Reported by Stavros Passas.
35324
35325 2006-01-25  Jim Meyering  <jim@meyering.net>
35326
35327         * lib/fileblocks.c: Remove more useless parentheses.
35328         * lib/readutmp.h: Likewise.
35329
35330 2006-01-25  Bruno Haible  <bruno@clisp.org>
35331
35332         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
35333         warnings.
35334         Reported by Paul Eggert.
35335
35336 2006-01-25  Bruno Haible  <bruno@clisp.org>
35337
35338         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
35339         rid of a trap command. For Solaris sh.
35340         Reported by Mark D. Baushke <mdb@gnu.org>.
35341
35342 2006-01-24  Simon Josefsson  <jas@extundo.com>
35343
35344         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
35345         Bruno.
35346
35347 2006-01-24  Karl Berry  <karl@gnu.org>
35348
35349         * config/srclist.txt (argp-namefrob.h): sync lost.
35350
35351 2006-01-24  Jim Meyering  <jim@meyering.net>
35352
35353         * modules/openat (Files): Add lib/intprops.h.
35354         From Mark D. Baushke.
35355
35356 2006-01-24  Jim Meyering  <jim@meyering.net>
35357
35358         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
35359         Reported by Mark D. Baushke.
35360
35361 2006-01-24  Jim Meyering  <jim@meyering.net>
35362
35363         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
35364
35365 2006-01-24  Bruno Haible  <bruno@clisp.org>
35366
35367         * modules/strnlen (Maintainer): Change from glibc to all.
35368
35369 2006-01-24  Bruno Haible  <bruno@clisp.org>
35370
35371         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
35372         Patch by Paul Eggert.
35373
35374 2006-01-24  Bruno Haible  <bruno@clisp.org>
35375
35376         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
35377         already has it.
35378         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
35379         2005-11-26.
35380
35381         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
35382         'signed char' to avoid problems with the built-in _Bool type.
35383         Reported by Paul Eggert on 2005-11-26.
35384
35385 2006-01-24  Bruno Haible  <bruno@clisp.org>
35386
35387         * gnulib-tool (func_import): Avoid constructing complicated sed
35388         expressions inside backquote.
35389         Report and solution by Mark D. Baushke <mdb@gnu.org>.
35390
35391 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
35392
35393         These changes imported from libc.
35394         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
35395         test and two separate function calls.
35396         * lib/strndup.c (__strndup): Add libc_hidden_def.
35397
35398 2006-01-23  Simon Josefsson  <jas@extundo.com>
35399
35400         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
35401         Remove the test_*_SOURCES variable: automake infers it by default.
35402         * modules/tls-tests: Likewise.
35403
35404 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35405
35406         Work around porting bugs reported by Dieter in
35407         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
35408         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
35409         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
35410         Include "getopt.h" first, to check interface.
35411         (getenv): Declare only if defined HAVE_DECL_GETENV &&
35412         !HAVE_DECL_GETENV.
35413         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
35414         (__strndup): Revert to K&R-style function dfns, the glibc style.
35415         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
35416         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
35417         Include strnlen.h first, to get prototype properly.
35418         (strnlen): Renamed from __strnlen.
35419         Remove weak alias.
35420
35421 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35422
35423         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
35424
35425 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35426
35427         * config/srclist.txt: Adjust to reflect glibc reorganization.
35428         This affects only comments.
35429
35430 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
35431
35432          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
35433          Reported by Bruce Korb <bkorb@gnu.org>.
35434
35435 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
35436
35437         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
35438         to pacify gcc -Wswitch-default.
35439
35440 2006-01-22  Bruno Haible  <bruno@clisp.org>
35441
35442         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
35443         temporary buffer for sprintf, take into account the precision also
35444         for 'd', 'i', 'u', 'o', 'x', 'X'.
35445
35446 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
35447
35448         * modules/argp-tests: New module
35449         * tests/test-argp.c: New file
35450         * tests/test-argp-2.sh: New file
35451
35452 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
35453
35454         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
35455         (__argp_base_name): Removed
35456         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
35457         typo.
35458         (__argp_base_name): Provide macro definition or extern declaration
35459         depending on the configuration
35460
35461 2006-01-20  Simon Josefsson  <jas@extundo.com>
35462
35463         * modules/inet_ntop (Depends-on): Depend on sys_socket.
35464
35465 2006-01-20  Simon Josefsson  <jas@extundo.com>
35466
35467         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
35468
35469 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
35470
35471         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
35472         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
35473         Suggested by Bruno Haible.
35474
35475 2006-01-20  Karl Berry  <karl@gnu.org>
35476
35477         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
35478         until changes propagate, I guess.
35479
35480 2006-01-19  Simon Josefsson  <jas@extundo.com>
35481
35482         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
35483
35484 2006-01-19  Simon Josefsson  <jas@extundo.com>
35485
35486         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
35487
35488 2006-01-19  Simon Josefsson  <jas@extundo.com>
35489
35490         * gnulib-tool: Set check_PROGRAMS.
35491
35492         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
35493         modules/des-tests, modules/gc-arcfour-tests,
35494         modules/gc-arctwo-tests, modules/gc-des-tests,
35495         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
35496         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
35497         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
35498         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
35499         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
35500         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
35501         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
35502         test_*_SOURCES.
35503
35504 2006-01-18  Simon Josefsson  <jas@extundo.com>
35505
35506         * modules/socklen (Depends-on): Depend on sys_socket.
35507
35508 2006-01-18  Simon Josefsson  <jas@extundo.com>
35509
35510         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
35511         modules/des-tests, modules/gc-arcfour-tests,
35512         modules/gc-arctwo-tests, modules/gc-des-tests,
35513         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
35514         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
35515         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
35516         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
35517         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
35518         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
35519         $(EXEEXT) to automake TESTS variable, for mingw32.
35520
35521 2006-01-17  Simon Josefsson  <jas@extundo.com>
35522
35523         * modules/socklen (Include): Need sys/socket.h.
35524
35525 2006-01-17  Bruno Haible  <bruno@clisp.org>
35526
35527         * modules/ssize_t (Include): Add <sys/types.h>.
35528
35529 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
35530
35531         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
35532         it's not portable and it doesn't work with cross-compiles.
35533         Problem reported by Bruno Haible.  Fix missing-$ typo in
35534         'test "gl_cv_ignore_unused_libraries" ...' that prevented
35535         -zignore from being used with Sun's C compiler.
35536
35537 2006-01-12  Simon Josefsson  <jas@extundo.com>
35538
35539         * lib/base64.c: Fix warning, reported by Bruno Haible
35540         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
35541
35542 2006-01-12  Bruno Haible  <bruno@clisp.org>
35543
35544         * modules/ldd: New file.
35545         * build-aux/ldd.sh.in: New file.
35546         * MODULES.html.sh (Support for building libraries and executables): Add
35547         ldd.
35548
35549 2006-01-12  Bruno Haible  <bruno@clisp.org>
35550
35551         * m4/ldd.m4: New file.
35552
35553 2006-01-12  Bruno Haible  <bruno@clisp.org>
35554
35555         * gnulib-tool (func_import, func_create_testdir): Don't go into an
35556         endless loop while replacing $auxdir with build-aux.
35557
35558 2006-01-11  Simon Josefsson  <jas@extundo.com>
35559
35560         * lib/stdint_.h (SIZE_MAX): Add missing (.
35561
35562 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
35563
35564         Sync from coreutils.
35565         * lib/md5.c: Fix commentary typos.
35566         (alignof, UNALIGNED_P): No need for a GCC-specific version.
35567         * lib/md5.h (__attribute__): Remove; unused.
35568         * lib/sha1.c: Fix commentary to match md5 better.
35569         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
35570         so that we don't need to worry about alignment.  All uses changed.
35571         This merges the 2005-10-28 md5 change into sha1.
35572
35573 2006-01-11  Jim Meyering  <jim@meyering.net>
35574
35575         Sync from coreutils.
35576         * lib/md5.c (OP): Fix spacing.
35577
35578 2006-01-11  Bruno Haible  <bruno@clisp.org>
35579
35580         Ensure automatic ordering between gl_LOCK and gl_ARGP.
35581         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
35582         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
35583
35584 2006-01-11  Bruno Haible  <bruno@clisp.org>
35585
35586         Ensure automatic ordering between gl_LOCK and gl_ARGP.
35587         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
35588         the "early" section as well.
35589
35590 2006-01-11  Bruno Haible  <bruno@clisp.org>
35591
35592         Avoid "ar: no archive members specified" error on MacOS X.
35593         * gnulib-tool (func_modules_add_dummy): New function.
35594         (func_import, func_create_testdir): Invoke it.
35595
35596 2006-01-11  Bruno Haible  <bruno@clisp.org>
35597
35598         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
35599         with $auxdir in AC_CONFIG_FILES statements.
35600
35601 2006-01-11  Bruno Haible  <bruno@clisp.org>
35602
35603         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35604         Initialize also noinst_HEADERS to empty.
35605
35606 2006-01-11  Bruno Haible  <bruno@clisp.org>
35607
35608         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
35609         variables.
35610         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
35611         autoreconf.
35612
35613 2006-01-11  Bruno Haible  <bruno@clisp.org>
35614
35615         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
35616         overridable by the user.
35617         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
35618
35619 2006-01-10  Simon Josefsson  <jas@extundo.com>
35620
35621         * modules/sys_socket: New file.
35622
35623 2006-01-10  Simon Josefsson  <jas@extundo.com>
35624
35625         * m4/sys_socket_h.m4: New file.
35626
35627 2006-01-10  Simon Josefsson  <jas@extundo.com>
35628
35629         * lib/socket_.h: New file.
35630
35631 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35632
35633         * modules/readutmp (Maintainer): Add myself.
35634
35635 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35636
35637         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
35638         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
35639         People who are still concerned with buggy memcmp implementations
35640         can invoke gl_FUNC_MEMCMP themselves.
35641
35642 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35643
35644         * lib/regex_internal.h (BITSET_WORD_BITS):
35645         Work around a bug in 64-bit PGC (before version 6.1-2), where the
35646         preprocessor mishandles large unsigned values as if they were signed.
35647         Problem reported by Claudio Fontana in
35648         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
35649
35650 2006-01-10  Jim Meyering  <jim@meyering.net>
35651
35652         Avoid the double-free (first in fts_read, second in fts_close) that
35653         would occur when an `active' directory is made inaccessible (e.g.,
35654         via chmod a-x) during a traversal.
35655         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
35656         before returning.  Reproduce this failure by
35657         mkdir -p a/b; cd a; chmod a-x . b
35658         Reported by Stavros Passas.
35659
35660         Sync from coreutils.
35661         * lib/sha1.c: Tweak grammar in a comment.
35662
35663 2006-01-10  Jim Meyering  <jim@meyering.net>
35664
35665         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
35666         Patch by Joerg Sonnenberger.
35667
35668 2006-01-10  Bruno Haible  <bruno@clisp.org>
35669
35670         * modules/readutmp: Depend on module free.
35671         * modules/strtok_r: Depend on module restrict.
35672
35673 2006-01-10  Bruno Haible  <bruno@clisp.org>
35674
35675         * modules/gettext (configure.ac): Add an invocation of
35676         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
35677
35678 2006-01-10  Bruno Haible  <bruno@clisp.org>
35679
35680         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
35681         Reported by Werner Lemberg <wl@gnu.org>.
35682
35683 2006-01-10  Bruno Haible  <bruno@clisp.org>
35684
35685         * lib/localcharset.c: Update from GNU gettext.
35686
35687 2006-01-10  Bruno Haible  <bruno@clisp.org>
35688
35689         * lib/argp.h (__const): Remove macro. Use const instead.
35690         * lib/argp-fmtstream.h (__const): Likewise.
35691         * lib/glob_.h (__const): Remove macro.
35692         * lib/glob-libc.h: Use const instead of __const.
35693
35694 2006-01-10  Bruno Haible  <bruno@clisp.org>
35695
35696         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
35697         variable.
35698         Needed to avoid an automake error regarding the 'gettext' module.
35699
35700 2006-01-09  Simon Josefsson  <jas@extundo.com>
35701
35702         * modules/inet_ntop (Depends-on): Add restrict.
35703
35704 2006-01-09  Simon Josefsson  <jas@extundo.com>
35705
35706         * modules/gc-rijndael-tests (License): Put under LGPL.
35707
35708         * modules/gc-des-tests (License): Likewise.
35709
35710         * modules/gc-arcfour-tests (License): Likewise.
35711
35712         * modules/gc-arctwo-tests (License): Likewise.
35713
35714         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
35715
35716         * modules/gc-hmac-sha1-tests (Files): Likewise.
35717
35718         * modules/gc-hmac-md5-tests (License): Likewise.
35719
35720         * modules/gc-sha1-tests (License): Likewise.
35721
35722         * modules/gc-md5-tests (License): Likewise.
35723
35724         * modules/gc-md4-tests (License): Likewise.
35725
35726         * modules/gc-md2-tests (License): Likewise.
35727
35728         * modules/gc-tests (License): Likewise.
35729
35730         * modules/des-tests (License): Likewise.
35731
35732         * modules/md4-tests (License): Likewise.
35733
35734         * modules/md2-tests (License): Likewise.
35735
35736 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35737
35738         Sync from coreutils:
35739
35740         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
35741         * modules/lib-ignore: New file.
35742         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
35743         chdir-safer.m4, lchmod.m4.
35744         * modules/openat: Add mkdirat.c, openat-priv.h.
35745
35746 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35747
35748         Sync from coreutils.
35749         * m4/lib-ignore.m4: New file.
35750         * m4/lchmod.m4: New file.
35751
35752 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35753
35754         Sync from coreutils.
35755         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
35756         for write access: POSIX says that must fail.
35757         * lib/fts.c (diropen): Likewise.
35758         * lib/save-cwd.c (save_cwd): Likewise.
35759         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
35760         well, for minor improvements on hosts that lack O_DIRECTORY.
35761         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
35762         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
35763         Fall back on chown if open failed with EACCES.
35764
35765         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
35766         Report an error at compile-time if only a 1-second nominal clock
35767         resolution is found.
35768
35769         * lib/lchmod.h: New file.
35770         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
35771         (make_dir_parents): Use lchown rather than chown, and
35772         lchmod rather than chmod.
35773
35774         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
35775         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
35776         "proc" reported by n0dalus.
35777
35778         * lib/mountlist.c: Include <limits.h>.
35779         (dev_from_mount_options)
35780         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
35781         New function.  It no longer assumes "dev=" has the System V meaning
35782         on Linux (since it doesn't).  It also parses "dev=" more carefully.
35783         (read_file_system_list)
35784         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
35785         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
35786         dev= in that case.
35787
35788         * lib/posixtm.h (PDS_PRE_2000): New macro.
35789         * lib/posixtm.c (year): Arg is now syntax_bits rather than
35790         allow_century.  All usages changed.  Reject dates outside the range
35791         1969-1999 if PDS_PRE_2000 is used.
35792
35793 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35794
35795         Sync from coreutils.
35796         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
35797         (Time of day items): Mention the possibility of leap seconds.
35798         Problem reported by Dr. David Alan Gilbert.
35799
35800 2006-01-09  Jim Meyering  <jim@meyering.net>
35801
35802         Sync from coreutils.
35803
35804         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
35805
35806         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
35807
35808         * lib/modechange.c (mode_compile): Reject an invalid mode string
35809         that starts with an octal digit.  From Andreas Gruenbacher.
35810
35811         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
35812         and dup to open_safer and dup_safer, respectively.
35813         (openat_permissive): Fix typo in comment.
35814
35815         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
35816         "gettext.h"; either no longer needed or are guaranteed by openat.h.
35817         (_): Remove; no longer needed.
35818         (openat): Renamed from rpl_openat; no need for rpl_openat
35819         since openat.h renames openat for us.
35820         Replace most of the body with a call to openat_permissive,
35821         to avoid duplicate code.
35822         Port to (probably hypothetical) environments were mode_t is
35823         wider than int.
35824         (openat_permissive): Require mode arg, so that we can check
35825         types better.  Put it just after flags.  Change cwd failure
35826         indicator from pointer-to-bool to pointer-to-errno-value.
35827         All callers changed.
35828         Invoke openat_save_fail and/or openat_restore_fail if
35829         cwd_errno is null, so that openat can call us.
35830         (openat_permissive, fdopendir, fstatat, unlinkat):
35831         Simplify errno handling to avoid some duplicate code,
35832         as it's OK to set errno on success.
35833         * lib/openat.h: Revamp code so that function macros depend on
35834         __OPENAT_PREFIX only, not also on AT_FDCWD.
35835         (openat_ro): Remove.  Caller changed to use openat_permissive.
35836         (openat_permissive): Now a macro, if not a function.
35837         (openat_restore_fail, openat_save_fail): Now always functions,
35838         since mkdirat needs them even if __OPENAT_PREFIX is defined.
35839
35840         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
35841         and openat.c.
35842         * lib/mkdirat.c: Include openat-priv.h.
35843         Remove definitions of macros defined therein.
35844         * lib/openat.c: Likewise.
35845
35846         * lib/mkdirat.c (mkdirat): New file and function.
35847         * lib/openat.h (mkdirat): Declare.
35848
35849         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
35850
35851         * lib/openat.h (openat_permissive): Declare.
35852         (openat_ro): Define.
35853
35854         * lib/openat.c (EXPECTED_ERRNO): New macro.
35855         (openat_permissive): New function -- used in remove.c rewrite.
35856         (all functions): Set errno just before returning, only if there
35857         was an actual failure.
35858         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
35859
35860         Emulate openat-family functions using Linux's procfs, if possible.
35861         Idea and some code based on Ulrich Drepper's glibc changes.
35862
35863         * lib/openat.c: (BUILD_PROC_NAME): New macro.
35864         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
35865         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
35866         before falling back on save_cwd and restore_cwd.
35867         (fdopendir, fstatat, unlinkat): Likewise.
35868
35869         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
35870         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
35871
35872         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
35873         as second argument to va_arg.  Otherwise, some versions of gcc
35874         warn that `if this code is reached, the program will abort'.
35875
35876 2006-01-09  Jim Meyering  <jim@meyering.net>
35877
35878         Sync from coreutils.
35879         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
35880         Require openat-priv.h.
35881
35882 2006-01-09  Bruno Haible  <bruno@clisp.org>
35883
35884         * modules/strnlen (Include): Use strnlen.h.
35885
35886 2006-01-09  Bruno Haible  <bruno@clisp.org>
35887
35888         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
35889
35890 2006-01-09  Bruno Haible  <bruno@clisp.org>
35891
35892         * lib/sysexit_.h (EX_OK): New macro.
35893         Suggested by Martin Lambers <marlam@marlam.de>.
35894
35895 2006-01-09  Bruno Haible  <bruno@clisp.org>
35896
35897         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
35898         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
35899
35900 2006-01-09  Bruno Haible  <bruno@clisp.org>
35901
35902         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
35903         numbers.
35904
35905 2006-01-09  Bruno Haible  <bruno@clisp.org>
35906
35907         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
35908         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
35909         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
35910         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
35911
35912 2006-01-09  Bruno Haible  <bruno@clisp.org>
35913
35914         * build-aux/javacomp.sh.in: New file, moved from lib/.
35915         * modules/javacomp-script (Files): Update.
35916         (configure.ac): Add AC_CONFIG_FILES invocation.
35917         (EXTRA_DIST): Remove variable.
35918
35919         * build-aux/javaexec.sh.in: New file, moved from lib/.
35920         * modules/javaexec (Files): Update.
35921         (configure.ac): Add AC_CONFIG_FILES invocation.
35922         (EXTRA_DIST): Remove javaexec.sh.in.
35923
35924         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
35925         * modules/csharpcomp-script (Files): Update.
35926         (configure.ac): Add AC_CONFIG_FILES invocation.
35927         (EXTRA_DIST): Remove variable.
35928
35929         * build-aux/csharpexec.sh.in: New file, moved from lib/.
35930         * modules/csharpexec (Files): Update.
35931         (configure.ac): Add AC_CONFIG_FILES invocation.
35932         (EXTRA_DIST): Remove csharpexec.sh.in.
35933
35934 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
35935
35936         Sync from coreutils.
35937
35938         Add POSIX ACL support
35939         * lib/acl.h (copy_acl, set_acl): Add declarations.
35940         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
35941         systems other than Linux.
35942         (chmod_or_fchmod): New function: use fchmod when possible,
35943         and chmod otherwise.
35944         (file_has_acl): Add a POSIX ACL implementation, with a
35945         Linux-specific subcase.
35946         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
35947         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
35948         acls are unsupported.
35949         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
35950         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
35951         are unsupported.
35952
35953 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
35954
35955         Sync from coreutils.
35956         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
35957
35958 2006-01-07  Bruno Haible  <bruno@clisp.org>
35959
35960         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
35961         gl_EARLY.
35962
35963 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
35964
35965         * lib/strftime.c (tzname): Don't declare if it is already #defined.
35966         Problem reported for Mingw by Mark Junker.
35967
35968 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
35969
35970         * README: Gnulib normally doesn't generate a tarball.
35971
35972 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
35973
35974         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
35975         long int, not int, for nanosecond counts, so that people who are
35976         used to POSIX struct timespec won't be surprised.  Reported by Jim
35977         Meyering.
35978
35979 2005-12-28  Bruno Haible  <bruno@clisp.org>
35980
35981         * build-aux/config.rpath: Update from GNU gettext.
35982
35983 2005-12-16  Jim Meyering  <jim@meyering.net>
35984
35985         * modules/fprintftime: New module.
35986         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
35987
35988 2005-12-16  Jim Meyering  <jim@meyering.net>
35989
35990         * m4/fprintftime.m4: New file.
35991
35992 2005-12-16  Jim Meyering  <jim@meyering.net>
35993
35994         * lib/fprintftime.c, lib/fprintftime.h: New files.
35995
35996 2005-12-15  Simon Josefsson  <jas@extundo.com>
35997
35998         * modules/socklen (configure.ac): Fix M4 macro name, to align with
35999         new m4/socklen.m4.
36000
36001 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36002
36003         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
36004         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
36005
36006 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36007
36008         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
36009         * lib/argp-help.c (fill_in_uparams): Check if the constructed
36010         struct uparams is valid. Fall back to the default values if it is
36011         not.
36012
36013 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36014
36015         * modules/argp (Files): Add argp-pin.c
36016         (Depends-on): dirname
36017         (lib_SOURCES): Add argp-pin.c
36018
36019 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36020
36021         * m4/argp.m4:  Check if program_invocation_name and
36022         program_invocation_short_name are declared and define appropriate
36023         macros if they are not.
36024
36025 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36026
36027         * lib/argp-help.c (__argp_base_name): New function
36028         (__argp_short_program_name): Rewrite using __argp_base_name
36029         * lib/argp-namefrob.h: Define program_invocation_name and
36030         program_invocation_short_name if requested
36031         (__argp_base_name): Add prototype
36032         * lib/argp-parse.c (argp_def): Use gettext wrappers
36033         (argp_default_parser): Use __argp_base_name
36034         * lib/argp-pin.c: New file. Defines program_invocation_name and
36035         program_invocation_short_name on systems that lack them.
36036
36037 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
36038
36039         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
36040         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
36041         porting problem reported by Georg Schwarz in
36042         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
36043
36044 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
36045
36046         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
36047         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
36048         porting problem reported by Georg Schwarz in
36049         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
36050
36051 2005-12-05  Bruno Haible  <bruno@clisp.org>
36052
36053         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
36054         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
36055         Reported by Mark Junker <mjscod@gmx.de>.
36056
36057 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
36058
36059         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
36060         Use implementation from Albert Chin, with some
36061         comments/corrections by Stepan Kasal and myself.
36062
36063 2005-12-02  Bruno Haible  <bruno@clisp.org>
36064
36065         * gnulib-tool (func_import): Accept GPLed build tool modules when
36066         --lgpl is given.
36067         * modules/csharpcomp-script: New file.
36068         * modules/csharpcomp: Depend on it.
36069         * modules/javacomp-script: New file.
36070         * modules/javacomp: Depend on it.
36071         Suggested by Simon Josefsson.
36072
36073 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
36074
36075         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
36076         statement, to work around an HP-UX 10.20 compiler bug reported by
36077         Peter O'Gorman.
36078
36079 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
36080
36081         * modules/savedir (Depends-on): Add openat.
36082
36083 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
36084
36085         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
36086         (uintmax_t) [defined uintmax_t]: Do not declare.
36087         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
36088         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
36089         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
36090         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
36091         sake of portability to weird hosts that C allows (though we don't
36092         know of any practical examples).
36093
36094         * lib/savedir.h (fdsavedir): New decl.
36095         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
36096         contains most of the former guts of savedir.
36097         (savedir): Use savedirstream.
36098         Include "openat.h".
36099
36100 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
36101
36102         * modules/obstack (Files): Add m4/ulonglong.m4.
36103         Problem reported by Davide Angelocola.
36104
36105 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
36106
36107         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
36108         coreutils no longer futzes with rounding modes.
36109
36110 2005-11-14  Jim Meyering  <jim@meyering.net>
36111
36112         * lib/mkstemp-safer.c: Include <config.h>, required for possible
36113         replacement of mkstemp.
36114
36115 2005-11-10  Simon Josefsson  <jas@extundo.com>
36116
36117         * lib/readline.c: Remove EOL.
36118
36119 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
36120
36121         * modules/gethrxtime (Depends-on): Add gettime.
36122
36123 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
36124
36125         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
36126         or gettimeofday; no longer needed.
36127
36128 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
36129
36130         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
36131         time business.
36132         (gethrxtime) [! (HAVE_NANOUPTIME
36133         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
36134         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
36135         our own approximation.
36136
36137 2005-11-08  Eric Blake  <ebb9@byu.net>
36138
36139         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
36140
36141 2005-11-08  Eric Blake  <ebb9@byu.net>
36142
36143         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
36144
36145 2005-11-04  Bruno Haible  <bruno@clisp.org>
36146
36147         * gnulib-tool: Implement --update mode.
36148
36149 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
36150
36151         Fix porting problem reported by Theodoros V. Kalamatianos.
36152         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
36153         Don't assume that futimes failing means we must fail.
36154
36155 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
36156
36157         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
36158         variables to suggest the intended function of the PATH_MAX check.
36159
36160 2005-10-30  Kean Johnston  <jkj@sco.com>
36161
36162         Trivial changes to support SCO systems.
36163         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
36164         as PATH_MAX.
36165         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
36166         where __ptr is null when no I/O is pending.
36167
36168 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
36169
36170         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
36171         leave errno alone.  Problem reported by Dmitry V. Levin.
36172
36173 2005-10-28  Simon Josefsson  <jas@extundo.com>
36174
36175         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
36176         Test more.
36177
36178         * tests/test-gc-md2.c, tests/test-md2.c: New files.
36179
36180         * modules/md2, modules/md2-tests: New files.
36181
36182 2005-10-28  Simon Josefsson  <jas@extundo.com>
36183
36184         * m4/inet_ntop.m4: More tests.
36185
36186         * m4/gc-md2.m4, md2.m4: New file.
36187
36188 2005-10-28  Simon Josefsson  <jas@extundo.com>
36189
36190         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
36191         "restrict" keywords, as per POSIX.  Protect the function
36192         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
36193         Don't use K&R prototypes.  Check the sprintf return values.
36194         Re-define EAFNOSUPPORT if not present.  Indent.
36195
36196         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
36197         suggested by Bruno Haible <bruno@clisp.org>.
36198
36199         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
36200
36201         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
36202
36203         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
36204         libgcrypt).
36205
36206         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
36207
36208         * lib/md2.h, lib/md2.c: New files.
36209
36210 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
36211
36212         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
36213         errno alone.  Problem reported by Frederic Jolliton.
36214
36215 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
36216
36217         * modules/verify (License): Change from GPL to LGPL.  This is a
36218         tiny module and there are apparently near-equivalents that are
36219         under the BSD license.
36220
36221 2005-10-24  Simon Josefsson  <jas@extundo.com>
36222
36223         * modules/sha1: Relicense to LGPL.
36224
36225 2005-10-24  Simon Josefsson  <jas@extundo.com>
36226
36227         * lib/md4.h: Shrink buffer size, now that we changed the type.
36228
36229 2005-10-23  Simon Josefsson  <jas@extundo.com>
36230
36231         * gnulib-tool (func_import): Fix --tests-base.
36232
36233 2005-10-22  Simon Josefsson  <jas@extundo.com>
36234
36235         * modules/arcfour (Depends-on): Need stdint.
36236
36237 2005-10-22  Simon Josefsson  <jas@extundo.com>
36238
36239         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
36240         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
36241
36242 2005-10-22  Simon Josefsson  <jas@extundo.com>
36243
36244         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
36245         suggested by Bruno Haible <bruno@clisp.org>.
36246
36247 2005-10-22  Simon Josefsson  <jas@extundo.com>
36248
36249         * lib/crc.h: Include stddef.h, for size_t.
36250
36251 2005-10-22  Simon Josefsson  <jas@extundo.com>
36252
36253         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
36254         arcfour_context struct (simplify test vector testing in GNU
36255         Shishi).
36256
36257 2005-10-21  Simon Josefsson  <jas@extundo.com>
36258
36259         * modules/des, modules/des-tests: New files.
36260
36261         * modules/gc-des, modules/gc-des-tests: New files.
36262
36263         * tests/test-des.c, tests/test-gc-des.c: New file.
36264
36265 2005-10-21  Simon Josefsson  <jas@extundo.com>
36266
36267         * modules/arctwo, modules/arctwo-tests: New files.
36268
36269         * tests/test-arctwo.c: New file.
36270
36271         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
36272
36273         * tests/test-gc-arctwo.c: New file.
36274
36275 2005-10-21  Simon Josefsson  <jas@extundo.com>
36276
36277         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
36278         Bruno Haible <bruno@clisp.org>.
36279
36280         * m4/gc-des.m4: New file.
36281
36282 2005-10-21  Simon Josefsson  <jas@extundo.com>
36283
36284         * m4/arctwo.m4: New file.
36285
36286         * m4/gc-arctwo.m4: New file.
36287
36288 2005-10-21  Simon Josefsson  <jas@extundo.com>
36289
36290         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
36291         block.
36292
36293 2005-10-21  Simon Josefsson  <jas@extundo.com>
36294
36295         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
36296         <bruno@clisp.org>.
36297
36298         * lib/hmac-sha1.c (hmac_sha1): Likewise.
36299
36300         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
36301         Bruno Haible <bruno@clisp.org>.
36302
36303         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
36304         <bruno@clisp.org>.
36305
36306 2005-10-21  Simon Josefsson  <jas@extundo.com>
36307
36308         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
36309
36310 2005-10-21  Simon Josefsson  <jas@extundo.com>
36311
36312         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
36313
36314 2005-10-21  Simon Josefsson  <jas@extundo.com>
36315
36316         * lib/des.h, lib/des.c: New files.
36317
36318         * lib/gc-gnulib.c: Support DES.c
36319
36320 2005-10-21  Simon Josefsson  <jas@extundo.com>
36321
36322         * lib/arctwo.h, lib/arctwo.c: New files.
36323
36324         * lib/gc-gnulib.c: Support ARCTWO.
36325
36326 2005-10-21  Simon Josefsson  <jas@extundo.com>
36327
36328         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
36329         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36330
36331 2005-10-21  Simon Josefsson  <jas@extundo.com>
36332
36333         * gnulib-tool (func_import, func_create_testdir): Define automake
36334         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
36335         Makefile.am snippet),
36336         suggested by Bruno Haible <bruno@clisp.org>.
36337
36338         * modules/gc (Makefile.am): Use it.
36339
36340 2005-10-21  Bruno Haible  <bruno@clisp.org>
36341
36342         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
36343         patch.
36344
36345 2005-10-19  Simon Josefsson  <jas@extundo.com>
36346
36347         * tests/test-gc-rijndael.c: New file.
36348
36349         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
36350
36351 2005-10-19  Simon Josefsson  <jas@extundo.com>
36352
36353         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
36354         interface too.
36355
36356 2005-10-19  Simon Josefsson  <jas@extundo.com>
36357
36358         * tests/test-gc-arcfour.c: New file.
36359
36360         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
36361
36362 2005-10-19  Simon Josefsson  <jas@extundo.com>
36363
36364         * modules/gc-md4, modules/gc-md4-tests: New file.
36365
36366         * tests/test-gc-md4.c: New file.
36367
36368 2005-10-19  Simon Josefsson  <jas@extundo.com>
36369
36370         * m4/gc-md4.m4: New file.
36371
36372 2005-10-19  Simon Josefsson  <jas@extundo.com>
36373
36374         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
36375         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
36376         <kasal@ucw.cz>.
36377
36378 2005-10-19  Simon Josefsson  <jas@extundo.com>
36379
36380         * m4/gc-arcfour.m4: New file.
36381
36382         * m4/gc-rijndael.m4: New file.
36383
36384 2005-10-19  Simon Josefsson  <jas@extundo.com>
36385
36386         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
36387
36388 2005-10-19  Simon Josefsson  <jas@extundo.com>
36389
36390         * lib/gc-gnulib.c: Support ARCFOUR.
36391
36392 2005-10-19  Simon Josefsson  <jas@extundo.com>
36393
36394         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
36395         support.
36396
36397         * lib/gc.h: Add ECB enum type.
36398
36399         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
36400
36401 2005-10-18  Simon Josefsson  <jas@extundo.com>
36402
36403         * tests/test-md5.c: New file.
36404
36405         * modules/md5-tests: New file.
36406
36407 2005-10-18  Simon Josefsson  <jas@extundo.com>
36408
36409         * tests/test-md4.c: New file.
36410
36411         * modules/md4, modules/md4-tests: New files.
36412
36413 2005-10-18  Simon Josefsson  <jas@extundo.com>
36414
36415         * m4/md4.m4: New file.
36416
36417 2005-10-18  Simon Josefsson  <jas@extundo.com>
36418
36419         * lib/md4.h, lib/md4.c: New files, based on md5.?.
36420
36421 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
36422
36423         * gnulib-tool (func_create_testdir): Omit the second check whether
36424         BUILT_SOURCES in nonempty.
36425
36426 2005-10-17  Simon Josefsson  <jas@extundo.com>
36427
36428         * tests/test-rijndael.c: New file.
36429
36430 2005-10-17  Simon Josefsson  <jas@extundo.com>
36431
36432         * modules/sha1: Depend on stdint instead of md5.
36433
36434         * modules/md5: Depend on stdint, remove uint32_t.
36435
36436 2005-10-17  Simon Josefsson  <jas@extundo.com>
36437
36438         * modules/gc-sha1-tests: New file.
36439
36440         * tests/test-gc-sha1.c: New file.
36441
36442 2005-10-17  Simon Josefsson  <jas@extundo.com>
36443
36444         * m4/md5.m4: Remove call to uint32_t.m4.
36445
36446 2005-10-17  Simon Josefsson  <jas@extundo.com>
36447
36448         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
36449
36450         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
36451         md5.h.
36452
36453         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
36454
36455         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
36456
36457 2005-10-17  Simon Josefsson  <jas@extundo.com>
36458
36459         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
36460
36461 2005-10-17  Simon Josefsson  <jas@extundo.com>
36462
36463         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
36464
36465 2005-10-17  Simon Josefsson  <jas@extundo.com>
36466
36467         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
36468
36469         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
36470
36471 2005-10-17  Bruno Haible  <bruno@clisp.org>
36472
36473         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
36474         that it can also be used in a test.
36475
36476 2005-10-16  Bruno Haible  <bruno@clisp.org>
36477
36478         * gnulib-tool (func_emit_tests_Makefile_am): Also define
36479         TESTS_ENVIRONMENT, so that individual tests can augment it.
36480
36481         * gnulib-tool (func_create_testdir): Use an intermediate target for
36482         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
36483         macros, like $(ALLOCA_H), which cannot be passed through the command
36484         line.
36485
36486 2005-10-15  Simon Josefsson  <jas@extundo.com>
36487
36488         * modules/rijndael-tests: New file.
36489
36490         * modules/rijndael: New file.
36491
36492 2005-10-15  Simon Josefsson  <jas@extundo.com>
36493
36494         * m4/rijndael.m4: New file.
36495
36496 2005-10-15  Simon Josefsson  <jas@extundo.com>
36497
36498         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
36499
36500         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
36501
36502 2005-10-14  Simon Josefsson  <jas@extundo.com>
36503
36504         * tests/test-arcfour.c: New file.
36505
36506         * modules/arcfour, modules/arcfour-tests: New files.
36507
36508 2005-10-14  Simon Josefsson  <jas@extundo.com>
36509
36510         * m4/arcfour.m4: New file.
36511
36512 2005-10-14  Simon Josefsson  <jas@extundo.com>
36513
36514         * lib/arcfour.h, lib/arcfour.c: New files.
36515
36516 2005-10-14  Roland McGrath  <roland@redhat.com>
36517
36518         Import from libc.  [BZ #1331]
36519         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
36520         macro argument.
36521         Reported by Matej Vela <vela@debian.org>.
36522
36523 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
36524
36525         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
36526         include <wchar.h>; no longer needed.
36527
36528 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
36529
36530         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
36531
36532 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
36533         and  Ulrich Drepper  <drepper@redhat.com>
36534
36535         Import from libc.
36536         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
36537         instead of inline stream orientation test and two separate
36538         function calls.  Pay no attention to USE_IN_LIBIO.
36539
36540 2005-10-13  Simon Josefsson  <jas@extundo.com>
36541
36542         * modules/gc-hmac-md5-tests: New file.
36543
36544         * tests/test-gc-hmac-sha1.c: New file.
36545
36546         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
36547
36548         * modules/gc-hmac-md5-tests: New file.
36549
36550         * tests/test-gc-md5.c: New file.
36551
36552         * modules/gc-md5-tests: New file.
36553
36554 2005-10-13  Simon Josefsson  <jas@extundo.com>
36555
36556         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
36557         Move memory allocation outside of loop.
36558
36559 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
36560
36561         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
36562         intermediate directory is in a read-only file system.  Problem
36563         reported by Eric Blake.
36564
36565 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
36566
36567         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
36568
36569 2005-10-12  Simon Josefsson  <jas@extundo.com>
36570
36571         * tests/test-hmac-sha1.c: New file.
36572
36573         * modules/hmac-sha1-tests: New file.
36574
36575         * modules/hmac-sha1: New file.
36576
36577 2005-10-12  Simon Josefsson  <jas@extundo.com>
36578
36579         * modules/gc-sha1: New file.
36580
36581 2005-10-12  Simon Josefsson  <jas@extundo.com>
36582
36583         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
36584
36585         * tests/test-gc-pbkdf2-sha1.c: New file.
36586
36587 2005-10-12  Simon Josefsson  <jas@extundo.com>
36588
36589         * modules/gc-md5, modules/gc-hmac-md5: New files.
36590
36591         * modules/gc (Files): Remove md5, memxor and hmac files.
36592
36593 2005-10-12  Simon Josefsson  <jas@extundo.com>
36594
36595         * m4/gc-pbkdf2-sha1.m4: New file.
36596
36597         * m4/gc-hmac-sha1.m4: New file.
36598
36599         * m4/gc-sha1: New file.
36600
36601         * m4/hmac-sha1.m4: New file.
36602
36603 2005-10-12  Simon Josefsson  <jas@extundo.com>
36604
36605         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
36606
36607         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
36608
36609 2005-10-12  Simon Josefsson  <jas@extundo.com>
36610
36611         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
36612         suggested by Bruno Haible <bruno@clisp.org>.
36613
36614 2005-10-12  Simon Josefsson  <jas@extundo.com>
36615
36616         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
36617
36618 2005-10-12  Simon Josefsson  <jas@extundo.com>
36619
36620         * lib/gc-pbkdf2-sha1.c: New file.
36621
36622         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
36623
36624 2005-10-12  Simon Josefsson  <jas@extundo.com>
36625
36626         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
36627
36628         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
36629
36630 2005-10-12  Simon Josefsson  <jas@extundo.com>
36631
36632         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
36633         GC_USE_HMAC_MD5, respectively.
36634
36635         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
36636         (gc_md5): Fix typo.
36637
36638         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
36639
36640         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
36641
36642         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
36643
36644 2005-10-12  Bruno Haible  <bruno@clisp.org>
36645
36646         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
36647         Reported by Stepan Kasal <kasal@ucw.cz>.
36648
36649 2005-10-11  Simon Josefsson  <jas@extundo.com>
36650
36651         * tests/test-crc.c: New file.
36652
36653         * modules/crc, modules/crc-tests: New files.
36654
36655 2005-10-11  Simon Josefsson  <jas@extundo.com>
36656
36657         * m4/crc.m4: New file.
36658
36659 2005-10-11  Simon Josefsson  <jas@extundo.com>
36660
36661         * lib/gc.h: Add gc_hash and gc_hash_buffer.
36662
36663         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
36664
36665         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
36666
36667 2005-10-11  Simon Josefsson  <jas@extundo.com>
36668
36669         * lib/crc.h, lib/crc.c: New files.
36670
36671         * lib/gc.h (gc_hash_buffer): Add doc.
36672
36673 2005-10-11  Bruno Haible  <bruno@clisp.org>
36674
36675         * modules/c-strcasestr: New file.
36676         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
36677
36678 2005-10-11  Bruno Haible  <bruno@clisp.org>
36679
36680         * modules/c-strcase: New file.
36681         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
36682
36683 2005-10-11  Bruno Haible  <bruno@clisp.org>
36684
36685         * lib/strcasecmp.c: Include limits.h.
36686         (strcasecmp): Avoid integer overflow on exotic platforms.
36687         * lib/strncasecmp.c: Include limits.h.
36688         (strncasecmp): Avoid integer overflow on exotic platforms.
36689         Reported by Paul Eggert.
36690
36691 2005-10-11  Bruno Haible  <bruno@clisp.org>
36692
36693         * lib/c-strcasestr.h: New file, from GNU gettext.
36694         * lib/c-strcasestr.c: New file, from GNU gettext.
36695
36696 2005-10-11  Bruno Haible  <bruno@clisp.org>
36697
36698         * lib/c-strcase.h: New file, from GNU gettext.
36699         * lib/c-strcasecmp.c: New file, from GNU gettext.
36700         * lib/c-strncasecmp.c: New file, from GNU gettext.
36701
36702 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
36703
36704         * modules/mempcpy (License): GPL -> LGPL.
36705         * modules/strchrnul (License): Likewise.
36706         * modules/sysexits (License): Likewise.
36707
36708 2005-10-08  Simon Josefsson  <jas@extundo.com>
36709
36710         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
36711
36712 2005-10-07  Simon Josefsson  <jas@extundo.com>
36713
36714         * m4/memxor.m4: Remove gl_C_RESTRICT call.
36715
36716 2005-10-06  Simon Josefsson  <jas@extundo.com>
36717
36718         * tests/test-hmac-md5.c: New file.
36719
36720         * modules/hmac-md5-tests: New file.
36721
36722         * modules/hmac-md5: New file.
36723
36724 2005-10-06  Simon Josefsson  <jas@extundo.com>
36725
36726         * m4/hmac-md5.m4: New file.
36727
36728         * m4/memxor.m4: Require gl_C_RESTRICT.
36729
36730 2005-10-06  Simon Josefsson  <jas@extundo.com>
36731
36732         * lib/memxor.c (memxor): Avoid casts and warnings.
36733
36734 2005-10-06  Simon Josefsson  <jas@extundo.com>
36735
36736         * lib/hmac-md5.c: New file.
36737
36738         * lib/hmac.h: New file.
36739
36740 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36741
36742         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
36743         promotes to int, not unsigned int, to catch the AIX 5.3
36744         compiler bug.
36745
36746 2005-10-05  Simon Josefsson  <jas@extundo.com>
36747
36748         * modules/memxor: New file.
36749
36750         * modules/iconv (Files): Move config.rpath to havelib, it is used
36751         there.
36752
36753         * modules/havelib (Files): Add config.rpath.
36754
36755 2005-10-05  Simon Josefsson  <jas@extundo.com>
36756
36757         * m4/memxor.m4: New file.
36758
36759 2005-10-05  Simon Josefsson  <jas@extundo.com>
36760
36761         * lib/memxor.c (memxor): Fix compiler error.
36762
36763         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
36764         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
36765
36766         * lib/memxor.h, lib/memxor.c: New files.
36767
36768         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
36769         we assume all systems have it, suggested by Jim Meyering
36770         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
36771         any systems lack sys/socket.h; mingw32 is known to lack it, but we
36772         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
36773         same reasons.
36774
36775 2005-10-05  Simon Josefsson  <jas@extundo.com>
36776
36777         * config/srclist.txt: Add glibc bug 1423 for md5.h.
36778
36779 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36780
36781         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
36782         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
36783         needed, since the source code now assumes these .h files.
36784
36785 2005-10-05  Derek Price  <derek@ximbiot.com>
36786
36787         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
36788
36789 2005-10-05  Bruno Haible  <bruno@clisp.org>
36790
36791         * modules/stdint (License): Change to LGPL.
36792
36793 2005-10-04  Simon Josefsson  <jas@extundo.com>
36794
36795         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
36796         D. Baushke" <mdb@gnu.org>.
36797
36798 2005-10-04  Bruno Haible  <bruno@clisp.org>
36799
36800         * lib/verify.h (verify_true): Provide alternative definition for C++.
36801
36802 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
36803
36804         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
36805         (SSIZE_MAX): New macro, if not already defined.
36806         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
36807         than 2 GiB.
36808
36809 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36810
36811         Sync from coreutils.
36812         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
36813         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
36814         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
36815         ULLONG_MAX doesn't work with 2.7.2.1.
36816
36817 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36818
36819         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
36820         From Ben Pfaff.
36821
36822         * modules/exclude (Depends-on): Depend on verify.
36823         * modules/strtoimax (Depends-on): Likewise.
36824         * modules/utimecmp (Depends-on): Likewise.
36825
36826 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36827
36828         * lib/exclude.c: Include verify.h.
36829         (verify): Remove.  All callers changed to use verify.h's version.
36830         * lib/strtoimax.c: Likewise.
36831         * lib/utimecmp.c: Likewis.e
36832
36833         Sync from coreutils.
36834         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
36835         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
36836         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
36837         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
36838         bother returning ENOSYS if settimeofday or stime fails; just let
36839         them return whatever errno they want to return.
36840         * lib/utimens.c: Include unistd.h, for dup2.
36841         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
36842         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
36843
36844 2005-10-02  Jim Meyering  <jim@meyering.net>
36845
36846         Sync from coreutils.
36847         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
36848         from glibc-2.2.5 that fails for read-only files.
36849
36850 2005-10-02  Jim Meyering  <jim@meyering.net>
36851
36852         Sync from coreutils.
36853         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
36854         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
36855         `#if HAVE_CONFIG_H'.
36856         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
36857         Remove AT_FDCWD test.
36858         Do not consume the fd unless successful.
36859         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
36860         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
36861         block, so that we don't even try to compile it if settimeofday is
36862         available.  This works around a compilation failure on OSF1 V5.1,
36863         due to stime requiring a `long int*' while tv_sec is `int'.
36864
36865 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
36866
36867         Sync from coreutils.
36868         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
36869         against `yes', rather than just testing for nonempty.
36870
36871 2005-10-01  Simon Josefsson  <jas@extundo.com>
36872
36873         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
36874         and Darwin.
36875
36876         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
36877         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
36878         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
36879         freeaddrinfo and gai_strerror are declared by the POSIX headers.
36880         Check if struct addrinfo is declared.
36881
36882 2005-10-01  Simon Josefsson  <jas@extundo.com>
36883
36884         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
36885         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
36886         AI_* and EAI_* definitions.  Protect function declarations.
36887
36888 2005-10-01  Jim Meyering  <jim@meyering.net>
36889
36890         Sync from coreutils.
36891
36892         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
36893         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
36894         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
36895         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
36896         in the inet and nsl libraries.  Required on Solaris 5.7.
36897
36898 2005-10-01  Jim Meyering  <jim@meyering.net>
36899
36900         Sync from coreutils.
36901         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
36902         in the inet and nsl libraries.  Required on Solaris 5.7.
36903
36904 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
36905
36906         * lib/getdelim.c (getdelim): Remove unused variables.
36907
36908 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36909
36910         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
36911         so that the code works even with ancient cpp.  Portability problem
36912         with GCC 2.7.2.1 reported by Thomas M.Ott.
36913
36914 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36915
36916         * modules/regex (Depends-on): Add strcase.
36917
36918         * modules/gethostname (Licence): Change from GPL to LGPL, since
36919         gethostname.c is a trivial implementation of a standard library
36920         function.
36921         * modules/poll (License): Change from GPL to LGPL, since it's
36922         derived from LGPL code.
36923
36924 2005-09-27  Jim Meyering  <jim@meyering.net>
36925
36926         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
36927         HAVE_CONFIG_H.
36928
36929         * lib/intprops.h (signed_type_or_expr__): Define.
36930         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
36931         for unsigned types.
36932
36933 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36934
36935         * lib/verify.h (verify_expr): Remove, replacing with:
36936         (verify_true): New macro that returns true instead of void.
36937         (verify_type__): Remove.
36938         (verify): Use verify_true rather than verify_type__.
36939
36940 2005-09-26  Bruno Haible  <bruno@clisp.org>
36941
36942         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
36943         is necessary.
36944         (lib_SOURCES): Remove mbchar.c.
36945         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
36946         (Files): Add m4/mbrtowc.m4.
36947         * modules/mbiter: Likewise.
36948         * modules/mbuiter: Likewise.
36949
36950 2005-09-26  Bruno Haible  <bruno@clisp.org>
36951
36952         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
36953         compile mbchar.c if they are not both present.
36954         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
36955         * m4/mbiter.m4 (gl_MBITER): Likewise.
36956         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
36957         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
36958         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
36959
36960 2005-09-25  Jim Meyering  <jim@meyering.net>
36961
36962         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
36963         also uses socklen_t.
36964
36965 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
36966
36967         * lib/utimens.c (ENOSYS): Define if not already defined.
36968         (futimens): Support having a null PATH if the file descriptor
36969         is nonnegative.
36970
36971         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
36972         Remove.
36973         (__attribute): Define to empty unless GCC 3.1 or later.
36974         This works around a core dump on OpenBSD 3.4, which has GCC
36975         2.95.3, which dumps core when given __attribute__(()).  It also
36976         simplifies other tests, since we really don't want to bother with
36977         worrying about which ancient version of GCC supported what.
36978         Original problem reported by Yoann Vandoorselaere, with part of
36979         the fix suggested by Derek Price.
36980
36981 2005-09-24  Jim Meyering  <jim@meyering.net>
36982
36983         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
36984         so we can once again use a positive bitfield width of 1 -- now we
36985         don't have to explain why we were using a bitfield width of 2.
36986
36987 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
36988
36989         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
36990         and similarly for the other external symbols.  Problem reported
36991         by James Gallager.
36992
36993         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
36994         bug reported by Jim Meyering.
36995
36996         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
36997         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
36998         not needed, since socklen is a prerequisite module.
36999
37000 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
37001
37002         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
37003         Problem reported by Eric Blake.
37004         (getaddrinfo): Initialize se so that it's not garbage.
37005         Redo internal storage allocation so that it doesn't make unportable
37006         assumptions about alignment.
37007         Fix a memory leak.
37008
37009         * lib/utimens.c (futimens): Use futimesat if available.
37010         Prefer it to futimes since it doesn't have the futimes bug.
37011
37012         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
37013         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
37014         Instead, declare a function that returns a pointer to an array,
37015         and use verify_type__ to declare the size of the array.
37016         Problem and germ of a solution reported by Bruno Haible.
37017         (verify_type__): Use 2, not 1, for bitfield size, to avoid
37018         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
37019
37020 2005-09-23  Jim Meyering  <jim@meyering.net>
37021
37022         Sync from coreutils.
37023         Correct build failure (socklen_t not defined) on at least
37024         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
37025         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
37026
37027 2005-09-23  Jim Meyering  <jim@meyering.net>
37028
37029         * modules/getaddrinfo (Depends-on): Add socklen.
37030
37031 2005-09-23  Bruno Haible  <bruno@clisp.org>
37032
37033         * tests/test-verify.c: New file.
37034
37035 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
37036
37037         Sync from coreutils.
37038
37039         * modules/argmatch (Depends-on): Add verify.
37040         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
37041         unistd-safer.
37042         * modules/save-cwd (Depends-on): Likewise.
37043
37044         * modules/openat (Files): Add lib/openat-die.c.
37045         (Depends-on): Remove error, exitfail.
37046         Add dirname.
37047
37048         * modules/verify: New file.
37049         * MODULES.html.sh (Diagnostics <assert.h>): New section,
37050         with "verify" module.
37051
37052 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
37053
37054         Sync from coreutils.
37055
37056         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
37057         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
37058         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
37059         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
37060         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
37061         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
37062         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
37063         Don't bother checking for string.h, stdlib.h, unistd.h.
37064         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
37065         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
37066         module's job.
37067         * m4/jm-macros.m4 (gl_MACROS): Likewise.
37068         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
37069
37070         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
37071         (gl_GETDATE): Use it.
37072
37073         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
37074
37075 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
37076
37077         Sync from coreutils.
37078
37079         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
37080         stat-time.h.
37081         * lib/argmatch.h: Include verify.h
37082         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
37083         (ARGMATCH_ASSERT): Remove; unused.
37084         * lib/canonicalize.c: Assume STDC_HEADERS.
37085         * lib/exclude.c: Include "strcase.h".
37086         * lib/regex_internal.h [!defined _LIBC]: Likewise.
37087         * lib/getusershell.c: Include stdio--.h rather than stdio.h
37088         and stdio-safer.h.
37089         (getusershell): Call fopen, not fopen_safer.
37090         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
37091         Do not include unistd-safer.h.
37092         (save_cwd): Don't call fd_safer; no longer needed
37093         now that we include fcntl--.h.
37094
37095         * lib/getdate.y (relative_time): New type.
37096         (RELATIVE_TIME_0): New constant.
37097         (parser_control): Use relative_time instead of doing it ourselves.
37098         (%union): Add new relative_time rel member.
37099         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
37100         Now typeless.
37101         (relunit, relunit_snumber): Now of type rel.
37102         (zone, rel, relunit, get_date): Adjust to above changes.
37103
37104         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
37105         Do not include unistd-safer.h.
37106         (getloadavg): Don't call fd_safer; no longer needed
37107         now that we include fcntl--.h.
37108
37109         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
37110         (make_dir_parents): Treat ENOSYS like EEXIST.
37111
37112         Improve quality of diagnostics on restore_cwd failure.
37113         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
37114         (make_dir_parents): Last arg is now int * (for errno), not bool *.
37115         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
37116         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
37117         each time through the loop.  Do not diagnose restore_cwd failure;
37118         that is the caller's job (and perhaps the caller does not care).
37119
37120         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
37121         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
37122         If the file already exists but is not a directory, don't bother
37123         to try to make its parents.
37124         Close potential file descriptor leak if we can't chdir("/") (!).
37125         Don't always return true if chdir($PWD) fails; return true only
37126         if the requested action was done successfully (except for the
37127         chdir($PWD)).
37128         Don't log final directory unless we actually made it.
37129         Refactor to avoid duplicate code to fix up permissions.
37130         Don't attempt to fix up parent permissions if chdir($PWD) fails.
37131
37132         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
37133         to make it a bit faster and (I hope) clearer.
37134         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
37135         Fix bug in formats like %2N.
37136
37137         * lib/verify.h: New file.
37138
37139 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
37140
37141         Sync from coreutils.
37142         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
37143
37144 2005-09-22  Jim Meyering  <jim@meyering.net>
37145
37146         Sync from coreutils.
37147
37148         * m4/lstat.m4 (gl_FUNC_LSTAT):
37149         Use AC_LIBSOURCES to require lstat.c and lstat.h.
37150         Remove obsolete comment.
37151         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
37152         * m4/xstrtod.m4: Likewise.
37153
37154         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
37155
37156 2005-09-22  Jim Meyering  <jim@meyering.net>
37157
37158         Sync from coreutils.
37159
37160         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
37161
37162         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
37163         the .tm_year member, since otherwise gcc-4.0 would now warn about
37164         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
37165
37166         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
37167         order to avoid an unsuppressible warning from gcc on 64-bit systems.
37168
37169         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
37170         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
37171         when run in a time zone for which daylight savings time is in effect
37172         for the starting date.
37173
37174         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
37175         stop us from restricting permissions of just-created absolute-named
37176         directories.
37177         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
37178         to restore initial working directory.
37179         * lib/mkdir-p.c (make_dir_parents): New parameter:
37180         different_working_dir, to tell caller if/when we change the working
37181         directory and are unable to return to the initial one.
37182         * lib/mkdir-p.h (make_dir_parents): Update prototype.
37183         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
37184         `return false'.  This fixes a bug introduced on 2004-07-30.
37185
37186         * lib/openat.c (fdopendir): Be sure to close the supplied
37187         file descriptor before returning.  This makes our replacement
37188         implementation a little closer to Solaris's, where fdopendir
37189         ties the file descriptor to the returned DIR* pointer.
37190         * lib/openat.c (unlinkat): New function.
37191         * lib/openat.h (unlinkat): Add prototype.
37192         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
37193         (openat_restore_fail): Rename from openat_restore_die.
37194         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
37195
37196         Provide an alternative to exiting immediately upon save_cwd or
37197         restore_cwd failure.  Now, an application can arrange e.g.,
37198         to perform a longjump in that case.
37199         * lib/openat.c: Include dirname.h.
37200         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
37201         (rpl_openat, fdopendir, fstatat): Call openat_save_die
37202         and openat_restore_die rather than calling error directly.
37203         Don't include "error.h" or "exitfail.h"; they're no longer needed.
37204
37205         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
37206         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
37207         define.
37208
37209         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
37210         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
37211                             int utc, int nanoseconds);
37212         Background:
37213         date should not have to allocate a megabyte of virtual memory to
37214         handle a format argument like +%1048575T.  When implemented with
37215         strftime, it must allocate such a buffer, use strftime to fill it
37216         in, print it, then free it.
37217         With fprintftime, it simply prints everything and exits.
37218         With no need for memory allocation, that's one fewer way to fail.
37219         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
37220         optional field width, not before, so we accept %9:z, not %:9z.
37221         (my_strftime): Be sure to use L_('x') for literals.
37222
37223         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
37224         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
37225         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
37226         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
37227         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
37228         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
37229         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
37230         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
37231         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
37232         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
37233         * lib/xgethostname.c, lib/xreadlink.c:
37234         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
37235
37236         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
37237         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
37238         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
37239         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
37240         and don't include <sys/file.h>).
37241
37242 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
37243
37244         Sync from coreutils.
37245
37246         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
37247         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
37248         [!LDAV_DONE]: Avoid unused variable warning.
37249
37250 2005-09-21  Bruno Haible  <bruno@clisp.org>
37251
37252         * lib/unicodeio.h (unicode_to_mb): New declaration.
37253
37254 2005-09-20  Derek Price  <derek@ximbiot.com>
37255
37256         * lib/getaddrinfo.c: Don't include <netdb.h> included from
37257         getaddrinfo.h.
37258
37259 2005-09-20  Bruno Haible  <bruno@clisp.org>
37260
37261         * gnulib-tool: Remove trailing slashes from the values specified for
37262         --source-base, --m4-base, --tests-base, --aux-dir.
37263         Suggested by Simon Josefsson <jas@extundo.com>.
37264
37265 2005-09-20  Bruno Haible  <bruno@clisp.org>
37266
37267         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
37268         func_modules_to_filelist, func_import, func_create_testdir): Make all
37269         sorting results locale-independent, so that gnulib-cache.m4 doesn't
37270         change when gnulib-tool is invoked in a different locale.
37271
37272 2005-09-19  Simon Josefsson  <jas@extundo.com>
37273
37274         * m4/socklen.m4: Fix typo.
37275
37276 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37277
37278         Use a consistent style for including <config.h>.
37279         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
37280         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
37281         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
37282         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
37283         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
37284         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
37285         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
37286         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
37287         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
37288         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
37289         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
37290         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
37291         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
37292         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
37293         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
37294         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
37295         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
37296         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
37297         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
37298         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
37299         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
37300         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
37301         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
37302         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
37303         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
37304         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
37305         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
37306         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
37307         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
37308         lib/xstrtoumax.c, lib/yesno.c:
37309         Standardize inclusion of config.h.
37310         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
37311         lib/inttostr.h:  Removed inclusion of config.h from header files.
37312         * lib/inttostr.c:  Adjusted in-tree users.
37313         * lib/timespec.h: Remove superfluous warning to include config.h.
37314         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
37315         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
37316         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
37317         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
37318         config.h with HAVE_CONFIG_H.
37319
37320 2005-09-19  Jim Meyering  <jim@meyering.net>
37321
37322         * modules/pathmax (License): Change to LGPL.
37323
37324 2005-09-19  Derek Price  <derek@ximbiot.com>
37325
37326         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
37327
37328 2005-09-19  Bruno Haible  <bruno@clisp.org>
37329
37330         * gnulib-tool (import): Provide default for --tests-base.
37331
37332 2005-09-19  Bruno Haible  <bruno@clisp.org>
37333
37334         * doc/quote.texi: New file, extracted from gnulib.texi.
37335         * doc/ctime.texi: New file, extracted from gnulib.texi.
37336         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
37337         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
37338         * doc/gnulib.texi: Include them.
37339
37340 2005-09-18  Bruno Haible  <bruno@clisp.org>
37341
37342         Portability fix.
37343         * gnulib-tool (func_readlink): New function.
37344         (func_ln_if_changed): Use it.
37345
37346 2005-09-18  Bruno Haible  <bruno@clisp.org>
37347
37348         * gnulib-tool: Support --with-tests also with --import.
37349         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
37350         (func_import): Use variables $testsbase and $inctests. Emit a
37351         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
37352         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
37353         SUBDIRS += $testsdir.
37354         (func_create_testdir): Update.
37355
37356 2005-09-18  Bruno Haible  <bruno@clisp.org>
37357
37358         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
37359         instead of $dry_run.
37360         (func_cp_if_changed, func_mv_if_changed): Remove functions.
37361         (func_ln_if_changed): Don't handle dry-run here.
37362         (func_import): In dry-run mode, detect more precisely which actions
37363         would be performed, and don't use "...ing" verbs.
37364
37365 2005-09-18  Bruno Haible  <bruno@clisp.org>
37366
37367         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
37368         (func_import): Use join on two temporary files instead of three nested
37369         loops, in order to determine which files are new or old.
37370
37371 2005-09-18  Bruno Haible  <bruno@clisp.org>
37372
37373         * gnulib-tool (func_import): Comment out code that spits out the
37374         new files with --dry-run.
37375
37376 2005-09-18  Bruno Haible  <bruno@clisp.org>
37377
37378         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
37379
37380 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37381
37382         * lib/stat-time.h: New file.
37383         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
37384         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
37385         in a different way.
37386         (timespec_cmp): New function.
37387         * lib/utimecmp.c: Include stat-time.h.
37388         (SYSCALL_RESOLUTION): Depend on whether various struct stat
37389         members exist, not on the obsolescent ST_MTIM_NSEC.
37390         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
37391
37392 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37393
37394         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
37395
37396 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37397
37398         * MODULES.html.sh (File system functions): Add stat-time.
37399         * modules/stat-time: New file.
37400         * modules/timespec (Files): Remove m4/st_mtim.m4; this
37401         is now done in a different way, by the stat-time module.
37402         * modules/utimecmp (Depends-on): Add stat-time.
37403
37404 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37405
37406         * m4/st_mtim.m4: Remove.  Superseded by...
37407         * m4/stat-time.m4: New file.
37408         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
37409         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
37410
37411 2005-09-15  Derek Price  <derek@ximbiot.com>
37412
37413         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
37414
37415 2005-09-15  Derek Price  <derek@ximbiot.com>
37416
37417         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
37418         * lib/regex_internal.c: Ditto, using this...
37419         (__GNUC_PREREQ): ...new macro.
37420         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
37421         using...
37422         (__GNUC_PREREQ): ...this new macro.
37423
37424         * lib/strstr.h: Include string.h. Define strstr as a macro here.
37425
37426 2005-09-15  Derek Price  <derek@ximbiot.com>
37427             Paul Eggert  <eggert@cs.ucla.edu>
37428
37429         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
37430         changes, consolidating in...
37431         * lib/regex_internal.h: ...this file.
37432
37433 2005-09-13  Jim Meyering  <jim@meyering.net>
37434
37435         * lib/canon-host.c: Filter through gnu indent and reword comments
37436         slightly.
37437         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
37438
37439 2005-09-13  Derek Price  <derek@ximbiot.com>
37440
37441         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
37442         failure.
37443         Reported by Jim Meyering  <jim@meyering.net>.
37444
37445 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
37446
37447         * lib/base64.c: Typo.
37448         (base64_encode): Put b64str in initialized data section.
37449
37450 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
37451
37452         Merge glibc and coreutils changes into gnulib, plus a few
37453         extra fixes.
37454         * lib/md5.c: Use #error rather than a string.
37455         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
37456         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
37457         (__attribute__): Define to empty for non recent-GCC.
37458         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
37459         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
37460         Renamed from their non-__ counterparts, with new macros replacing
37461         them if not _LIBC.  Add __THROW attribute.
37462         (rol): Remove.
37463         (struct md5_ctx): Align buffer if using GCC.
37464         * lib/sha1.h (struct sha1_ctx): Likewise.
37465         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
37466         The old name was backwards.
37467         (NOTSWAP): Remove; not used.
37468         (rol): New macro, moved here from md5.h.
37469         (sha1_process_block): Remove a FIXME that doesn't make sense.
37470
37471 2005-09-12  Derek Price  <derek@ximbiot.com>
37472
37473         Return usable errors from canon-host.
37474         * lib/canon-host.h: New file.
37475         * lib/canon-host.c (canon_host): Wrap...
37476         (canon_host_r): ...this new function, which now relies exclusively on
37477         getaddrinfo.
37478         (ch_strerror): New function.
37479         (last_cherror): New global.
37480         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
37481         interface.
37482         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
37483         void *.
37484         (freeaddrinfo): Free ai->ai_canonname when set.
37485
37486 2005-09-12  Derek Price  <derek@ximbiot.com>
37487
37488         Make canon-host require getaddrinfo.
37489         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
37490         AC_LIBSOURCE canon-host.h.  Call...
37491         (gl_PREREQ_CANON_HOST): ...this new function, which requires
37492         gl_GETADDRINFO.
37493         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
37494
37495 2005-09-12  Derek Price  <derek@ximbiot.com>
37496
37497         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
37498         LGPL.
37499         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
37500
37501 2005-09-12  Derek Price  <derek@ximbiot.com>
37502
37503         * lib/gai_strerror.c: Include config.h when available.  Include
37504         getaddrinfo.h before other headers to test interface.
37505         Reported by Larry Jones <lawrence.jones@ugs.com>.
37506
37507 2005-09-12  Derek Price  <derek@ximbiot.com>
37508             Paul Eggert  <eggert@cs.ucla.edu>
37509
37510         * modules/glob (Files): Add glob-libc.h.
37511
37512 2005-09-12  Derek Price  <derek@ximbiot.com>
37513             Paul Eggert  <eggert@cs.ucla.edu>
37514
37515         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
37516         glob_.h, glob-libc.h.
37517         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
37518
37519 2005-09-12  Derek Price  <derek@ximbiot.com>
37520             Paul Eggert  <eggert@cs.ucla.edu>
37521
37522         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
37523         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
37524         protecting things that should be done only in gnulib contexts.
37525         * lib/glob_.h: New file, containing only the glob things needed for
37526         gnulib.
37527         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
37528         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
37529         (glob, globfree, glob_pattern_p): Now defined simply in terms of
37530         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
37531         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
37532         and to respect the namespace rules better.
37533
37534 2005-09-08  Simon Josefsson  <jas@extundo.com>
37535
37536         * modules/socklen: New file.
37537
37538 2005-09-08  Simon Josefsson  <jas@extundo.com>
37539
37540         * m4/socklen.m4: New file.
37541
37542 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37543
37544         * modules/utimens (Files): Add m4/utimbuf.m4, since
37545         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
37546         Reported by Sergey Poznyakoff.
37547
37548 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37549
37550         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
37551         definitions, since that's the preferred style in glibc.
37552         Fix a minor spacing issue, and update copyright notice to match
37553         glibc's.
37554
37555 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37556
37557         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
37558
37559 2005-09-06  Simon Josefsson  <jas@extundo.com>
37560
37561         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
37562         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
37563
37564 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
37565
37566         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
37567         warning.
37568
37569 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
37570
37571         * config/srclist.txt: Add glibc bug 1302.
37572
37573 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
37574
37575         Change bitset word type from unsigned int to unsigned long int,
37576         as this has better performance on typical 64-bit hosts.
37577         Port bitset code to hosts with unusual word sizes.
37578         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
37579         (build_collating_symbol):
37580         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
37581         argument is a bitset.  This is merely a style issue, but it makes
37582         it clearer that an entire array is expected.
37583         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
37584         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
37585         Port to the case where bitset_word is not the same as unsigned int.
37586         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
37587         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
37588         Likewise.
37589         * lib/regexec.c (check_dst_limits_calc_pos_1,
37590         check_subexp_matching_top):
37591         (build_trtable, group_nodes_into_DFAstates):
37592         Likewise.
37593         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
37594         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
37595         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
37596         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
37597         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
37598         * lib/regcomp.c (optimize_subexps, lower_subexp):
37599         Work even if bitset_word has holes in its bitwise representation.
37600         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
37601         * lib/regexec.c (check_dst_limits_calc_pos_1,
37602         check_subexp_matching_top):
37603         Likewise.
37604         * lib/regex_internal.c (re_string_reconstruct):
37605         Don't assume UCHAR_MAX == 255.
37606         * lib/regex_internal.h (bitset_set_all): Likewise.
37607         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
37608         All uses changed.
37609         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
37610         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
37611         All uses changed.
37612         (BITSET_WORD_MAX): New macro.
37613         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
37614         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
37615         (bitset_empty, bitset_copy):
37616         Prefer sizeof (bitset) to multiplying it out ourselves.
37617         (bitset_not_merge): Remove; unused.
37618         (bitset_contain): Return bool, not unsigned int with one bit on.
37619         All callers changed.
37620         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
37621         alignment than re_node_set; do this by defining a new internal
37622         type struct dests_alloc and using it to allocate memory.
37623
37624 2005-09-05  Bruno Haible  <bruno@clisp.org>
37625
37626         * gnulib-tool (func_import): Fix comparison in handling of symbolic
37627         links.
37628
37629 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
37630
37631         * modules/size_max (Makefile.am): Add size_max.h
37632
37633 2005-09-04  Derek Price  <derek@ximbiot.com>
37634
37635         * gnulib-tool (func_import): Fix reversed $symbolic logic.
37636
37637 2005-09-03  Simon Josefsson  <jas@extundo.com>
37638
37639         * gnulib-tool: Fix typo.
37640
37641 2005-09-03  Simon Josefsson  <jas@extundo.com>
37642
37643         * config/srclist.txt: Add glibc bug 1293.
37644
37645 2005-09-03  Derek Price  <derek@ximbiot.com>
37646
37647         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
37648         From Larry Jones <lawrence.jones@ugs.com>.
37649
37650 2005-09-02  Simon Josefsson  <jas@extundo.com>
37651
37652         * modules/socklen: New file.
37653
37654 2005-09-02  Simon Josefsson  <jas@extundo.com>
37655
37656         * modules/havelib: New module.
37657
37658         * modules/gettext, modules/iconv, modules/lock, modules/readline:
37659         Use havelib.
37660
37661 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
37662
37663         Check for arithmetic overflow when calculating sizes, to prevent
37664         some buffer-overflow issues.  These patches are conservative, in the
37665         sense that when I couldn't determine whether an overflow was possible,
37666         I inserted a run-time check.
37667         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
37668         macros.
37669         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
37670         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
37671         (re_xnrealloc, re_x2nrealloc): New inline functions.
37672         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
37673         parse_bracket_exp):
37674         (build_equiv_class, build_charclass): Check for arithmetic overflow
37675         in size expression calculations.
37676         * lib/regex_internal.c (re_string_realloc_buffers):
37677         (build_wcs_upper_buffer, re_node_set_add_intersect):
37678         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
37679         (re_dfa_add_node, register_state): Likewise.
37680         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
37681         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
37682         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
37683         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
37684
37685 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
37686
37687         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
37688         m4/ulonglong.m4.  Problem reported by Martin Lambers.
37689
37690 2005-09-02  Bruno Haible  <bruno@clisp.org>
37691
37692         Support for lib vs. lib64 distinction on biarch platforms.
37693         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
37694         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
37695         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
37696
37697 2005-09-02  Bruno Haible  <bruno@clisp.org>
37698
37699         * gnulib-tool (import): In the other first-use case, provide defaults
37700         as well.
37701
37702 2005-09-02  Bruno Haible  <bruno@clisp.org>
37703
37704         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
37705         patches not yet found in the latest gettext release.
37706
37707 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37708
37709         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
37710         to avoid a collision with bits/local_lim.h in glibc.
37711         All uses changed.  Problem reported by Dmitry V. Levin in
37712         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
37713
37714         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
37715         bugs in int versus size_t comparisons.
37716         (re_string_context_at): Fix bug where the code assumed that
37717         Idx is signed.
37718
37719         Use bool where appropriate.
37720         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
37721         All callers changed.
37722         (calc_eclosure_iter): Likewise, for ROOT arg.
37723         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
37724         (build_charclass_op): Likewise, for NON_MATCH arg.
37725         * lib/regex_internal.c (re_string_allocate, re_string_construct):
37726         (re_string_construct_common): Likewise, for ICASE arg.
37727         * lib/regexec.c (re_search_2_stub, re_search_stub):
37728         Likewise, for RET_LEN arg.
37729         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
37730         (set_regs): Likewise, for FL_BACKTRACK arg.
37731         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
37732         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
37733         (calc_eclosure_iter, parse_bracket_exp):
37734         Use bool for internal variables that are booleans.
37735         * lib/regexec.c (re_search_internal, check_matching,
37736         proceed_next_node):
37737         (set_regs, build_sifted_states, sift_states_bkref):
37738         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
37739         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
37740         (find_collation_sequence_value):
37741         Likewise.
37742         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
37743         (re_node_set_compare):
37744         Return bool, not int. All callers changed.
37745         * lib/regexec.c (check_halt_node_context, check_dst_limits):
37746         (build_trtable, check_node_accept): Likewise.
37747         * lib/regex_internal.h: Include stdbool.h.
37748
37749         Fix bugs uncovered when converting to bool.
37750         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
37751         failure instead of charging ahead blindly.
37752         * lib/regex_internal.c (register_state): Likewise.
37753         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
37754         for freeing internal storage.
37755         (group_nodes_into_DFA_states): Use unsigned int, not int, for
37756         bitset pieces used as boolean, to avoid undefined behavior
37757         on hosts that do int overflow checking.
37758
37759 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37760
37761         * config/srclist.txt: Add glibc bugs 1285-1287.
37762
37763 2005-09-01  Jim Meyering  <jim@meyering.net>
37764
37765         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
37766         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
37767         Require gl_STAT_MACROS, too.
37768
37769 2005-09-01  Bruno Haible  <bruno@clisp.org>
37770
37771         * gnulib-tool (import): In the first-use case, provide defaults.
37772
37773 2005-09-01  Bruno Haible  <bruno@clisp.org>
37774
37775         * gnulib-tool (func_import): Remove the .tmp files.
37776
37777 2005-09-01  Bruno Haible  <bruno@clisp.org>
37778
37779         * gnulib-tool (func_import): Fix handling of symbolic links.
37780
37781 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37782
37783         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
37784         old glibc regex code mishandles strings longer than 2**31 bytes.
37785         This patch fixes this when the regex code is used in gnulib
37786         (i.e., outside glibc).
37787
37788         This patch should not affect the use of the regex code inside
37789         glibc.  No doubt this problem also needs to be handled for glibc
37790         as well, but the result will be an incompatible change to the
37791         glibc ABI, and the old ABI will have to be supported too.  That
37792         can be the the subject for another patch.
37793
37794         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
37795         governing whether the rest of this patch is active.  By default,
37796         the macro is disabled and the patch has no effect.
37797         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
37798         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
37799         (struct re_pattern_buffer, re_search, re_search_2, re_match):
37800         (re_match_2, re_set_registers): Use the new types.
37801         * lib/regex_internal.h (Idx, re_hashval_t): New types.
37802         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
37803         New macros.
37804         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
37805         (re_string_context_at, bin_tree_t, re_dfastate_t):
37806         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
37807         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
37808         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
37809         (re_string_char_size_at, re_string_wchar_at):
37810         (re_string_elem_size_at):
37811         Use the new types and macros to port to 64-bit hosts.
37812         Use unsigned types for internal values, so that the code
37813         mostly works even for arrays larger than SSIZE_MAX.
37814         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
37815         (search_duplicated_node, calc_eclosure_iter, fetch_number):
37816         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
37817         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
37818         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
37819         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
37820         (calc_inveclosure, parse_dup_op, build_range_exp):
37821         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
37822         (fetch_number, create_token_tree, mark_opt_subexp):
37823         Likewise.
37824         * lib/regex_internal.c (re_string_construct_common,
37825         create_ci_newstate):
37826         (create_cd_newstate, re_string_allocate, re_string_construct):
37827         (re_string_realloc_buffers, build_wcs_upper_buffer):
37828         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
37829         (re_string_reconstruct, re_string_peek_byte_case):
37830         (re_string_fetch_byte_case, re_string_context_at):
37831         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
37832         (re_node_set_init_copy, re_node_set_add_intersect):
37833         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
37834         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
37835         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
37836         (re_acquire_state, re_acquire_state_context, register_state):
37837         Likewise.
37838         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
37839         search_cur_bkref_entry):
37840         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
37841         (re_search_internal, re_search_2_stub, re_search_stub)
37842         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
37843         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
37844         (update_cur_sifted_state, check_dst_limits):
37845         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
37846         (check_subexp_limits, sift_states_bkref, merge_state_array):
37847         (check_subexp_matching_top, get_subexp, get_subexp_sub):
37848         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
37849         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
37850         (expand_bkref_cache, check_node_accept_bytes):
37851         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
37852         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
37853         (acquire_init_state_context, check_halt_node_context):
37854         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
37855         (sift_states_backward, clean_state_log_if_needed):
37856         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
37857         (find_recover_state, transit_state_sb, transit_state_mb):
37858         (transit_state_bkref, build_trtable, match_ctx_clean):
37859         Likewise.
37860         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
37861         to work around an assumption that REG_MISSING is negative.
37862
37863         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
37864         (seek_collating_symbol_entry) [defined _LIBC]:
37865         (lookup_collation_sequence_value) [defined _LIBC]:
37866         (build_range_exp, build_collating_symbol) [defined _LIBC]:
37867         Use prototypes rather than old-style function definitions.
37868         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
37869         (transit_state_sb) [0]:
37870         (find_collation_sequence_value) [defined _LIBC]: Likewise.
37871
37872         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
37873         rm_eo.
37874
37875         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
37876         (optimize_subexps, lower_subexp):
37877         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
37878         since the signed shift might overflow.  Use 1u<<31 instead.
37879         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
37880         Likewise.
37881         * lib/regexec.c (check_dst_limits_calc_pos_1,
37882         check_subexp_matching_top): Likewise.
37883
37884         * lib/regcomp.c (optimize_subexps, lower_subexp):
37885         Use CHAR_BIT rather than 8, for clarity.
37886         * lib/regexec.c (check_dst_limits_calc_pos_1):
37887         (check_subexp_matching_top): Likewise.
37888         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
37889         have to worry about portability issues when shifting it left.
37890         Remove no-longer-needed test for table_size > 0.
37891         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
37892         in a word, as the resulting behavior is undefined.
37893         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
37894         in one case, a <= should have been an <, and in another case the
37895         whole test was missing.
37896         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
37897         the standard name CHAR_BIT.
37898         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
37899         this is not true on one's complement and signed-magnitude hosts.
37900
37901         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
37902         next_last_offset.
37903         (struct re_dfa_t): Remove unused member states_alloc.
37904         * lib/regcomp.c (init_dfa): Don't initialize unused members.
37905
37906 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37907
37908         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
37909         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
37910         and large-file glibc and in 32-bit large-file Solaris.
37911
37912 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37913
37914         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
37915         lengths fit in regoff_t; this isn't true if regoff_t is the same
37916         width as size_t.
37917         * lib/regex.c (re_search_internal): 5th arg is LAST_START
37918         (= START + RANGE) instead of RANGE.  This avoids overflow
37919         problems when regoff_t is the same width as size_t.
37920         All callers changed.
37921         (re_search_2_stub): Check for overflow when adding the
37922         sizes of the two strings.
37923         (re_search_stub): Check for overflow when adding START
37924         to RANGE; if it occurs, substitute the extreme value.
37925
37926 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37927
37928         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
37929
37930 2005-08-31  Jim Meyering  <jim@meyering.net>
37931
37932         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
37933         a pointer-to-const.
37934         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
37935         (register_state): Likewise.
37936         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
37937         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
37938         (group_nodes_into_DFAstates): Likewise.
37939
37940 2005-08-31  Jim Meyering  <jim@meyering.net>
37941
37942         * check-module: Add a FIXME comment.
37943
37944 2005-08-31  Eric Blake  <ebb9@byu.net>
37945
37946         * modules/unistd-safer (Files): Add unistd--.h.
37947         * modules/stdio-safer (Files): Add stdio--.h.
37948
37949 2005-08-31  Derek Price  <derek@ximbiot.com>
37950
37951         * lib/getdelim.c (getdelim): Return EOF on EOF.
37952         Reported by Larry Jones <lawrence.jones@ugs.com>.
37953
37954 2005-08-31  Bruno Haible  <bruno@clisp.org>
37955
37956         Avoid unnecessary diffs in the generated lib/Makefile.am.
37957         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
37958         the generated files.
37959         (func_import): Don't set cmd.
37960
37961 2005-08-31  Bruno Haible  <bruno@clisp.org>
37962
37963         * lib/strstr.c: Include <stddef.h>, for NULL.
37964         * lib/strcasestr.c: Likewise.
37965         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
37966
37967 2005-08-31  Bruno Haible  <bruno@clisp.org>
37968
37969         * gnulib-tool: New option --macro-prefix.
37970         (func_import): Use macro_prefix.
37971         (import): Handle option --macro-prefix.
37972
37973 2005-08-31  Bruno Haible  <bruno@clisp.org>
37974
37975         * gnulib-tool (import): Rename most ac_* variables to cached_*.
37976         Also use new variables cached_lgpl, cached_libtool.
37977
37978 2005-08-31  Bruno Haible  <bruno@clisp.org>
37979
37980         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
37981         always instantiating them.
37982
37983 2005-08-31  Bruno Haible  <bruno@clisp.org>
37984
37985         * gnulib-tool (func_import): Read the previous cached settings
37986         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
37987         earlier added by gnulib but are now dropped. Warn when a gnulib file
37988         overwrites a non-gnulib file.
37989
37990 2005-08-31  Bruno Haible  <bruno@clisp.org>
37991
37992         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
37993         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
37994         projects that don't keep autogenerated files in CVS. Put into
37995         actioncmd only the specified modules, not the transitive closure.
37996
37997 2005-08-31  Bruno Haible  <bruno@clisp.org>
37998
37999         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
38000         Create directories that shall be filled.
38001         (import): Don't look for gl_* macros in configure.ac. Recurse across
38002         all directories containing a gnulib-cache.m4 files, if meaningful.
38003
38004 2005-08-31  Bruno Haible  <bruno@clisp.org>
38005
38006         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
38007         (import): Set seen_libtool when we see gl_LIBTOOL.
38008
38009 2005-08-31  Bruno Haible  <bruno@clisp.org>
38010
38011         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
38012         declaration macro definitions from generated gnulib.m4.
38013
38014 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
38015
38016         * lib/iconvme.h: Add prototype for iconv_alloc.
38017
38018 2005-08-29  Simon Josefsson  <jas@extundo.com>
38019
38020         * lib/iconvme.c: Fix errno.
38021
38022 2005-08-29  Bruno Haible  <bruno@clisp.org>
38023
38024         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
38025         that it works when the directory contains spaces.
38026
38027 2005-08-29  Bruno Haible  <bruno@clisp.org>
38028
38029         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
38030
38031 2005-08-29  Bruno Haible  <bruno@clisp.org>
38032
38033         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
38034         Emit more advice.
38035
38036 2005-08-29  Bruno Haible  <bruno@clisp.org>
38037         and Stepan Kasal  <kasal@ucw.cz>
38038
38039         * check-module: If more parameters are given, check each of them
38040         separately; add more exceptions, as noted by Jim Meyering.
38041         (check_module): New procedure.
38042         (%exempt_header): Now contains all exceptions.
38043
38044 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
38045
38046         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
38047
38048 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
38049
38050         * lib/iconvme.c: Split iconv_string into iconv_alloc.
38051
38052 2005-08-28  Bruno Haible  <bruno@clisp.org>
38053
38054         * m4/gnulib-tool.m4: New file.
38055
38056 2005-08-27  Jim Meyering  <jim@meyering.net>
38057
38058         * modules/unistd-safer (Files): Add pipe-safer.c.
38059         * modules/fcntl-safer (Files): Add creat-safer.c.
38060
38061 2005-08-27  Jim Meyering  <jim@meyering.net>
38062
38063         * m4/stdlib-safer.m4: New file.  From coreutils.
38064         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
38065         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
38066         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
38067         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
38068         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
38069
38070 2005-08-27  Jim Meyering  <jim@meyering.net>
38071
38072         * lib/fopen-safer.c: Merge minor changes from coreutils.
38073         * lib/dup-safer.c: Likewise.
38074         * lib/fd-safer.c: Likewise.
38075
38076         Merge from coreutils.
38077         * lib/stdio--.h: New file.
38078         * lib/stdlib--.h: New file.
38079         * lib/mkstemp-safer.c: New file.
38080
38081         GNU tar needs these.
38082         * lib/pipe-safer.c: New file.
38083         * lib/creat-safer.c: New file.
38084         * lib/fcntl--.h (creat): Define to creat_safer.
38085         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
38086         * lib/unistd--.h (pipe): Define to pipe_safer.
38087         * lib/unistd-safer.h: Declare pipe_safer.
38088
38089 2005-08-26  Simon Josefsson  <jas@extundo.com>
38090
38091         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
38092         Haible <bruno@clisp.org>.
38093
38094 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
38095
38096         * lib/regex_internal.h: Remove all references to
38097         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
38098         or better.
38099         (bitset_not, bitset_merge, bitset_not_merge):
38100         (bitset_mask, re_string_allocate, re_string_construct):
38101         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
38102         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
38103         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
38104         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
38105         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
38106         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
38107         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
38108         (re_acquire_state_context):
38109         Remove unnecessary forward decls.
38110         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
38111         Put __attribute at function definition,
38112         now that the function decl has been removed.
38113         * lib/regex_internal.c (re_string_peek_byte_case):
38114         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
38115         Likewise.
38116
38117 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
38118
38119         * m4/regex.m4: Add AC_PREREQ(2.50).
38120         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
38121
38122 2005-08-25  Simon Josefsson  <jas@extundo.com>
38123
38124         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
38125         __fsetlocking.
38126
38127 2005-08-25  Simon Josefsson  <jas@extundo.com>
38128
38129         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
38130         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
38131         GLIBC specific code.
38132
38133 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
38134
38135         Make regex safe for g++.  This fixes one real bug (an "err"
38136         that should have been "*err").  g++ problem reported by
38137         Sam Steingold.
38138         * lib/regex_internal.h (re_calloc): New macro, consistent with
38139         re_malloc etc.  All callers of calloc changed to use re_calloc.
38140         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
38141         not int.  All callers changed.
38142         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
38143         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
38144         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
38145         (find_recover_state): Change "err" to "*err"; this fixes what
38146         appears to be a real bug.
38147         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
38148         versus int.
38149
38150 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
38151
38152         * modules/regex (Depends-on): Add malloc, since the code
38153         assumes that !malloc(0) means failure.
38154
38155 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
38156
38157         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
38158
38159         alloca modernization/simplification for regex.
38160         * lib/regex.c: Remove portability cruft for alloca.  This no longer
38161         needs to be at the start of the file, and can be moved into
38162         regex_internal.h and simplified.
38163         * lib/regex_internal.h: Include <alloca.h>.
38164         (__libc_use_alloca) [!defined _LIBC]: New macro.
38165         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
38166         now works outside glibc.
38167
38168 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
38169
38170         * config/srclist.txt: Add glibc bugs 1241, 1245.
38171
38172 2005-08-25  Jim Meyering  <jim@meyering.net>
38173
38174         * lib/open-safer.c: Include <config.h>.
38175         Otherwise, we'd lose LARGEFILE support in any file using
38176         e.g. "fcntl--.h"
38177
38178 2005-08-25  Bruno Haible  <bruno@clisp.org>
38179
38180         * m4/minmax.m4: Require autoconf 2.52.
38181         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
38182         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
38183         alternatives of translit over the alphabet.
38184         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
38185
38186 2005-08-24  Simon Josefsson  <jas@extundo.com>
38187
38188         * tests/test-getpass.c: New file.
38189
38190 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38191
38192         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
38193         for GNU regex features.
38194
38195 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38196
38197         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
38198         * lib/regex.h (regerror): Likewise.
38199
38200         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
38201         requires this.  (The code never needed it.)
38202
38203         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
38204         All uses of recently-renamed identifiers changed to use the new,
38205         POSIX-compliant names.  The code will build and run just fine
38206         without these changes, but it's better to eat our own dog food
38207         and use the standard-conforming names.
38208
38209         * lib/regex.h: Fix a multitude of POSIX name space violations.
38210         These changes have an effect only for programs that define
38211         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
38212         do not change anything for programs compiled in the normal way.
38213         Also, there is no effect on the ABI.
38214
38215         (_REGEX_SOURCE): New macro.
38216         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
38217         defined and _GNU_SOURCE is not; this fixes a name space violation.
38218
38219         Rename the following macros to obey POSIX requirements.
38220         The old names are still visible as macros if _REGEX_SOURCE is defined.
38221         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
38222         RE_BACKSLASH_ESCAPE_IN_LISTS.
38223         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
38224         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
38225         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
38226         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
38227         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
38228         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
38229         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
38230         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
38231         (REG_INTERVALS): renamed from RE_INTERVALS.
38232         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
38233         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
38234         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
38235         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
38236         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
38237         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
38238         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
38239         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
38240         RE_UNMATCHED_RIGHT_PAREN_ORD.
38241         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
38242         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
38243         (REG_DEBUG): renamed from RE_DEBUG.
38244         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
38245         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
38246         unusual, since we can't clash with the POSIX REG_ICASE.
38247         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
38248         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
38249         (REG_NO_SUB): renamed from RE_NO_SUB.
38250         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
38251         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
38252         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
38253         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
38254         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
38255         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
38256         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
38257         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
38258         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
38259         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
38260         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
38261         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
38262         RE_SYNTAX_POSIX_MINIMAL_BASIC.
38263         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
38264         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
38265         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
38266         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
38267         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
38268         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
38269         (REG_FIXED): Renamed from REGS_FIXED.
38270         (REG_NREGS): Renamed from RE_NREGS.
38271
38272         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
38273         of other REG_* macros, since POSIX says the user is allowed to
38274         #undef these macros selectively.
38275
38276         (reg_errcode_t): Update comment stating what other tables need
38277         to be consistent.
38278
38279         Rename the following enum values to obey POSIX requirements.
38280         The old names are still visible as macros.
38281         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
38282         is not defined, since GNU is supposed to be a superset of POSIX as
38283         much as possible, and since we want reg_errcode_t to be a signed
38284         type for implementation consistency.
38285         (_REG_NOERROR): Renamed from REG_NOERROR.
38286         (_REG_NOMATCH): Renamed from REG_NOMATCH.
38287         (_REG_BADPAT): Renamed from REG_BADPAT.
38288         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
38289         (_REG_ECTYPE): Renamed from REG_ECTYPE.
38290         (_REG_EESCAPE): Renamed from REG_EESCAPE.
38291         (_REG_ESUBREG): Renamed from REG_ESUBREG.
38292         (_REG_EBRACK): Renamed from REG_EBRACK.
38293         (_REG_EPAREN): Renamed from REG_EPAREN.
38294         (_REG_EBRACE): Renamed from REG_EBRACE.
38295         (_REG_BADBR): Renamed from REG_BADBR.
38296         (_REG_ERANGE): Renamed from REG_ERANGE.
38297         (_REG_ESPACE): Renamed from REG_ESPACE.
38298         (_REG_BADRPT): Renamed from REG_BADRPT.
38299         (_REG_EEND): Renamed from REG_EEND.
38300         (_REG_ESIZE): Renamed from REG_ESIZE.
38301         (_REG_ERPAREN): Renamed from REG_ERPAREN.
38302         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
38303         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
38304         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
38305         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
38306
38307         (_REG_RE_NAME, _REG_RM_NAME): New macros.
38308         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
38309         changed.  But support the old name if the new one is not defined
38310         and if _REGEX_SOURCE.
38311
38312         Change the following member names in struct re_pattern_buffer.
38313         The old names are still supported if !_REGEX_SOURCE.
38314         The new names are always supported, regardless of _REGEX_SOURCE.
38315         (re_buffer): Renamed from buffer.
38316         (re_allocated): Renamed from allocated.
38317         (re_used): Renamed from used.
38318         (re_syntax): Renamed from syntax.
38319         (re_fastmap): Renamed from fastmap.
38320         (re_translate): Renamed from translate.
38321         (re_can_be_null): Renamed from can_be_null.
38322         (re_regs_allocated): Renamed from regs_allocated.
38323         (re_fastmap_accurate): Renamed from fastmap_accurate.
38324         (re_no_sub): Renamed from no_sub.
38325         (re_not_bol): Renamed from not_bol.
38326         (re_not_eol): Renamed from not_eol.
38327         (re_newline_anchor): Renamed from newline_anchor.
38328
38329         Change the following member names in struct re_registers.
38330         The old names are still supported if !_REGEX_SOURCE.
38331         The new names are always supported, regardless of _REGEX_SOURCE.
38332         (rm_num_regs): Renamed from num_regs.
38333         (rm_start): Renamed from start.
38334         (rm_end): Renamed from end.
38335
38336         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
38337         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
38338         Prepend __ to parameter names.
38339
38340         Undo yesterday's changes.
38341
38342 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38343
38344         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
38345         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
38346         lib/regex.c.
38347
38348 2005-08-24  Jim Meyering  <jim@meyering.net>
38349
38350         Sync from coreutils.
38351         * m4/fcntl-safer.m4: New file.
38352
38353         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
38354         and object files for this module.
38355
38356 2005-08-24  Jim Meyering  <jim@meyering.net>
38357
38358         Sync from coreutils.
38359         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
38360
38361 2005-08-24  Jim Meyering  <jim@meyering.net>
38362
38363         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
38364         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
38365
38366 2005-08-24  Jim Meyering  <jim@meyering.net>
38367
38368         * modules/fcntl-safer: New module.
38369         * modules/fts (Depends-on): Add fcntl-safer.
38370         * MODULES.html.sh (File descriptor based Input/Output):
38371         Add fcntl-safer.
38372
38373 2005-08-24  Bruno Haible  <bruno@clisp.org>
38374
38375         Support for unit test modules.
38376         * modules/README: Mention tests modules.
38377         * modules/TEMPLATE-TESTS: New file.
38378         * gnulib-tool: New options --extract-tests-module, --with-tests and
38379         --tests-base (unused for the moment).
38380         (testsbase, inctests): New variables.
38381         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
38382         (func_verify_module): Exclude TEMPLATE-TESTS.
38383         (func_verify_nontests_module, func_verify_tests_module): New functions.
38384         (func_get_dependencies): Add implicit dependency for tests modules.
38385         (func_get_tests_module): New function.
38386         (func_modules_transitive_closure): When --with-tests was specified,
38387         include the unit tests as well, unless explicitly avoided.
38388         (func_emit_lib_Makefile_am): Ignore the tests modules here.
38389         (func_emit_tests_Makefile_am): New function.
38390         (func_create_testdir): When --with-tests was specified, emit a
38391         tests/ directory.
38392         * MODULES.html.sh (Future developments): Update.
38393
38394 2005-08-24  Bruno Haible  <bruno@clisp.org>
38395
38396         * modules/tls-tests: New file.
38397         * tests/test-tls.c: New file, from GNU gettext.
38398
38399 2005-08-24  Bruno Haible  <bruno@clisp.org>
38400
38401         * modules/lock-tests: New file.
38402         * tests/test-lock.c: New file, from GNU gettext.
38403
38404 2005-08-24  Bruno Haible  <bruno@clisp.org>
38405
38406         * lib/lock.h: Add multiple inclusion guard.
38407         * lib/tls.h: Add multiple inclusion guard.
38408
38409 2005-08-24  Bruno Haible  <bruno@clisp.org>
38410
38411         * gnulib-tool: Add support for the --aux-dir option to
38412         --create-testdir, --create-megatestdir, --test, --megatest.
38413         (func_create_testdir, func_create_megatestdir): Optionally emit a
38414         AC_CONFIG_AUX_DIR directive.
38415         (create-testdir, create-megatestdir, test, megatest): Provide a
38416         default value for $auxdir.
38417
38418 2005-08-24  Bruno Haible  <bruno@clisp.org>
38419
38420         * gnulib-tool (import): Use compound statement instead of subshell
38421         where possible.
38422
38423 2005-08-24  Bruno Haible  <bruno@clisp.org>
38424
38425         * gnulib-tool (import): Change --aux-dir default to "build-aux".
38426
38427 2005-08-24  Bruno Haible  <bruno@clisp.org>
38428
38429         * gnulib-tool (func_version): Update.
38430
38431 2005-08-24  Bruno Haible  <bruno@clisp.org>
38432
38433         * gnulib-tool (func_import, func_create_testdir,
38434         func_create_megatestdir): Quote all autoconf macro arguments.
38435
38436 2005-08-24  Bruno Haible  <bruno@clisp.org>
38437
38438         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
38439         option --force, because --force causes the aclocal.m4 of each
38440         subdirectory to be newer than the corresponding config.h.in.
38441
38442 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38443
38444         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
38445         All contents moved to gl_REGEX.
38446         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
38447         assume that it does.
38448
38449 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38450
38451         * lib/regex.h (REG_NOSYS)
38452         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
38453         Define, since POSIX requires it as of 2001.
38454         (_REG_ENOSYS)
38455         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
38456         New private symbol, used to keep the enum signed in all cases.
38457         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
38458         Youngman in
38459         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
38460
38461         * lib/regex_internal.c (re_string_skip_chars, register_state):
38462         (calc_state_hash):
38463         Remove forward decls; no longer needed now that we use prototypes.
38464         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
38465         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
38466         (clean_state_log_if_needed): Likewise.
38467
38468 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38469
38470         * config/srclist.txt: Add glibc bugs 1231-1233.
38471
38472 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38473
38474         Fix problems reported by Sam Steingold in
38475         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
38476         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
38477         assumed that reg_errcode_t is a signed type, which is not
38478         necessarily true if _XOPEN_SOURCE is not defined.
38479         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
38480         since some compilers warn about it otherwise.
38481
38482 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38483
38484         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
38485         (init_word_char, create_initial_state, duplicate_node_closure):
38486         (fetch_token, peek_token_bracket, build_range_exp):
38487         (build_collating_symbol): Remove forward decls; no longer needed
38488         now that we use prototypes.
38489
38490         * lib/regcomp.c:
38491         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
38492         (re_compile_fastmap_iter, regcomp, regerror, regfree):
38493         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
38494         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
38495         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
38496         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
38497         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
38498         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
38499         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
38500         (build_range_exp, build_collating_symbol, parse_bracket_exp):
38501         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
38502         (build_charclass, build_charclass_op, fetch_number, create_tree):
38503         (create_token_tree, mark_opt_subexp, duplicate_tree):
38504         Use prototypes rather than old-style definitions.
38505
38506         * lib/regex_internal.c:
38507         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
38508         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
38509         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
38510         (re_string_reconstruct, re_string_peek_byte_case):
38511         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
38512         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
38513         (re_node_set_init_copy, re_node_set_add_intersect):
38514         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
38515         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
38516         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
38517         (re_acquire_state, re_acquire_state_context, register_state):
38518         (create_ci_newstate, create_cd_newstate, free_state):
38519         Likewise.
38520         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
38521         re_search_2):
38522         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
38523         (re_search_internal, prune_impossible_nodes):
38524         (acquire_init_state_context, check_matching, static):
38525         (check_halt_node_context, check_halt_state_context, proceed_next_node):
38526         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
38527         (update_regs, sift_states_backward, build_sifted_states):
38528         (clean_state_log_if_needed, merge_state_array):
38529         (update_cur_sifted_state, add_epsilon_src_nodes):
38530         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
38531         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
38532         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
38533         (find_recover_state, check_subexp_matching_top, transit_state_mb):
38534         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
38535         (check_arrival, check_arrival_add_next_nodes):
38536         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
38537         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
38538         (check_node_accept_bytes, check_node_accept, extend_buffers):
38539         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
38540         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
38541         (sift_ctx_init):
38542         Likewise.
38543
38544         * lib/regex_internal.h:
38545         (re_string_allocate, re_string_construct, re_string_reconstruct):
38546         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
38547         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
38548         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
38549         (re_string_context_at, re_string_peek_byte_case):
38550         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
38551         is defined, since we now use prototypes always.
38552
38553         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
38554         C89 or better.  All uses removed.
38555
38556 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38557
38558         * config/srclist.txt: Add glibc bugs 1220-1227.
38559
38560 2005-08-20  Jim Meyering  <jim@meyering.net>
38561
38562         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
38563         of unused local, dfa.
38564
38565 2005-08-20  Bruno Haible  <bruno@clisp.org>
38566
38567         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
38568
38569 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38570
38571         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
38572         (re_node_set_insert_last, re_dfa_add_node):
38573         Rename local variables to avoid GCC shadowing warnings.
38574
38575 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38576
38577         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
38578         [defined lint]: Suppress bogus uninitialized-variable warnings.
38579
38580         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
38581         and let the caller return REG_ESPACE if out of space.  This
38582         removes an uninitialied-variable warning with GCC 4.0.1, and also
38583         avoids taking the address of a local variable.  All callers
38584         changed.
38585
38586 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38587
38588         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
38589         $LIBCSRC/posix/regexec.c.
38590         Add glibc bug 1217 for regcomp.c.
38591
38592 2005-08-19  Jim Meyering  <jim@meyering.net>
38593
38594         * lib/regexec.c (proceed_next_node): Redo local variables to
38595         avoid GCC shadowing warnings.
38596
38597 2005-08-18  Bruno Haible  <bruno@clisp.org>
38598
38599         * lib/strstr.c (strstr): Fix return value in multibyte case.
38600         * lib/strcasestr.c (strcasestr): Likewise.
38601
38602 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38603
38604         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
38605
38606 2005-08-17  Jim Meyering  <jim@meyering.net>
38607
38608         Make the %s format (seconds since the epoch) work for a negative
38609         number and when used with a zero-padded field width, e.g. %015s.
38610
38611         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
38612         label so that it precedes the code to set `digits'.  Otherwise,
38613         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
38614         print `00-22'.  Now, it prints `-0022', as it should.
38615
38616 2005-08-17  Bruno Haible  <bruno@clisp.org>
38617
38618         * modules/strstr (Files): Add m4/mbrtowc.m4.
38619         (Depends-on): Add mbuiter.
38620
38621 2005-08-17  Bruno Haible  <bruno@clisp.org>
38622
38623         * modules/strcasestr: New file.
38624         * MODULES.html.sh (String handling, based on ANSI C 89): Add
38625         strcasestr.
38626
38627 2005-08-17  Bruno Haible  <bruno@clisp.org>
38628
38629         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
38630
38631 2005-08-17  Bruno Haible  <bruno@clisp.org>
38632
38633         * modules/mbuiter: New file.
38634         * MODULES.html.sh (Extended multibyte and wide character utilities):
38635         Add mbuiter.
38636
38637 2005-08-17  Bruno Haible  <bruno@clisp.org>
38638
38639         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
38640         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
38641
38642 2005-08-17  Bruno Haible  <bruno@clisp.org>
38643
38644         * m4/strcasestr.m4: New file.
38645
38646 2005-08-17  Bruno Haible  <bruno@clisp.org>
38647
38648         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
38649         * lib/strstr.c: Completely rewritten, with multibyte locale support.
38650
38651 2005-08-17  Bruno Haible  <bruno@clisp.org>
38652
38653         * lib/strcasestr.h: New file.
38654         * lib/strcasestr.c: New file.
38655
38656 2005-08-17  Bruno Haible  <bruno@clisp.org>
38657
38658         * lib/strcasecmp.c: Use mbuiter.h.
38659
38660 2005-08-17  Bruno Haible  <bruno@clisp.org>
38661
38662         * lib/mbuiter.h: New file.
38663
38664 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38665
38666         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
38667         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
38668         and gl_GETOPT are both invoked via different paths (as happens
38669         with GNU tar CVS because it uses both argp and getopt), the former
38670         wins.
38671
38672 2005-08-16  Bruno Haible  <bruno@clisp.org>
38673
38674         * modules/tls: New file.
38675         * MODULES.html.sh (Multithreading): Add tls.
38676
38677 2005-08-16  Bruno Haible  <bruno@clisp.org>
38678
38679         * modules/strnlen1: New file.
38680         * MODULES.html.sh (String handling): Add strnlen1.
38681
38682 2005-08-16  Bruno Haible  <bruno@clisp.org>
38683
38684         * modules/strcase (Files): Add m4/mbrtowc.m4.
38685         (Depends-on): Add strnlen1, mbchar.
38686
38687 2005-08-16  Bruno Haible  <bruno@clisp.org>
38688
38689         * modules/mbiter: New file.
38690         * MODULES.html.sh (Extended multibyte and wide character utilities):
38691         Add mbiter.
38692
38693 2005-08-16  Bruno Haible  <bruno@clisp.org>
38694
38695         * modules/mbfile: New file.
38696         * MODULES.html.sh (Extended multibyte and wide character utilities):
38697         Add mbfile.
38698
38699 2005-08-16  Bruno Haible  <bruno@clisp.org>
38700
38701         * modules/mbchar: New file.
38702         * MODULES.html.sh (Extended multibyte and wide character utilities):
38703         New section.
38704
38705 2005-08-16  Bruno Haible  <bruno@clisp.org>
38706
38707         * m4/tls.m4: New file, from GNU gettext.
38708
38709 2005-08-16  Bruno Haible  <bruno@clisp.org>
38710
38711         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
38712         always.
38713         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
38714
38715 2005-08-16  Bruno Haible  <bruno@clisp.org>
38716
38717         * m4/mbiter.m4: New file.
38718
38719 2005-08-16  Bruno Haible  <bruno@clisp.org>
38720
38721         * m4/mbfile.m4: New file.
38722
38723 2005-08-16  Bruno Haible  <bruno@clisp.org>
38724
38725         * m4/mbchar.m4: New file.
38726
38727 2005-08-16  Bruno Haible  <bruno@clisp.org>
38728
38729         * lib/tls.h: New file, from GNU gettext.
38730         * lib/tls.c: New file, from GNU gettext.
38731
38732 2005-08-16  Bruno Haible  <bruno@clisp.org>
38733
38734         * lib/strnlen1.h: New file.
38735         * lib/strnlen1.c: New file.
38736
38737 2005-08-16  Bruno Haible  <bruno@clisp.org>
38738
38739         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
38740         (mbi_init): Update.
38741         (mbi_avail, mbi_advance): Let the iteration end before the terminating
38742         NUL byte, not after it.
38743
38744 2005-08-16  Bruno Haible  <bruno@clisp.org>
38745
38746         * lib/strcase.h (strcasecmp): Add note in comments.
38747         * lib/strncasecmp.c: Use code from strcasecmp.c.
38748         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
38749         (strcasecmp): Work correctly in multibyte locales.
38750
38751 2005-08-16  Bruno Haible  <bruno@clisp.org>
38752
38753         * lib/mbiter.h: New file.
38754
38755 2005-08-16  Bruno Haible  <bruno@clisp.org>
38756
38757         * lib/mbfile.h: New file.
38758
38759 2005-08-16  Bruno Haible  <bruno@clisp.org>
38760
38761         * lib/mbchar.h: New file.
38762         * lib/mbchar.c: New file.
38763
38764 2005-08-16  Bruno Haible  <bruno@clisp.org>
38765
38766         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
38767         the valid ones. Makes the comparison operations transitive:
38768         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
38769         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
38770
38771 2005-08-15  Simon Josefsson  <jas@extundo.com>
38772
38773         * modules/ssize_t (License): Change to 'unlimited'.
38774
38775         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
38776
38777 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38778
38779         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
38780         Add comments for each pending glibc patch.
38781
38782 2005-08-15  Bruno Haible  <bruno@clisp.org>
38783
38784         * lib/regex.h (__restrict_arr): Don't define to __restrict if
38785         __cplusplus is defined.
38786
38787 2005-08-14  Jim Meyering  <jim@meyering.net>
38788
38789         Sync from coreutils.
38790
38791         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
38792         Use the hash-table-based cycle-detection code not just when
38793         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
38794         Reported by James Youngman in
38795         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
38796         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
38797         FTS_TIGHT_CYCLE_CHECK.
38798         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
38799         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
38800         once again.
38801         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
38802         * lib/fts.c (fd_safer): Remove decl.
38803         Include fcntl--.h rather than unistd-safer.h
38804         (fts_safe_changedir): Don't call fd_safer; no longer needed
38805         now that we include fcntl--.h.
38806
38807 2005-08-12  Simon Josefsson  <jas@extundo.com>
38808
38809         * modules/getndelim2: Use ssize_t module.
38810         * modules/getnline: Likewise.
38811         * modules/safe-read: Likewise.
38812         * modules/xreadlink: Likewise.
38813
38814         * modules/ssize_t: New file.
38815
38816 2005-08-12  Simon Josefsson  <jas@extundo.com>
38817
38818         * m4/readline.m4: Look for termcap, curses or ncurses if required.
38819
38820 2005-08-12  Simon Josefsson  <jas@extundo.com>
38821
38822         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38823         ssize_t.
38824
38825 2005-08-12  Simon Josefsson  <jas@extundo.com>
38826
38827         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
38828         readline, getdelim and check_version.
38829         (Support for systems lacking ISO C 99: Sizes of integer types):
38830         Add size_max.
38831
38832 2005-08-12  Bruno Haible  <bruno@clisp.org>
38833
38834         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
38835
38836 2005-08-11  Simon Josefsson  <jas@extundo.com>
38837
38838         * modules/readline: New file.
38839
38840         * modules/strnlen (Files): Add strnlen.h.
38841
38842 2005-08-11  Simon Josefsson  <jas@extundo.com>
38843
38844         * m4/readline.m4: New file.
38845
38846 2005-08-11  Simon Josefsson  <jas@extundo.com>
38847
38848         * lib/readline.h, readline.c: New file.
38849
38850 2005-08-11  Simon Josefsson  <jas@extundo.com>
38851
38852         * doc/gnulib.texi (Initial import, Finishing touches): Mention
38853         gl_AVOID.
38854
38855 2005-08-11  Bruno Haible  <bruno@clisp.org>
38856
38857         * lib/strnlen.h (strnlen): Change parameter name to match comment.
38858
38859 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
38860
38861         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
38862
38863 2005-08-10  Simon Josefsson  <jas@extundo.com>
38864
38865         * tests/test-iconvme.c: New file.
38866
38867 2005-08-10  Simon Josefsson  <jas@extundo.com>
38868
38869         * m4/strnlen.m4: New file.
38870
38871         * m4/strndup.m4: Don't check for strnlen declaration, done in
38872         strnlen.m4.
38873
38874 2005-08-10  Simon Josefsson  <jas@extundo.com>
38875
38876         * lib/strndup.c: Use strnlen.h.
38877
38878         * lib/strnlen.h: New file.
38879
38880 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
38881
38882         * README: Typos.
38883
38884 2005-08-02  Simon Josefsson  <jas@extundo.com>
38885
38886         * modules/readline: New file.
38887
38888 2005-08-02  Simon Josefsson  <jas@extundo.com>
38889
38890         * modules/getdelim: New file.
38891
38892         * modules/getline: Rewrite, don't use getndelim2.
38893
38894 2005-08-02  Simon Josefsson  <jas@extundo.com>
38895
38896         * m4/getline.m4: Separate out getdelim stuff into separate module.
38897
38898         * m4/getdelim.m4: New file.
38899
38900 2005-08-02  Simon Josefsson  <jas@extundo.com>
38901
38902         * lib/getline.h, getline.c: Rewrite.
38903
38904         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
38905
38906 2005-07-31  Bruno Haible  <bruno@clisp.org>
38907
38908         * lib/lock.h (gl_lock_initializer): New macro.
38909         (gl_lock_define_initialized): Use it.
38910         (gl_rwlock_initializer): New macro.
38911         (gl_rwlock_define_initialized): Use it.
38912         (gl_recursive_lock_initializer): New macro.
38913         (gl_recursive_lock_define_initialized): Use it.
38914
38915 2005-07-30  Karl Berry  <karl@gnu.org>
38916
38917         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
38918         Report from Ben Pfaff, regarding getopt.
38919
38920 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
38921
38922         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
38923         normal way.
38924         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
38925         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
38926         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
38927         (gl_GETOPT): Use the new macros.  Most of the implementation
38928         is moved to the new macros.  This is for programs like Emacs
38929         that don't want all the functionality of gl_GETOPT.
38930
38931 2005-07-26  Bruno Haible  <bruno@clisp.org>
38932
38933         * m4/lock.m4: Update from GNU gettext.
38934
38935 2005-07-26  Bruno Haible  <bruno@clisp.org>
38936
38937         * lib/lock.h: Update from GNU gettext.
38938         * lib/lock.c: Update from GNU gettext.
38939
38940 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
38941
38942         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
38943         obsolescent AC_TRY_RUN.  Include the default includes files, for
38944         'exit'.
38945
38946 2005-07-24  Bruno Haible  <bruno@clisp.org>
38947
38948         * modules/visibility: New file.
38949         * MODULES.html.sh (Misc): Add visibility.
38950
38951 2005-07-24  Bruno Haible  <bruno@clisp.org>
38952
38953         * m4/visibility.m4: New file.
38954
38955 2005-07-24  Bruno Haible  <bruno@clisp.org>
38956
38957         * doc/visibility.texi: New file.
38958
38959 2005-07-22  Bruno Haible  <bruno@clisp.org>
38960
38961         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
38962         $(ALLOCA_H), redundant through BUILT_SOURCES.
38963         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
38964         redundant through BUILT_SOURCES.
38965         * modules/byteswap (Makefile.am): Remove explicit dependency on
38966         $(BYTESWAP_H), redundant through BUILT_SOURCES.
38967         * modules/fnmatch (Makefile.am): Remove explicit dependency on
38968         $(FNMATCH_H), redundant through BUILT_SOURCES.
38969         * modules/getopt (Makefile.am): Remove explicit dependency on
38970         $(GETOPT_H), redundant through BUILT_SOURCES.
38971         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
38972         redundant through BUILT_SOURCES.
38973         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
38974         redundant through BUILT_SOURCES.
38975         * modules/stdbool (Makefile.am): Remove explicit dependency on
38976         $(STDBOOL_H), redundant through BUILT_SOURCES.
38977         * modules/stdint (Makefile.am): Remove explicit dependency on
38978         $(STDINT_H), redundant through BUILT_SOURCES.
38979         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
38980         Remove explicit dependency on $(SYSEXITS_H).
38981         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
38982
38983 2005-07-18  Simon Josefsson  <jas@extundo.com>
38984
38985         * lib/check-version.c (check_version): Accept identical versions too.
38986
38987 2005-07-18  Bruno Haible  <bruno@clisp.org>
38988
38989         * modules/lock: New file.
38990         * MODULES.html.sh (Multithreading): New section.
38991
38992 2005-07-18  Bruno Haible  <bruno@clisp.org>
38993
38994         * m4/lock.m4: New file, from GNU gettext.
38995
38996 2005-07-18  Bruno Haible  <bruno@clisp.org>
38997
38998         * lib/lock.h: New file, from GNU gettext.
38999         * lib/lock.c: New file, from GNU gettext.
39000
39001 2005-07-18  Bruno Haible  <bruno@clisp.org>
39002
39003         * lib/lock.h (gl_once_t): New type.
39004         (gl_once_define, gl_once): New macros.
39005         * lib/lock.c (fresh_once): New variable.
39006         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
39007         functions.
39008
39009 2005-07-16  Simon Josefsson  <jas@extundo.com>
39010
39011         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
39012         workaround, suggested by Bruno.
39013
39014 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
39015
39016         * modules/xalloc (Depends-on): Add xalloc-die.
39017         * modules/xvasprintf (Depends-on): Add xalloc-die.
39018
39019 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
39020
39021         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
39022         with a minor change.
39023
39024 2005-07-15  Bruno Haible  <bruno@clisp.org>
39025
39026         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
39027         When using lib/poll.c, define poll as rpl_poll.
39028
39029 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
39030
39031         * modules/argp (Depends-on): Remove unlocked-io.
39032
39033 2005-07-14  Derek Price  <derek@ximbiot.com>
39034
39035         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
39036         for glob symlink bug.
39037
39038 2005-07-14  Bruno Haible  <bruno@clisp.org>
39039
39040         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
39041         Instead, test for *_unlocked function declarations directly.
39042
39043 2005-07-11  Simon Josefsson  <jas@extundo.com>
39044
39045         * modules/size_max: New file.
39046
39047         * modules/xsize: Depend on size_max module for size_max.m4.
39048
39049 2005-07-11  Simon Josefsson  <jas@extundo.com>
39050
39051         * lib/size_max.h: New file.
39052
39053 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
39054
39055         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
39056         copyright symbol and the year.
39057         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
39058         (version_etc_va): Use parameterized copyright notice.
39059         Reword to conform to the current GNU coding standards.
39060
39061 2005-07-11  Karl Berry  <karl@gnu.org>
39062
39063         * doc/gnulib.texi (Quoting): new node.
39064         (Initial import): more info, from Patrice.
39065
39066 2005-07-11  Bruno Haible  <bruno@clisp.org>
39067
39068         * gnulib-tool (func_usage): Document option --avoid.
39069         (Command line options): Handle --avoid.
39070         (func_acceptable): New function.
39071         (func_modules_transitive_closure): Use it.
39072
39073 2005-07-11  Bruno Haible  <bruno@clisp.org>
39074
39075         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
39076         Reported by Jim Meyering.
39077
39078 2005-07-10  Bruno Haible  <bruno@clisp.org>
39079
39080         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
39081         Needed when size_t is smaller than 'unsigned int'.
39082         Reported by Paul Eggert.
39083
39084 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39085
39086         * modules/argp (Depends-on): Add unlocked-io
39087
39088 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39089
39090         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
39091         block of defines.
39092
39093 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39094
39095         * config/srclist.txt: Comment out regcomp.c, since we have a porting
39096         fix now.
39097
39098 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
39099         and Paul Eggert  <eggert@cs.ucla.edu>
39100
39101         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
39102         in wint_t, not wchar_t.  Remove now-unnecessary cast.
39103
39104 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
39105
39106         * modules/regex (Files): Add lib/regex_internal.c,
39107         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
39108         (Depends-on): Add extensions.
39109         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
39110
39111 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
39112
39113         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
39114         pathconf.
39115         * m4/same.m4 (gl_SAME): Likewise.
39116         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
39117
39118         * m4/regex.m4: Adjust to new libc regex implementation.
39119         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
39120         all the .c and .h parts of (the new) regex.
39121         Quote the m4 stuff better.
39122         Check for RE_ICASE bug of old gnulib.
39123         Check for REG_STARTEND of recent libc.
39124         Rename local variables from jm_* to gl_*.
39125         Quote operand of "test -f".
39126         Say "recent enough" version of libc, not "version 2".
39127         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
39128         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
39129         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
39130         Remove check for btowc, isascii.
39131         Require AM_LANGINFO_CODESET.
39132
39133 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
39134
39135         * lib/regex.c, regex.h: Sync from libc.
39136         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
39137         * lib/regexec.c:
39138         New files, synced from libc, except that regex_internal.h
39139         currently has a small porting fix.
39140
39141 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
39142
39143         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
39144         regex_internal.c, regexec.c.
39145         Add regex_internal.h too, but as a comment, since the libc version
39146         is currently broken in gnulib mode.
39147
39148 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39149
39150         Support programs like Emacs that use gnulib but not gettext.
39151         * MODULES.html.sh (Internationalization functions): Add gettext-h.
39152         * modules/gettext-h: New file.
39153         * modules/gettext (Files): Remove lib/gettext.h.
39154         (Depends-on): Add gettext-h.
39155         (Makefile.am): Remove lib_SOURCES.
39156         * modules/argmatch, modules/c-stack, modules/closeout:
39157         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
39158         * modules/execute, modules/file-type, modules/getaddrinfo:
39159         * modules/getopt, modules/human, modules/javacomp:
39160         * modules/javaexec, modules/mkdir-p, modules/obstack:
39161         * modules/openat, modules/pagealign_alloc, modules/pipe:
39162         * modules/quotearg, modules/regex, modules/rpmatch:
39163         * modules/unicodeio, modules/userspec, modules/version-etc:
39164         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
39165         * modules/xsetenv:
39166         Depend on gettext-h, not gettext.
39167
39168 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39169
39170         * gnulib-tool (func_import): Add support for 'public domain' license.
39171         * modules/alloca, modules/atexit, modules/memmove:
39172         Now public domain, not GPL.
39173         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
39174         * modules/realloc, modules/strerror, modules/strtod:
39175         Now LGPL, not GPL.
39176
39177 2005-07-05  Bruno Haible  <bruno@clisp.org>
39178
39179         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
39180         autoconf CVS. Needed for mingw.
39181
39182 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39183
39184         Remove the dependency of the strftime module on the tzset module.
39185         * modules/strftime (Depends-on): Remove dependency on tzset.
39186
39187 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39188
39189         Remove the dependency of the strftime module on the tzset module.
39190         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
39191         gl_FUNC_TZSET_CLOBBER.
39192
39193 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39194
39195         Remove the dependency of the strftime module on the tzset module.
39196         * lib/strftime.c (my_strftime)
39197         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
39198         Copy the input structure, to work around some of the bug with
39199         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
39200         Solaris releases, you should also use the tzset module, but we won't
39201         require it as a dependency any more since we don't want LGPLed code
39202         to depend on GPLed code.
39203
39204 2005-07-02  Jim Meyering  <jim@meyering.net>
39205
39206         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
39207         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
39208         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
39209         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
39210
39211 2005-07-02  Jim Meyering  <jim@meyering.net>
39212
39213         * lib/backupfile.c (backup_args): Change a `0' to NULL.
39214
39215 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39216
39217         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
39218         declares only 'struct timespec;' (!).
39219
39220 2005-07-01  Jim Meyering  <jim@meyering.net>
39221
39222         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
39223         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
39224         * lib/save-cwd.c, tempname.c:
39225         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
39226         and don't include <sys/file.h>).
39227
39228 2005-06-29  Jim Meyering  <jim@meyering.net>
39229
39230         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
39231         type name.  Use the variable name instead.
39232         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
39233         Likewise.
39234
39235 2005-06-28  Simon Josefsson  <jas@extundo.com>
39236
39237         * modules/check-version (Files): Add check-version.m4.
39238
39239 2005-06-28  Simon Josefsson  <jas@extundo.com>
39240
39241         * m4/check-version.m4: New file, suggested by Jim Meyering
39242         <jim@meyering.net>.
39243
39244 2005-06-28  Simon Josefsson  <jas@extundo.com>
39245
39246         * lib/check-version.h, lib/check-version.c: New files.
39247
39248 2005-06-28  Simon Josefsson  <jas@extundo.com>
39249
39250         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
39251         collision with global variable.  Better indentation.  Don't
39252         increment buffer pointer beyond buffer end.  Based on comments
39253         from Paul Eggert <eggert@cs.ucla.edu>.
39254
39255         * lib/base64.h: Indent.
39256
39257 2005-06-28  Simon Josefsson  <jas@extundo.com>
39258
39259         * doc/gnulib.texi (Library version handling): New section.
39260
39261 2005-06-28  Jim Meyering  <jim@meyering.net>
39262
39263         * check-module (find_included_lib_files): Hard-code another
39264         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
39265         but modules/fts-lgpl (correctly) does not list those files.
39266
39267         * modules/canonicalize (Files): Add lib/pathmax.h.
39268
39269 2005-06-25  Simon Josefsson  <jas@extundo.com>
39270
39271         * modules/check-version: New file.
39272
39273 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
39274
39275         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
39276         initializer of struct addrinfo, as an indication that we don't
39277         care how many members the structure has.
39278
39279 2005-06-24  Derek Price  <derek@ximbiot.com>
39280         and Bruno Haible  <bruno@clisp.org>
39281
39282         Remove stat module & update lstat.
39283         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
39284         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39285         * m4/stat.m4: Remove this file.
39286
39287 2005-06-24  Derek Price  <derek@ximbiot.com>
39288         and Bruno Haible  <bruno@clisp.org>
39289
39290         Remove stat module & update lstat.
39291         * lib/stat.c: Remove this file...
39292         (slash_aware_lstat): ...moving this content and its support...
39293         * lib/lstat.c (rpl_lstat): ...into here.
39294         * lib/lstat.h: New file.
39295
39296 2005-06-24  Derek Price  <derek@ximbiot.com>
39297         and Bruno Haible  <bruno@clisp.org>
39298
39299         Remove stat module & update lstat.
39300         * config/srclist.txt (libc sources): Remove stat.
39301
39302 2005-06-24  Derek Price  <derek@ximbiot.com>
39303         and Bruno Haible  <bruno@clisp.org>
39304
39305         Remove stat module & update lstat.
39306         * MODULES.html.sh (stat): Remove.
39307         * MODULES.html: Regenerated.
39308         * modules/lstat (Description): Correct function name.
39309         (Files): Add "lstat.h".
39310         (Depends-on): Remove stat, add xalloc, stat-macros.
39311         * modules/stat: Remove this file.
39312         (Include): Add "lstat.h", remove <sys/stat.h>.
39313
39314 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
39315
39316         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
39317         (ranged_convert): Don't save conversion in a temporary struct.
39318         This causes a warning with GCC 4.0.0, and anyway in the typical
39319         case it's not worth the extra 100 bytes or so of code.
39320         (ranged_convert, __mktime_internal): When calling a function via a
39321         pointer P, use P () rather than (*P) (), as we now assume C89 or
39322         better.
39323
39324 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
39325
39326         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
39327         "who -r" failed to give output.  Problem reported by Tim Waugh.
39328
39329         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
39330         (xcalloc): Use it to avoid needless tests.
39331         Problem reported by Jim Meyering.
39332
39333 2005-06-20  Derek Price  <derek@ximbiot.com>
39334
39335         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
39336         unnecessary for Autoconfs > 2.59c.
39337
39338 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39339
39340         * lib/argp.h (__option_is_short): Check upper limit of
39341         __key. Isprint() requires its argument to have the value
39342         of an unsigned char or EOF.
39343
39344 2005-06-16  Jim Meyering  <jim@meyering.net>
39345
39346         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
39347         when either N or S is zero.
39348
39349 2005-06-16  Derek Price  <derek@ximbiot.com>
39350
39351         * m4/bison.m4: Declare YACC & YFLAGS precious.
39352
39353 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
39354
39355         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
39356         multibyte string or pattern, fall back on unibyte matching.
39357         Problem reported by James Youngman.
39358
39359 2005-06-08  Bruno Haible  <bruno@clisp.org>
39360
39361         * modules/csharpcomp: New file.
39362         * MODULES.html.sh (C#): Add csharpcomp.
39363
39364 2005-06-08  Bruno Haible  <bruno@clisp.org>
39365
39366         * m4/csharpcomp.m4: New file, from GNU gettext.
39367
39368 2005-06-08  Bruno Haible  <bruno@clisp.org>
39369
39370         * lib/csharpcomp.h: New file, from GNU gettext.
39371         * lib/csharpcomp.c: New file, from GNU gettext.
39372         * lib/csharpcomp.sh.in: New file, from GNU gettext.
39373
39374 2005-06-08  Bruno Haible  <bruno@clisp.org>
39375
39376         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
39377         warning on mingw.
39378
39379 2005-06-07  Derek Price  <derek@ximbiot.com>
39380
39381         Sync from CVS.
39382         * lib/glob_.h: Indent nested #ifdef.
39383
39384 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39385
39386         Sync from coreutils.
39387         Use "file name" when talking about file names, instead of "filename"
39388         or "path", as per the GNU coding standards.
39389         * lib/mkdir-p.c: Renamed from makepath.c.
39390         (make_dir_parents): Renamed from make_path.  All callers changed.
39391         * lib/mkdir-p.h: Likewise.  All includers changed.
39392         * lib/filenamecat.c: Renamed from path-concat.c.
39393         (file_name_concat): Renamed from path_concat.  All callers changed.
39394         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
39395         * lib/filenamecat.h: Likewise.  All includers changed.
39396         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
39397         in comments or local variable names.
39398         * lib/basename.c: Likewise.
39399         * lib/canonicalize.c, canonicalize.h: Likewise.
39400         * lib/dirname.c, dirname.h: Likewise.
39401         * lib/euidaccess.c: Likewise.
39402         * lib/exclude.c: Likewise
39403         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
39404         * lib/fsusage.c, fsuage.h: Likewise.
39405         * lib/fts.c, fts_.h: Likewise.
39406         * lib/getcwd.c: Likewise.
39407         * lib/getloadavg.c: Likewise.
39408         * lib/mkstemp.c: Likewise.
39409         * lib/mountlist.c, mountlist.h: Likewise.
39410         * lib/openat.c, openat.h: Likewise.
39411         * lib/readlink-stub.c: Likewise.
39412         * lib/readutmp.c, readutmp.h: Likewise.
39413         * lib/rename.c: Likewise.
39414         * lib/rmdir.c: Likewise.
39415         * lib/same.c: Likewise.
39416         * lib/savedir.c: Likewise.
39417         * lib/stripslash.c: Likewise.
39418         * lib/tempname.c: Likewise.
39419         * lib/xreadlink.c: Likewise.
39420         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
39421         All uses changed.
39422         * lib/exclude.h: Likewise.
39423
39424         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
39425         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39426         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
39427         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39428         * lib/pathmax.h: Include <limits.h> unconditionally, since other
39429         files have been getting away with it for years (MORE/BSD 4.3
39430         is extinct now).
39431         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
39432         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39433
39434         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
39435         Define to 256, not 255, as per modern POSIX.
39436
39437 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39438
39439         Sync from coreutils.
39440         Use "file name" when talking about file names, instead of "filename"
39441         or "path", as per the GNU coding standards.
39442         * MODULES.html.sh: mkdir-p renamed from makepath.
39443         filenamecat renamed from path-concat.
39444         * modules/filenamecat: Renamed from modules/path-concat.
39445         (Files): filenamecat.h and filenamecat.c renamed from
39446         path-concat.h and path-concat.c.
39447         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
39448         (Include): filenamecat.h, not path-concat.h.
39449         * modules/mkdir-p: Renamed from modules/makepath.
39450         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
39451         makepath.c.
39452         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
39453         (Include): mkdir-p.h, not makepath.h.
39454
39455 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39456
39457         Sync from coreutils.
39458         * m4/mkdir-p.m4: Renamed from makepath.m4.
39459         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
39460         Rename files from makepath.c to mkdir-p.c, and from
39461         makepath.h to mkdir-p.h.
39462         * m4/filenamecat.m4: Renamed from path-concat.m4.
39463         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
39464         Rename files from path-concat.c to filenamecat.c,
39465         and from path-concat.h to filenamecat.h.
39466         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
39467         "file name" in local variables or comments.
39468         * m4/rename.m4: Likewise.
39469
39470 2005-06-01  Bruno Haible  <bruno@clisp.org>
39471
39472         * modules/csharpexec: New file.
39473         * MODULES.html.sh (C#): New section.
39474
39475 2005-06-01  Bruno Haible  <bruno@clisp.org>
39476
39477         * m4/csharp.m4: New file, from GNU gettext.
39478         * m4/csharpexec.m4: New file, from GNU gettext.
39479
39480 2005-06-01  Bruno Haible  <bruno@clisp.org>
39481
39482         * lib/csharpexec.h: New file, from GNU gettext.
39483         * lib/csharpexec.c: New file, from GNU gettext.
39484         * lib/csharpexec.sh.in: New file, from GNU gettext.
39485
39486 2005-05-31  Derek Price  <derek@ximbiot.com>
39487             Paul Eggert  <eggert@cs.ucla.edu>
39488
39489         Sync from cvs.
39490         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
39491
39492 2005-05-31  Derek Price  <derek@ximbiot.com>
39493             Paul Eggert  <eggert@cs.ucla.edu>
39494
39495         Sync from cvs.
39496         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
39497
39498 2005-05-29  Derek Price  <derek@ximbiot.com>
39499
39500         * config/srclist.txt (glob_.h, glob.c): Add these files.
39501
39502 2005-05-29  Derek Price  <derek@ximbiot.com>
39503
39504         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
39505         * modules/glob: New file.
39506         * modules/getlogin_r: Add link to POSIX spec in description.
39507
39508 2005-05-29  Derek Price  <derek@ximbiot.com>
39509             Paul Eggert  <eggert@cs.ucla.edu>
39510
39511         * m4/glob.m4: New file.
39512
39513 2005-05-29  Derek Price  <derek@ximbiot.com>
39514             Paul Eggert  <eggert@cs.ucla.edu>
39515
39516         * lib/glob_.h, lib/glob.c: New files.
39517
39518 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39519
39520         * modules/fts (Files): Remove m4/inttypes-pri.m4.
39521         * modules/fts-lgpl (Depends-on): Remove gettext.
39522
39523 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39524
39525         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
39526         and don't require gt_INTTYPES_PRI.
39527
39528 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39529
39530         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
39531
39532         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
39533         the configuration hassle isn't worth it.
39534         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
39535         (LONGEST_MODIFIER, PRIuMAX): Remove.
39536
39537 2005-05-27  Bruno Haible  <bruno@clisp.org>
39538
39539         * lib/getlogin_r.h: Remove second include of <stddef.h>.
39540
39541 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
39542
39543         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
39544         _POSIX_PTHREAD_SEMANTICS for Solaris.
39545
39546 2005-05-25  Derek Price  <derek@ximbiot.com>
39547
39548         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
39549
39550 2005-05-25  Derek Price  <derek@ximbiot.com>
39551             Paul Eggert  <eggert@cs.ucla.edu>
39552
39553         * modules/getlogin_r, m4/getlogin_r.m4: New files.
39554         * lib/getlogin_r.c, getlogin_r.h: New files.
39555
39556 2005-05-25  Bruno Haible  <bruno@clisp.org>
39557             Derek Price  <derek@ximbiot.com>
39558
39559         * lib/getlogin_r.h: Simplify API documentation.
39560
39561 2005-05-23  Derek Price  <derek@ximbiot.com>
39562
39563         * modules/minmax (Files): Add m4/minmax.m4.
39564         (configure.ac): Add gl_MINMAX.
39565
39566 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39567
39568         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
39569         so that unistd-safer.h (GPL'ed code) need not be included.
39570
39571 2005-05-22  Bruno Haible  <bruno@clisp.org>
39572
39573         * m4/minmax.m4: New file.
39574         Based on a patch by Derek Price <derek@ximbiot.com>.
39575
39576 2005-05-22  Bruno Haible  <bruno@clisp.org>
39577
39578         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
39579         (INT64_MIN): Fix definition.
39580         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
39581
39582         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
39583         NEED_SIGNED_INT_TYPES.
39584
39585         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
39586         HAVE_SYSTEM_INTTYPES.
39587
39588 2005-05-22  Bruno Haible  <bruno@clisp.org>
39589
39590         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
39591         Also include <sys/param.h> if it defines MIN, MAX.
39592         Based on a patch by Derek Price <derek@ximbiot.com>.
39593
39594 2005-05-21  Jim Meyering  <jim@meyering.net>
39595
39596         * modules/fts (Files): Add m4/inttypes-pri.m4.
39597         (Depends-on): Add lstat and remove gettext.  Alphabetize.
39598
39599 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39600
39601         New fts module.
39602         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
39603         (setup_dir, free_dir): New functions.
39604         (enter_dir, leave_dir): Define trivial
39605         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
39606         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
39607         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
39608         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
39609         Move to fts-cycle.c.
39610         (fts_open): Use setup_dir.
39611         (fts_close): Use free_dir.
39612         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
39613         This adds a label and some gotos, but the alternatives were messier.
39614         Check for memory allocation failure when entering a dir.
39615         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
39616         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
39617         (FTS): New member fts_cycle, that is a union that contains the
39618         old active_dir_ht and cycle_state.  All uses changed to mention
39619         fts_cycle.ht and fts_cycle.state.
39620         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
39621         fts.c, with the following changes:
39622         (setup_dir, free_dir): New functions.
39623         (enter_dir): Now returns bool.  Return true if successful, false
39624         if memory exhausted.  All callers changed.
39625         Do not bother partly cleaning up on
39626         memory allocation failure; that is free_dir's job.
39627         However, free ad if hash_insert fails, to avoid memory leak.
39628         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
39629         fts->fts_options to see which union member to use.
39630
39631 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39632
39633         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
39634         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
39635
39636 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39637
39638         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
39639
39640 2005-05-20  Jim Meyering  <jim@meyering.net>
39641
39642         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
39643         Now a macro, to pacify GCC.
39644
39645 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
39646
39647         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
39648         of -1.
39649
39650 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
39651
39652         * lib/chown.c (rpl_chown): Return -1 on failure.
39653
39654 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
39655
39656         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
39657         Don't check for stddef.h.
39658         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
39659         don't use its results.
39660         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
39661         since we include them unconditionally.  Don't require
39662         AM_STDBOOL_H, since stdbool is a prerequisite.
39663         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
39664         since we assume C89 or better.
39665         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
39666         as we don't use their results.
39667         Don't check for fchdir, memmove, memset, strrchr, as we use
39668         them unconditionally.
39669         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
39670         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
39671
39672 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
39673
39674         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
39675         Include <stddef.h> unconditionally, since we assume C89 now.
39676         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
39677         * lib/fts.c: Include fts_.h first, to check interface.
39678         Do not include intprops.h; no longer needed.
39679         Include cycle-check.h and hash.h, since fts_.h no longer does.
39680         Remove unnecessary casts of closedir to void.
39681         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
39682         decide whether to decrement nlinks.
39683         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
39684         (FTS): Use struct hash_table * instead of Hash_table, so that
39685         we no longer need to include hash.h here.
39686
39687 2005-05-18  Jim Meyering  <jim@meyering.net>
39688
39689         * modules/dirfd (License): Change to LGPL.  Most of the code
39690         is already in the public domain.
39691
39692 2005-05-18  Jim Meyering  <jim@meyering.net>
39693
39694         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
39695         Reported by Yoann Vandoorselaere.
39696
39697 2005-05-17  Jim Meyering  <jim@meyering.net>
39698
39699         * m4/fts.m4: New file, from coreutils.
39700
39701 2005-05-17  Jim Meyering  <jim@meyering.net>
39702
39703         * lib/fts.c, lib/fts_.h: New files, from coreutils.
39704
39705 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39706
39707         Sync from coreutils.
39708         * m4/unlinkdir.m4: New file.
39709
39710 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39711
39712         Sync from coreutils.
39713         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
39714         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
39715         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
39716         White space changes only.
39717         * lib/makepath.c (make_path): Port to hosts where leading "//" is
39718         special.
39719         * lib/yesno.c: Include getline.h, not ctype.h.
39720         (yesno): Don't remove leading white space; POSIX doesn't allow it.
39721         Use getline to remove arbitrary restriction on response length.
39722
39723 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39724
39725         * config/srclist-update: Spell out "Street" in FSF postal
39726         mail address; this is the style the FSF seems to prefer.
39727
39728         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
39729         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
39730         this updates FSF postal mail address.
39731
39732         Sync from coreutils.
39733         * modules/unlinkdir: New file.
39734         * modules/yesno (Depends-on): Add getline.
39735         * MODULES.html.sh (File system functions): Add unlinkdir.
39736
39737 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
39738
39739         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
39740         lib/strsep.h:
39741         Change the initial comment to refer to GPL, not LGPL.
39742         gnulib-tool will change it to LGPL as needed.
39743
39744         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
39745         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
39746         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
39747         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
39748         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
39749         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
39750         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
39751         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
39752         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
39753         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
39754         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
39755         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
39756         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
39757         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
39758         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
39759         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
39760         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
39761         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
39762         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
39763         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
39764         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
39765         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
39766         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
39767         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
39768         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
39769         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
39770         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
39771         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
39772         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
39773         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
39774         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
39775         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
39776         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
39777         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
39778         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
39779         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
39780         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
39781         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
39782         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
39783         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
39784         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
39785         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
39786         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
39787         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
39788         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
39789         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
39790         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
39791         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
39792         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
39793         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
39794         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
39795         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
39796         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
39797         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
39798         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
39799         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
39800         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
39801         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
39802         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
39803         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
39804         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
39805         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
39806         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
39807         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
39808         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
39809         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
39810         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
39811         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
39812         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
39813         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
39814         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
39815         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
39816         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
39817         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
39818         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
39819         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
39820         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
39821         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
39822         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
39823         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
39824         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
39825         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
39826         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
39827         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
39828         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
39829         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
39830         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
39831         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
39832         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
39833         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
39834         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
39835         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
39836         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
39837         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
39838         lib/yesno.c, lib/yesno.h:
39839         Update FSF postal mail address.
39840
39841 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
39842
39843         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
39844         tests/test-memmem.c, tests/test-stpncpy.c:
39845         Update FSF postal mail address.
39846
39847 2005-05-13  Bruno Haible  <bruno@clisp.org>
39848
39849         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
39850         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
39851         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
39852         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
39853         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
39854         Add support for 64-bit integers in the MSVC compiler.
39855
39856 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39857
39858         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
39859
39860 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
39861
39862         * gnulib-tool (func_import): Sort and uniquify recommended includes.
39863
39864 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
39865
39866         * doc/getdate.texi (General date syntax): Don't say that date
39867         date --iso-8601=ns generates acceptable dates; it doesn't yet.
39868         Problem reported by Nic Ferrier.
39869
39870 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39871
39872         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
39873         specified in ai_socktype. Fix invalid ai_protocol
39874         check. ai_protocol is usually set to 0 or depending on
39875         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
39876         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
39877         ai_socktype / ai_protocol in the returned addrinfo structure.
39878
39879 2005-05-10  Simon Josefsson  <jas@extundo.com>
39880
39881         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
39882         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
39883
39884 2005-05-10  Karl Berry  <karl@gnu.org>
39885
39886         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
39887         (from http://www.gnu.org/licenses).
39888         * doc/COPYING.LIB: also rename to COPYING.LESSER.
39889         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
39890         fdl.texi suffices.
39891
39892 2005-05-10  Karl Berry  <karl@gnu.org>
39893
39894         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
39895         (COPYING.DOC): remove.
39896
39897         * config/srclist-update: new FSF address.
39898
39899 2005-05-10  Derek Price  <derek@ximbiot.com>
39900
39901         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
39902         possible.
39903
39904 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39905             Bruno Haible  <bruno@clisp.org>
39906
39907         * modules/inet_ntop: New file.
39908         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
39909         inet_ntop.
39910
39911 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39912             Bruno Haible  <bruno@clisp.org>
39913
39914         * m4/inet_ntop.m4: New file.
39915
39916 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39917             Bruno Haible  <bruno@clisp.org>
39918
39919         * lib/inet_ntop.h: New file.
39920         * lib/inet_ntop.c: New file, from glibc with modifications.
39921
39922 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
39923
39924         * modules/time_r (License): Change to LGPL.
39925         * modules/extensions (License): Change to LGPL.  Actually,
39926         the license is more permissive than that, but currently gnulib-tool
39927         doesn't know how to handle more-permissive licenses.
39928
39929         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
39930         Problem reported by Dave Love.
39931
39932 2005-05-08  Jim Meyering  <jim@meyering.net>
39933
39934         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
39935         blank.
39936
39937 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
39938
39939         * modules/argmatch (Depends-on): Add stdbool.
39940         * modules/backupfile (Depends-on): Likewise.
39941         * modules/chdir-long (Depends-on): Likewise.
39942         * modules/closeout (Depends-on): Likewise.
39943         * modules/cycle-check (Depends-on): Likewise.
39944         * modules/dirname (Depends-on): Likewise.
39945         * modules/fnmatch (Depends-on): Likewise.
39946         * modules/fsusage (Depends-on): Likewise.
39947         * modules/fwriteerror (Depends-on): Likewise.
39948         * modules/getcwd (Depends-on): Likewise.
39949         * modules/getloadavg (Depends-on): Likewise.
39950         * modules/hard-locale (Depends-on): Likewise.
39951         * modules/makepath (Depends-on): Likewise.
39952         * modules/mountlist (Depends-on): Likewise.
39953         * modules/nanosleep (Depends-on): Likewise.
39954         * modules/posixtm (Depends-on): Likewise.
39955         * modules/quotearg (Depends-on): Likewise.
39956         * modules/readtokens (Depends-on): Likewise.
39957         * modules/readtokens0 (Depends-on): Likewise.
39958         * modules/readutmp (Depends-on): Likewise.
39959         * modules/save-cwd (Depends-on): Likewise.
39960         * modules/strftime (Depends-on): Likewise.
39961         * modules/userspec (Depends-on): Likewise.
39962         * modules/utimecmp (Depends-on): Likewise.
39963         * modules/xgetcwd (Depends-on): Likewise.
39964         * modules/xnanosleep (Depends-on): Likewise.
39965         * modules/xstrtod (Depends-on): Likewise.
39966         * modules/yesno (Depends-on): Likewise.
39967
39968 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
39969
39970         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
39971         needless checks.
39972
39973 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
39974
39975         Merge from coreutils.  Among other things,
39976         add bulletproofing for cases where stdin, stdout, or stderr are closed.
39977         * lib/fd-safer.c: New file.
39978         * lib/fcntl-safer.h, open-safer.c: Remove.
39979         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
39980         * lib/dup-safer.c: Include unistd-safer.h first.
39981         Don't include errno.h.
39982         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
39983         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
39984         * lib/file-type.c: Rely on file-type.h change.
39985         * lib/getloadavg.c: Include unistd-safer.h.
39986         (getloadavg): Use safer open.
39987         * lib/getusershell.c: Include "stdio-safer.h".
39988         (getusershell): Use safer fopen.
39989         * lib/long-options.c (long_options): Use NULL rather than 0.
39990         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
39991         'free'.
39992         * lib/modechange.c: Likewise.
39993         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
39994         (MODE_DONE): New constant.
39995         (struct mode_change): Remove 'next' member.
39996         (make_node_op_equals): New function; like the old one of the
39997         same name, except it allocates an array.
39998         (mode_compile, mode_create_from_ref): Use it.
39999         (mode_compile): Allocate result as an array, not a linked list.
40000         Parse octal string ourself, so that we catch mistakes like "+0".
40001         (mode_adjust): Arg is an array, not a linked list.
40002         * lib/modechange.c: Include stat-macros.h, xalloc.h.
40003         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
40004         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
40005         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
40006         Remove.  This is now stat-macros.h's job.
40007         (talloc): Remove.  All callers replaced by xalloc, so that
40008         our invokers don't have to worry about reporting memory failures.
40009         (make_node_op_equals): Remove.
40010         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
40011         New constants.
40012         (struct mode_change): Moved here from modechange.h.
40013         (mode_append_entry): Remove.
40014         (mode_compile): Remove MASKED_OPS arg, since it encouraged
40015         apps to have incorrect behavior.  Use simpler algorithm for head
40016         and tail.  Don't futz with umask; that's now the job of mode_adjust.
40017         Detect more invalid usages rather than having somewhat-random behavior.
40018         Don't insert an "a=" action, as that leads to incorrect behavior.
40019         (mode_compile, mode_create_from_ref): Return NULL on error instead
40020         of an enum, since now there's only one way to have an error.  All
40021         callers changed.
40022         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
40023         at the correct time.  Simplify calculation of "+u" and its ilk.
40024         Don't mishandle "+X".
40025         (mode_free): Remove "register" and localize decls.
40026         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
40027         (struct mode_change): Move to modechange.c; callers don't
40028         need to see this stuff.
40029         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
40030         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
40031         (mode_change, mode_adjust): Reflect the new signatures noted above.
40032         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
40033         that might redefine system include files.
40034         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
40035         (my_usleep): Use NULL rather than (void *) 0.
40036         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
40037         Use siginterrupt to specify that system calls should be interrupted.
40038         (rpl_nanosleep): Move initialization of suspended closer to call of
40039         my_usleep.
40040         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
40041         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
40042         (desirable_utmp_entry): New function.
40043         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
40044         using x2nrealloc, to simplify logic.
40045         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
40046         size calculation.  Do not assume utmp file is a regular file.
40047         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
40048         (READ_UTMP_CHECK_PIDS): New constant.
40049         * lib/save-cwd.c: Include unistd-safer.h.
40050         (save_cwd): Use fd_safer.
40051         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
40052         [!_LIBC] Include "stat-macros.h" instead.
40053         * lib/unistd-safer.h (fd_safer): New decl.
40054
40055 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
40056
40057         * modules/getloadavg (Depends-on): Add unistd-safer.
40058         * modules/getusershell (Depends-on): Add stdio-safer.
40059         * modules/lstat (Depends-on): Remove xalloc.
40060         * modules/mkstemp (Depends-on): Add stat-macros.
40061         * modules/modechange (Depends-on): Remove xstrtol.
40062         Add stat-macros, xalloc.
40063         * modules/save-cwd (Depends-on): Add unistd-safer.
40064         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
40065         * modules/unistd-safer (Files): Add lib/fd-safer.c
40066         (Makefile.am): Remove lib_SOURCES.
40067
40068         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
40069         Remove fcntl-safer; unistd-safer supersedes it.
40070
40071 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
40072
40073         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
40074         AC_HEADER_STAT.
40075         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
40076         (gl_PREREQ_CHOWN): Remove.
40077         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
40078         it.  Don't require AC_HEADER_STAT.
40079         (gl_PREREQ_LSTAT): Remove.
40080         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
40081         Don't require AC_HEADER_STAT.
40082         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
40083         (gl_PREREQ_RMDIR): Remove.
40084         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
40085         mention stat-macros.h or AC_HEADER_STAT, since we'll make
40086         the stat-macros module a prerequisite.
40087         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
40088         * m4/filemode.m4 (gl_FILEMODE): Likewise.
40089         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
40090         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
40091         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
40092         variable names.
40093         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
40094         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
40095         variable prefixes.
40096         * m4/fcntl-safer.m4: Remove.
40097         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
40098         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
40099         Invoke gl_PREREQ_FD_SAFER.
40100         (gl_PREREQ_FD_SAFER): New macro.
40101         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
40102         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
40103         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
40104         Remove duplicate call to AC_LIBOBJ(readutmp).
40105         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
40106
40107         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
40108         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
40109
40110 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
40111
40112         * MODULES.html.sh (Misc): Add byteswap.
40113
40114 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
40115
40116         * modules/getcwd (Depends-on): Add extensions.
40117         * modules/openat (Depends-on): Likewise.
40118
40119 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
40120
40121         * modules/byteswap: New file.
40122
40123 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
40124
40125         * m4/byteswap.m4: New file.
40126
40127 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
40128
40129         * lib/byteswap_.h: New file.
40130
40131 2005-04-25  Karl Berry  <karl@gnu.org>
40132
40133         * m4/gettext.m4: Update from GNU gettext 0.14.4.
40134
40135 2005-04-25  Albert Chin  <china@thewrittenword.com>
40136
40137         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
40138         Toolkit C bug.
40139
40140 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
40141
40142         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
40143         (func_ln_if_changed) Remove forcibly for no error message
40144         in case file does not exist.
40145
40146 2005-04-19  Simon Josefsson  <jas@extundo.com>
40147
40148         * gnulib-tool (Options): Make --symlink mean --symbolic.
40149
40150 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
40151
40152         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
40153
40154 2005-04-16  Simon Josefsson  <jas@extundo.com>
40155
40156         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
40157
40158 2005-04-15  Simon Josefsson  <jas@extundo.com>
40159
40160         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
40161
40162 2005-04-15  Simon Josefsson  <jas@extundo.com>
40163
40164         * gnulib-tool: Rename --symlink to --symbolic.
40165
40166 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
40167
40168         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
40169         symbolic links to files instead of copying/moving.  Add --aux-dir,
40170         specifying directory relative --dir where auxiliary build tools
40171         are placed.
40172
40173 2005-04-14  Bruno Haible  <bruno@clisp.org>
40174
40175         * modules/allocsa (License): Change to LGPL.
40176         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
40177
40178 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40179
40180         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
40181         that "UTC +1 second" continues to work.  Problem reported
40182         by Dmitry V. Levin.
40183         (relunit_snumber): New rule.
40184         (relunit): Use it.
40185
40186 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
40187
40188         * lib/getdate.y (universal_time_zone_table): New constant.
40189         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
40190         universal_time_zone_table.
40191         (lookup_zone): Prefer universal_time_zone_table to
40192         local_time_zone_table, so that "GMT" time stamps are allowed in
40193         London during the summer.  Problem reported by Ian Abbott.
40194
40195 2005-04-12  Jim Meyering  <jim@meyering.net>
40196
40197         * lib/human.c (humblock): Set *options even when returning due to
40198         xstrtoumax conversion failure.  Thanks to a used-uninitialized
40199         warning from gcc-4.
40200
40201 2005-04-09  Jim Meyering  <jim@meyering.net>
40202
40203         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
40204         -Wuninitialized: initialize tm0.tm_year.
40205
40206 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
40207
40208         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
40209         count, since there's no maximum.  All uses changed.
40210         Add member dsts_seen.
40211         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
40212         not being INT_MAX.
40213         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
40214         Use pc_rels_seen to decide whther a date is absolute.
40215
40216         * lib/getdate.y (number): Don't overwrite year.
40217         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
40218         check.
40219
40220 2005-04-02  Simon Josefsson  <jas@extundo.com>
40221
40222         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
40223         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
40224
40225 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
40226
40227         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
40228         where no absolute path name can be longer than PATH_MAX.
40229
40230 2005-03-27  Jim Meyering  <jim@meyering.net>
40231
40232         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
40233
40234 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
40235
40236         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
40237         "one's complement" -> "ones' complement" in comment, as per Knuth.
40238         "value of type" -> "type or expression" in comment.
40239         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
40240
40241 2005-03-26  Jim Meyering  <jim@meyering.net>
40242
40243         Comment nits.
40244         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
40245         Correct typos: s/or/of/.
40246
40247 2005-03-26  Jim Meyering  <jim@meyering.net>
40248
40249         * modules/check-include-files: Move to ../ and rename to...
40250         * check-module: ...this.
40251
40252 2005-03-25  Jim Meyering  <jim@meyering.net>
40253
40254         * modules/xvasprintf (Files): Add xalloc.h.
40255
40256 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
40257
40258         * modules/gettext (Files): config/config.rpath ->
40259         build-aux/config.rpath
40260         * modules/iconv (Files): Likewise.
40261         Problem reported by Oskar Liljeblad.
40262
40263 2005-03-23  Jim Meyering  <jim@meyering.net>
40264
40265         * modules/check-include-files: New script to check for
40266         missing dependencies, multiple includes, etc.
40267
40268         * modules/c-strtold (Depends-on): Add xalloc.
40269         * modules/c-strtod (Depends-on): Add xalloc.
40270         * modules/hash (Depends-on): Add xalloc.
40271         (Files): Remove lib/xalloc.h.
40272
40273         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
40274         * modules/userspec (Files): Add lib/inttostr.h.
40275
40276 2005-03-23  Jim Meyering  <jim@meyering.net>
40277
40278         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
40279
40280 2005-03-22  Jim Meyering  <jim@meyering.net>
40281
40282         * modules/stat-macros: New module.
40283         * modules/canonicalize, modules/euidaccess, modules/file-type,
40284         * modules/filemode, modules/lchown, modules/makepath,
40285         * modules/rmdir, modules/stat: Depend on new stat-macros module
40286         rather than listing lib/stat-macros.h manually.
40287         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
40288
40289 2005-03-22  Jim Meyering  <jim@meyering.net>
40290
40291         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
40292
40293 2005-03-22  Bruno Haible  <bruno@clisp.org>
40294
40295         * config/srclist.txt: Replace target directory 'config' with
40296         'build-aux'.
40297         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
40298         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
40299         ../build-aux/.
40300
40301 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
40302
40303         * modules/chdir-long (Depends-on): Add mempcpy.
40304
40305         * modules/acl, modules/backupfile, modules/c-strtod,
40306         modules/c-strtold, modules/canon-host, modules/canonicalize,
40307         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
40308         modules/exclude, modules/exitfail, modules/file-type,
40309         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
40310         modules/getdate, modules/getline, modules/getpagesize,
40311         modules/getpass, modules/getugroups, modules/group-member,
40312         modules/hard-locale, modules/hash, modules/human, modules/idcache,
40313         modules/inttostr, modules/long-options, modules/makepath,
40314         modules/md5, modules/memcasecmp, modules/memcoll,
40315         modules/modechange, modules/mountlist, modules/path-concat,
40316         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
40317         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
40318         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
40319         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
40320         modules/strftime, modules/strndup, modules/strverscmp,
40321         modules/timespec, modules/unlocked-io, modules/userspec,
40322         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
40323         modules/yesno:
40324         Remove lib_SOURCES line from Makefile.am section, as this is now
40325         done automatically by the corresponding Autoconf macro.
40326
40327 2005-03-21  Jim Meyering  <jim@meyering.net>
40328
40329         Changes imported from coreutils.
40330
40331         * lib/cycle-check.c: Don't include xalloc.h.
40332
40333         * lib/path-concat.c: Don't include assert.h.
40334         (path_concat): Remove assertion that would have triggered
40335         for ABASE starting with more than one slash.
40336         Reported by Andreas Schwab.
40337
40338         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
40339         properly when ABASE is an absolute file name.
40340         Correct the description of this function.
40341         Include <assert.h>.
40342         Add an assertion and a test driver.
40343         This fixes a bug introduced on 2004-07-02.
40344         Andreas Schwab reported the resulting failure of cp --parents:
40345         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
40346
40347 2005-03-21  Jim Meyering  <jim@meyering.net>
40348
40349         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
40350         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
40351
40352 2005-03-21  Jim Meyering  <jim@meyering.net>
40353         and  Paul Eggert  <eggert@cs.ucla.edu>
40354
40355         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
40356         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
40357         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
40358         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
40359         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
40360         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
40361         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
40362         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
40363         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
40364         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
40365         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
40366         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
40367         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
40368         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
40369         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
40370         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
40371         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
40372         for these modules.
40373
40374 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
40375
40376         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
40377         (which shouldn't happen), generate nothing instead of returning 0
40378         immediately, so that nstrftime (NULL, ...) doesn't return 0.
40379
40380 2005-03-16  Bruno Haible  <bruno@clisp.org>
40381
40382         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
40383         HAVE_LONGLONG_64BIT.
40384
40385 2005-03-16  Bruno Haible  <bruno@clisp.org>
40386
40387         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
40388         HAVE_LONGLONG_64BIT.
40389
40390 2005-03-16  Bruno Haible  <bruno@clisp.org>
40391
40392         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
40393         HAVE_LONGLONG_64BIT.
40394
40395 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
40396
40397         * lib/strftime.c (my_strftime): Prepend space to format so that we can
40398         reliably distinguish strftime failure from empty output on POSIX
40399         hosts.
40400
40401 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
40402
40403         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
40404         (iconv_string): Don't guess a size-zero buffer, as that might cause
40405         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
40406         result would be 'too large', where 'too large' is (heuristically)
40407         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
40408         overflow concerns.  This will prevent some unwanted malloc failures
40409         when the inputs are very large.
40410
40411 2005-03-15  Karl Berry  <karl@gnu.org>
40412
40413         * config/srclist.txt (config.rpath): from gettext.
40414         * config/config.rpath: update.
40415
40416 2005-03-15  Bruno Haible  <bruno@clisp.org>
40417
40418         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
40419         to 'negate'.
40420
40421         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
40422         variable.
40423
40424         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
40425         results.
40426
40427 2005-03-14  Simon Josefsson  <jas@extundo.com>
40428
40429         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
40430         <fx@gnu.org>.
40431
40432 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
40433
40434         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
40435         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
40436         intprops.h.
40437         * lib/strtol.c: Likewise.
40438
40439 2005-03-14  Jim Meyering  <jim@meyering.net>
40440
40441         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
40442         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
40443         to be nonzero so that we (and caller) can detect the difference
40444         between a valid zero-length expansion and an error return, even
40445         when the underlying strftime fails before writing anything into
40446         that location.
40447
40448 2005-03-14  Bruno Haible  <bruno@clisp.org>
40449
40450         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
40451         Update from GNU gettext 0.14.3.
40452
40453 2005-03-10  Jim Meyering  <jim@meyering.net>
40454
40455         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
40456
40457 2005-03-10  Jim Meyering  <jim@meyering.net>
40458
40459         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
40460         so that this module works on systems without fchdir.
40461
40462 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
40463
40464         Factor int-properties macros into a single file, except for
40465         glibc-related files.
40466         * lib/intprops.h: New file.
40467         * lib/getloadavg.c: Include it instead of limits.h.
40468         (INT_STRLEN_BOUND): Remove.
40469         * lib/human.c: Include intprops.h.
40470         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
40471         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
40472         302/1000.
40473         * lib/inttostr.h: Include intprops.h instead of limits.h.
40474         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
40475         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
40476         for consistency with intprops.h.
40477         (time_t_is_integer, twos_complement_arithmetic): Use them.
40478         * lib/sig2str.h: Include <signal.h>, intprops.h.
40479         (INT_STRLEN_BOUND): Remove.
40480         * lib/strftime.c (TYPE_SIGNED): Remove.
40481         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
40482         * lib/strtol.c: Adjust comments to match intprops.h.
40483         * lib/userspec.c: Include intprops.h.
40484         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
40485         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
40486         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
40487         instead of rolling our own expressions.
40488         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
40489
40490         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
40491         instead of int.
40492         (my_strftime): Do not mishandle years close to INT_MAX, by doing
40493         the right thing even if adding 1900 would overflow.  Similarly
40494         for tm_mon + 1 and tm_yday + 1.
40495         Make %Y always equivalent to %C%y, and similarly for %G and %g.
40496         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
40497         (DO_SIGNED_NUMBER): New macro.
40498         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
40499
40500 2005-03-07  Bruno Haible  <bruno@clisp.org>
40501
40502         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
40503
40504 2005-03-07  Bruno Haible  <bruno@clisp.org>
40505
40506         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
40507
40508 2005-03-04  Derek R. Price  <derek@ximbiot.com>
40509
40510         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
40511         (func_import): Only replace files via --import when they have actually
40512         changed.
40513
40514 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40515
40516         * m4/mmap-anon.m4: New file.
40517         * m4/pagealign_alloc.m4: New file.
40518
40519 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40520             Bruno Haible  <bruno@clisp.org>
40521
40522         * modules/pagealign_alloc: New file.
40523         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
40524
40525 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40526             Bruno Haible  <bruno@clisp.org>
40527
40528         * lib/pagealign_alloc.h: New file.
40529         * lib/pagealign_alloc.c: New file.
40530
40531 2005-03-03  Bruno Haible  <bruno@clisp.org>
40532
40533         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
40534         Use an all-permissive copyright notice, recommended by RMS.
40535
40536 2005-03-02  Bruno Haible  <bruno@clisp.org>
40537
40538         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
40539         of AIX, the replacement has to be done only after <string.h> is
40540         included, therefore not in config.h. stpncpy.h does the replacement,
40541         and stpncpy.c uses it.
40542
40543 2005-03-02  Bruno Haible  <bruno@clisp.org>
40544
40545         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
40546         stpncpy.c uses it.
40547
40548 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40549
40550         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
40551         The workaround isn't strictly needed for POSIX conformance, and
40552         it's too much of a pain to configure and maintain.  We'll ask
40553         people to fix their kernels instead.
40554         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
40555         (NANOSLEEP_BUG_WORKAROUND): Remove.
40556         (xnanosleep): Remove the workaround.
40557
40558 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40559
40560         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
40561         Reported by Derek Price.
40562         (Include): Add "timespec.h".
40563
40564         * modules/xnanosleep (Depends-on): Remove gethrxtime.
40565
40566 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40567
40568         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
40569         to detect nanosleep bug.
40570
40571 2005-03-01  Bruno Haible  <bruno@clisp.org>
40572
40573         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
40574
40575 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
40576
40577         * modules/gethrxtime: New file.
40578         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
40579         (Depends-on): Add gethrxtime.
40580         (configure.ac): Add gl_XNANOSLEEP.
40581         (Makefile.am): Remove lib_SOURCES line.
40582
40583 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
40584
40585         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
40586         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
40587
40588 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
40589
40590         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
40591         * lib/timespec.h (gettime): Return void, since it always
40592         succeeds now.  All uses changed.
40593         * lib/gettime.c (gettime) Likewise.
40594         [HAVE_NANOTIME]: Prefer nanotime.
40595         Assume gettimeofday succeeds, as POSIX requires.
40596         Assime time () succeeds, since other code already does.
40597         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
40598         (timespec_subtract): Remove.
40599         (NANOSLEEP_BUG_WORKAROUND): New constant.
40600         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
40601         things considerably.  Use it only on GNU/Linux hosts, since the
40602         workaround shouldn't be needed elsewhere.
40603
40604 2005-02-24  Bruno Haible  <bruno@clisp.org>
40605
40606         * modules/gettext (Files): Add m4/glibc2.m4.
40607
40608 2005-02-24  Bruno Haible  <bruno@clisp.org>
40609
40610         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
40611         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
40612         * m4/progtest.m4:
40613         Update from GNU gettext 0.14.2.
40614         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
40615
40616 2005-02-24  Bruno Haible  <bruno@clisp.org>
40617
40618         * lib/localcharset.c: Update from GNU gettext 0.14.2.
40619         * lib/config.charset: Update from GNU gettext 0.14.2.
40620
40621 2005-02-24  Bruno Haible  <bruno@clisp.org>
40622
40623         * lib/gettext.h: Update from GNU gettext 0.14.2.
40624
40625 2005-02-23  Simon Josefsson  <jas@extundo.com>
40626
40627         * m4/iconvme.m4: New file.
40628
40629 2005-02-23  Jim Meyering  <jim@meyering.net>
40630
40631         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
40632         change.
40633         Thanks to Bruno Haible for catching it.
40634
40635 2005-02-22  Simon Josefsson  <jas@extundo.com>
40636
40637         * modules/iconvme: New file.
40638
40639         * MODULES.html.sh: Add iconvme.
40640
40641 2005-02-22  Simon Josefsson  <jas@extundo.com>
40642
40643         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
40644
40645 2005-02-22  Simon Josefsson  <jas@extundo.com>
40646
40647         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
40648
40649 2005-02-22  Jim Meyering  <jim@meyering.net>
40650
40651         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
40652         s/ifndef/ifdef/.
40653
40654 2005-02-20  Neil Conway  <neilc@samurai.com>
40655
40656         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
40657         returned by OSX/Darwin if the specified buffer is not large
40658         enough for the hostname.
40659
40660 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40661
40662         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
40663         pass it to _help, otherwise the latter coredumps trying to
40664         dereference state.root_argp.
40665
40666 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40667
40668         * modules/chdir-long (Depends-on): Add memrchr.
40669         * modules/memrchr (Files): Add lib/memrchr.h.
40670         (Include): "memrchr.h".
40671
40672 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40673
40674         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
40675
40676 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40677
40678         * lib/memrchr.h: New file.
40679         * lib/chdir-long.c: Include it.
40680         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
40681         Don't bother including stddef.h.
40682
40683 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
40684
40685         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
40686         inclusion.
40687         Include <sys/types.h>, for dev_t.
40688         (ME_DUMMY, ME_REMOTE): Move from here....
40689         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
40690         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
40691         Dmitry V. Levin.
40692         Include mountlist.h first, to test the interface.
40693
40694 2005-01-29  Bruno Haible  <bruno@clisp.org>
40695
40696         * lib/progname.c (program_name): Initialize.
40697         Needed when linking statically on MacOS X.
40698
40699 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40700
40701         Sync from coreutils.
40702         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
40703         (Depends-on): Add c-strtod.
40704         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
40705
40706 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40707
40708         Sync from coreutils.
40709         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
40710
40711         Remove files that are specific to coreutils.
40712         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
40713
40714 2005-01-28  Bruno Haible  <bruno@clisp.org>
40715
40716         * modules/javacomp: New file.
40717         * MODULES.html.sh (Java): Add javacomp.
40718
40719 2005-01-28  Bruno Haible  <bruno@clisp.org>
40720
40721         * m4/javacomp.m4: New file, from GNU gettext.
40722
40723 2005-01-28  Bruno Haible  <bruno@clisp.org>
40724
40725         * lib/javacomp.sh.in: New file, from GNU gettext.
40726         * lib/javacomp.h: New file, from GNU gettext.
40727         * lib/javacomp.c: New file, from GNU gettext.
40728
40729 2005-01-26  Simon Josefsson  <jas@extundo.com>
40730
40731         * lib/gai_strerror.c: Use GPL in header.
40732
40733 2005-01-26  Bruno Haible  <bruno@clisp.org>
40734
40735         * modules/javaexec: New file.
40736         * MODULES.html.sh (Java): Add javaexec.
40737
40738 2005-01-26  Bruno Haible  <bruno@clisp.org>
40739
40740         * m4/javaexec.m4: New file, from GNU gettext.
40741
40742 2005-01-26  Bruno Haible  <bruno@clisp.org>
40743
40744         * lib/javaexec.sh.in: New file, from GNU gettext.
40745         * lib/javaexec.h: New file, from GNU gettext.
40746         * lib/javaexec.c: New file, from GNU gettext.
40747
40748 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40749
40750         * modules/lchown (Depends-on): Remove lchown.h
40751
40752 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40753
40754         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
40755         must be defined if the header file was not found, in order
40756         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
40757
40758 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40759
40760         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
40761         initializers for struct pentry_state.
40762         (__argp_error): Check return value of __asprintf
40763         (__argp_failure): Translate error message
40764
40765         * lib/argp-parse.c: Removed braces around the expansion of N_()
40766
40767 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40768
40769         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
40770         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
40771         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
40772         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
40773         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
40774         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
40775         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
40776         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
40777         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
40778         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
40779         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
40780         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
40781         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
40782         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
40783         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
40784         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
40785         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
40786         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
40787         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
40788         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
40789         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
40790         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
40791         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
40792         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
40793         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
40794         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
40795         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
40796         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
40797         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
40798         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
40799         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
40800         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
40801         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
40802         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
40803         xstrtol.m4, xstrtoumax.m4, yesno.m4:
40804         Use an all-permissive copyright notice, recommended by RMS.
40805
40806 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
40807
40808         * modules/chdir-long (Depends-on): Remove mempcpy.
40809
40810 2005-01-21  Jim Meyering  <jim@meyering.net>
40811
40812         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
40813         same value as for Solaris 9.
40814
40815         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
40816         component length.  This included changing the parameter to be
40817         of type `char *' rather than `char const *'.
40818         * lib/chdir-long.h (chdir_long): Update prototype.
40819
40820         * lib/openat.c (fdopendir, fstatat): New functions.
40821         * lib/openat.h: Include headers required for use of DIR and struct
40822         stat.
40823         [AT_SYMLINK_NOFOLLOW]: Define.
40824         (fdopendir, fstatat): Add prototypes.
40825
40826 2005-01-21  Bruno Haible  <bruno@clisp.org>
40827
40828         * modules/classpath: New file.
40829         * MODULES.html.sh (Java): Add classpath.
40830
40831 2005-01-21  Bruno Haible  <bruno@clisp.org>
40832
40833         * lib/classpath.h: New file, from GNU gettext.
40834         * lib/classpath.c: New file, from GNU gettext.
40835
40836 2005-01-20  Simon Josefsson  <jas@extundo.com>
40837
40838         * modules/version-etc-fsf: New file.
40839
40840 2005-01-20  Simon Josefsson  <jas@extundo.com>
40841
40842         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
40843         * lib/version-etc.c: Remove version_etc_copyright.
40844         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
40845         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
40846
40847 2005-01-20  Simon Josefsson  <jas@extundo.com>
40848
40849         * lib/base64.h (isbase64): Add.
40850
40851         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
40852         using a unsigned prototype, don't inline.
40853         (base64_decode): Use it.
40854
40855 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40856
40857         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
40858         it.
40859
40860 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40861
40862         * lib/save-cwd.c (save_cwd): Remove code to support the case
40863         where fchdir is missing or flaky.
40864
40865 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40866
40867         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
40868
40869 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
40870
40871         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
40872         AC_LIBSOURCES now does this.
40873         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
40874         with new ullong_max module.
40875
40876 2005-01-19  Bruno Haible  <bruno@clisp.org>
40877
40878         * modules/sh-quote: New file.
40879         * MODULES.html.sh (Executing programs): Add sh-quote.
40880
40881 2005-01-19  Bruno Haible  <bruno@clisp.org>
40882
40883         * lib/sh-quote.h: New file, from GNU gettext.
40884         * lib/sh-quote.c: New file, from GNU gettext.
40885
40886 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40887
40888         Merge from coreutils.
40889         * m4/ullong_max.m4: New file.
40890         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
40891         (gl_MACROS): Assume localeconv exists.
40892
40893 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40894
40895         Merge changes from coreutils, as described below in several
40896         changelogs dated today.
40897
40898         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
40899         (O_DIRECTORY): Remove; not needed here, since "." must be
40900         a directory.  All uses removed.
40901         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
40902         universal on Suns, and we also need to test for IRIX.
40903         Revamp code to use 'if' rather than '#if'.
40904         Avoid unnecessary comparison of cwd->desc to 0.
40905
40906         * lib/utimens.c (futimens): Robustify the previous patch, by checking
40907         for known valid error numbers rather than observed invalid ones.
40908
40909 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40910
40911         * modules/ullong_max: New file.
40912
40913         * modules/chdir-long, modules/openat: New files.
40914         * modules/save-cwd (Depends-on): Depend on chdir-long.
40915         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
40916
40917 2005-01-18  Jim Meyering  <jim@meyering.net>
40918
40919         Merge from coreutils.
40920         * m4/chdir-long.m4, m4/openat.m4: New files.
40921         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
40922         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
40923         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
40924         is sane and DOES follow symlinks.  Besides, testing 20 different
40925         systems found no broken chown implementations.
40926         Prompted by a change in rsync's copy of this macro.
40927         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
40928
40929         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
40930
40931         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
40932         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
40933         NULL-means-set-to-current-time semantics.
40934         Remove temporary file immediately, rather than waiting
40935         for configure's at-exit trap code to do it.
40936
40937 2005-01-18  Jim Meyering  <jim@meyering.net>
40938
40939         * lib/version-etc.c (version_etc_copyright): Update copyright date.
40940
40941         * lib/utimens.c (futimens): Account for the fact that futimes
40942         can also fail with errno == ENOSYS or errno == ENOENT.
40943         Patch from Dmitry V. Levin.
40944
40945         Change the name of the robust chdir function from chdir to chdir_long.
40946         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
40947         (restore_cwd): Use chdir_long, not chdir.
40948         * lib/chdir-long.c: Renamed from chdir.c.
40949         * lib/chdir-long.h: Renamed from chdir.h.
40950         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
40951         Hurd.
40952
40953 2005-01-18  Bruno Haible  <bruno@clisp.org>
40954
40955         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
40956         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
40957         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
40958         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
40959         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
40960         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
40961         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
40962         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
40963         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
40964         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
40965         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
40966         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
40967         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
40968         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
40969         Use an all-permissive copyright notice, recommended by RMS.
40970
40971 2005-01-18  Bob Proulx  <bob@proulx.com>
40972
40973         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
40974         simplify offsetof() macro construct to avoid compile failure with
40975         native HP-UX 11.0 ANSI C compiler.
40976
40977 2005-01-17  Bruno Haible  <bruno@clisp.org>
40978
40979         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
40980         redundant because stpncpy.m4 takes care of it.
40981
40982 2005-01-17  Bruno Haible  <bruno@clisp.org>
40983
40984         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
40985
40986 2005-01-17  Bruno Haible  <bruno@clisp.org>
40987
40988         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
40989         used.
40990
40991 2005-01-17  Bruno Haible  <bruno@clisp.org>
40992
40993         * lib/fwriteerror.h (fwriteerror): Change specification to include
40994         fclose.
40995         * lib/fwriteerror.c: Include <stdbool.h>.
40996         (fwriteerror): At the end, close the file stream. Record whether
40997         stdout was already closed.
40998
40999 2005-01-17  Bruno Haible  <bruno@clisp.org>
41000
41001         * lib/execute.c (environ): Declare if needed.
41002         * lib/pipe.c (environ): Likewise.
41003         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
41004
41005 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41006
41007         * modules/argp: Depend on vsnprintf
41008
41009 2005-01-10  Jim Meyering  <jim@meyering.net>
41010
41011         * modules/closeout (Depends-on): Add atexit.
41012
41013 2005-01-06  Bruno Haible  <bruno@clisp.org>
41014
41015         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
41016
41017 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41018
41019         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
41020         definitions to be after all include files, to avoid collisions.
41021         Problem reported by Bob Proulx.
41022
41023 2005-01-04  Jim Meyering  <jim@meyering.net>
41024
41025         Changes imported from coreutils.
41026         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
41027         as the mkstemp template, use a temporary directory and an
41028         8.3-friendly template to avoid trouble on systems like DJGPP.
41029         Reported by Juan M. Guerrero via Stepan Kasal.
41030         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
41031         close. Remove the temporary directory right away, rather than waiting
41032         for configure's at-exit trap code to do it.
41033         Suggestion from Stepan Kasal.
41034
41035 2005-01-01  Simon Josefsson  <jas@extundo.com>
41036
41037         * gnulib-tool: Print #include directives when --import'ing.
41038
41039 2004-12-28  Simon Josefsson  <jas@extundo.com>
41040
41041         * tests/test-base64.c: Include required header files.  Remove
41042         unused variables.
41043
41044 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
41045
41046         * modules/error (Depends-on): Remove gettext.
41047
41048 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
41049
41050         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
41051         not needed.  This removes a dependency on the gettext module.
41052         [defined _LIBC]: Do not include <libintl.h>; not needed.
41053
41054 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
41055
41056         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
41057         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
41058
41059 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
41060
41061         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
41062         HAVE_DECL_STRTOLD.
41063
41064 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41065
41066         * modules/getdate (Depends-on): Remove alloca-opt.
41067
41068 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41069
41070         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
41071
41072 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41073
41074         * lib/argp-parse.c: Include <stddef.h>.
41075         (alignof, alignto): New macros.
41076         (parser_init): Don't assume that void * is aligned sufficiently
41077         for struct option.
41078
41079         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
41080         need to extend the stack.
41081         (YYINITDEPTH): New macro, so that the initial stack isn't overly
41082         large.
41083
41084 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41085
41086         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
41087
41088 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
41089
41090         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
41091         (2004-10-24) change.  Apparently this was a false alarm.
41092
41093         * modules/getdate: Depend on alloca-opt, not alloca.
41094
41095 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
41096
41097         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
41098         Remove now-obsolete comment about AIX.
41099         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
41100         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
41101         (YYMAXDEPTH): New macro.
41102
41103 2004-12-18  Simon Josefsson  <jas@extundo.com>
41104
41105         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
41106
41107 2004-12-18  Bruno Haible  <bruno@clisp.org>
41108
41109         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
41110
41111 2004-12-18  Bruno Haible  <bruno@clisp.org>
41112
41113         * lib/fatal-signal.c (fatal_signals): Make non-const.
41114         (init_fatal_signals): New function.
41115         (uninstall_handlers, install_handlers): Ignore signals that were set to
41116         SIG_IGN.
41117         (at_fatal_signal): Call init_fatal_signals.
41118         (init_fatal_signal_set): Likewise. Ignore signals that were set to
41119         SIG_IGN.
41120         Reported by Paul Eggert.
41121
41122 2004-12-18  Bruno Haible  <bruno@clisp.org>
41123
41124         * doc/alloca.texi: New file.
41125         * doc/alloca-opt.texi: New file.
41126
41127 2004-12-17  Jim Meyering  <jim@meyering.net>
41128
41129         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
41130         Otherwise, install-sh could exit with improper exit status when
41131         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
41132
41133 2004-12-16  Simon Josefsson  <jas@extundo.com>
41134
41135         * tests/test-base64.c: Add license.
41136
41137 2004-12-15  Stepan Kasal  <address@hidden>
41138
41139         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
41140
41141 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
41142
41143         * modules/getcwd (Files): Add m4/d-ino.m4.
41144         Suggested by Mark D. Baushke.
41145
41146 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
41147
41148         * lib/getdate.y (textint): New member "negative".
41149         (time_zone_hhmm): New function.
41150         Expect 14 shift-reduce conflicts, not 13.
41151         (o_colon_minutes): New rule.
41152         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
41153         (yylex): Set the "negative" member of signed numbers.
41154
41155 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
41156
41157         * doc/getdate.texi (Time of day items, Time zone items):
41158         Describe new formats +00:00, UTC+00:00.
41159
41160 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41161
41162         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
41163         spurious "-l"s.  Problem reported by Stepan Kasal.
41164
41165 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
41166
41167         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
41168         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
41169
41170 2004-12-04  Simon Josefsson  <jas@extundo.com>
41171
41172         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
41173         Vandoorselaere <yoann@prelude-ids.org>.
41174
41175 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41176
41177         Changes imported from coreutils.
41178         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
41179         exist.
41180         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
41181
41182 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41183
41184         Changes imported from coreutils.
41185         * lib/hard-locale.c: Assume <locale.h> exists.
41186         Include "strdup.h".
41187         (GLIBC_VERSION): New macro.
41188         (hard_locale): Assume setlocale exists.
41189         Rewrite to avoid #ifdef.
41190         Use strdup rather than malloc + strcpy.
41191         * lib/human.c: Assume <locale.h> exists.
41192         (human_readable): Assume localeconv exists.
41193
41194 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41195
41196         * modules/hard-locale (Depends-on): Add strdup.
41197
41198 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
41199
41200         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
41201         convert T2, not T.  (Imported from libc.)
41202
41203 2004-11-30  Simon Josefsson  <jas@extundo.com>
41204
41205         * modules/restrict (License): Change to LGPL.
41206
41207 2004-11-30  Simon Josefsson  <jas@extundo.com>
41208
41209         * m4/restrict.m4: Add copyright and copying conditions.
41210
41211 2004-11-30  Simon Josefsson  <jas@extundo.com>
41212
41213         * m4/base64.m4: New file.
41214
41215 2004-11-30  Simon Josefsson  <jas@extundo.com>
41216
41217         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
41218         base64.
41219
41220         * tests/test-base64.c: New file.
41221
41222         * modules/base64: New file.
41223
41224 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
41225
41226         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
41227         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
41228
41229         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
41230
41231 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
41232
41233         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
41234         (__getcwd.c): Don't restore errno; glibc doesn't.
41235         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
41236         first, falling back to our code only if its results look suspicious.
41237         Ensure that the resulting buffer is only as large as necessary.
41238
41239         * lib/readutmp.c: Include readutmp.h first.
41240         Include <errno.h>, since readutmp.h no longer does that.
41241         * lib/readutmp.h: Don't include <errno.h>,
41242         <sys/param.h>, <time.h>; not needed to establish interface.
41243         (errno): Remove decl.
41244         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
41245         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
41246         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
41247
41248 2004-11-28  Simon Josefsson  <jas@extundo.com>
41249
41250         * lib/base64.h, base64.c: New file.
41251
41252 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
41253
41254         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
41255
41256 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
41257
41258         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
41259         (Depends-on): Remove pathmax, same.  Add mempcpy.
41260         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
41261         (Makefile.am): Append getcwd.h to lib_SOURCES.
41262         (Include): Add getcwd.h.
41263         (Maintainer): Change from Jim Meyering to "all, glibc",
41264         since getdate now uses intended-for-glibc code.
41265         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
41266         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
41267
41268 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
41269
41270         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
41271         HP's ANSI C compiler.
41272         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
41273         Declaring int functions causes warnings on some modern systems and
41274         shouldn't be needed to compile on ancient ones.
41275         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
41276         defined.
41277
41278         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
41279         with the following changes.
41280         (__set_errno): Parenthesize properly.
41281         Include <stdbool.h>.
41282         (MIN, MAX, MATCHING_INO): New macros.
41283         (__getcwd): Define with prototype, not K&R form.
41284         Use heuristics to allocate default buffer on stack if possible.
41285         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
41286         behavior, and to avoid the PATH_MAX limit when computing
41287         ../../../../...
41288         Use MATCHING_INO to compare inode number to file.
41289         Check for arithmetic overflow in size calculations.
41290         Fix bug in reallocation of dot array that caused getcwd to fail
41291         on directories nested deeper than 75.
41292         Be more careful about saving errno on error.
41293         Do not use realloc; use only free+malloc, as this is a bit
41294         more flexible and avoids a needless copy operation.
41295         Do not inspect st_dev and st_ino for symbolic links; POSIX
41296         doesn't specify the latter.
41297         Check for closedir errors.
41298         Avoid needless casts.
41299         Use "#ifdef weak_alias" around weak_alias, to be like other
41300         glibc code.
41301         The following changes to getcwd.c have effect only when used in
41302         gnulib; they have no effect inside glibc proper.
41303         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
41304         as alloca isn't used.
41305         (alloca, __alloca): Likewise.
41306         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
41307         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
41308         unconditionally, as gnulib assumes C89 or better.
41309         Do not include <sys/param.h>.
41310         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
41311         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
41312         better.
41313         (NULL) [!defined NULL]: Remove; we assume C89 or better.
41314         Include <dirent.h> in a way that is compatible with modern Autoconf.
41315         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
41316         New macros, if not already defined.
41317         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
41318         Use "_LIBC", not "defined _LIBC", for consistency.
41319         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
41320         a mempcpy module.
41321         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
41322         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
41323         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
41324         credit only to Jim Meyering and adjust the copyright dates.
41325         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
41326         <stdlib.h>, <unistd.h>, "pathmax.h".
41327         Instead, include "xgetcwd.h" (first) and "getcwd.h".
41328         (INITIAL_BUFFER_SIZE): Remove.
41329         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
41330
41331 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
41332
41333         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
41334         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
41335         Use the _ONCE methods, for efficiency.
41336         Check for fcntl.h.  In test program, include <errno.h>
41337         and <fcntl.h> if available.  Remove old K&R cruft from
41338         test program.  Check for common errors in GNU/Linux,
41339         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
41340         don't do AC_LIBOBJ, as that's getcwd.m4's job.
41341         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
41342         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
41343         name accordingly.
41344         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
41345         accommodate new getcwd.c.
41346         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
41347         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
41348         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
41349         that's all we need now.
41350
41351 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41352
41353         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
41354         argp-parse.c depends on getopt internals, that means we should
41355         always use our getopt, to be on the safe side.
41356         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
41357         order not to spoil the result of an eventual previous invocation
41358         of gl_GETOPT_SUBSTITUTE.
41359
41360 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41361
41362         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
41363         redefinition warnings. To avoid them, include the defines
41364         in `#if !defined __need_getopt ... #endif'. The only place
41365         where __getopt_argv_const is used is in definitions
41366         of getopt_long and getopt_long_only below, which are as well
41367         protected by `#ifndef __need_getopt'.
41368         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
41369         __need_getopt after including <stdio.h> and <unistd.h> These
41370         headers might have defined it.
41371
41372 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
41373
41374         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
41375
41376 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
41377
41378         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
41379         (futimens): New function, which uses futimes if available.
41380         (futimens, utimens): Support timespec==NULL, with same semantics
41381         as utime and utimens.
41382         * lib/utimens.h (futimens): New decl.
41383
41384 2004-11-23  Jim Meyering  <jim@meyering.net>
41385
41386         * lib/getopt_.h: Remove trailing blanks.
41387
41388 2004-11-23  Jim Meyering  <jim@meyering.net>
41389
41390         * lib/__fpending.c: Add comment.
41391
41392 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
41393
41394         * modules/canonicalize (Depends-on): Add xreadlink.
41395         Problem reported by James Youngman.
41396
41397 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41398
41399         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
41400         New macros.
41401         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
41402         optopt): Use them instead of invoking ## directly; otherwise, the
41403         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
41404
41405 2004-11-19  Bruno Haible  <bruno@clisp.org>
41406
41407         * lib/strtok_r.c: Move comments from here...
41408         * lib/strtok_r.h: ... to here.
41409
41410 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41411
41412         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
41413         implementations that mishandle size_t overflow.
41414
41415 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41416
41417         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
41418         might fail.  Problem reported by Yoann Vandoorselaere.
41419         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
41420         implementations that mishandle size_t overflow.
41421
41422 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41423
41424         * modules/canon-host (Depends-on): Add strdup.
41425
41426 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41427
41428         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
41429
41430 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41431
41432         * lib/canon-host.c: Include "strdup.h".
41433         (canon_host): Use getaddrinfo if available, so that IPv6 works.
41434         Use strdup instead of malloc/strcpy to duplicate strings.
41435
41436         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
41437         (human_space_before_unit): New constant.
41438         * lib/human.c (human_readable): Support it.
41439
41440         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
41441         (xgetcwd): Set errno correctly when failing.
41442         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
41443         the failure is actually due to a PATH_MAX problem.
41444
41445         Further getopt changes to make it more likely that glibc will
41446         buy the changes back.
41447         * lib/getopt.c (POSIXLY_CORRECT): New constant.
41448         (getopt): Use it, so to preserve glibc semantic
41449         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
41450         when compiling for libc.
41451         * lib/getopt_.h (__getopt_argv_const): Bring it back.
41452         (getopt_long, getopt_long_only): Use it.
41453
41454         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
41455         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
41456         (getopt): Argv is now char * const *, as per standard.
41457         (_getopt_internal_r, _getopt_internal): Argv is now char **,
41458         not char *__getopt_argv_const *.
41459         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
41460         _getopt_long_only_r): Likewise.
41461         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
41462         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
41463         _getopt_long_r, _getopt_long_only_r): Likewise.
41464         * lib/getopt_.h (__getopt_argv_const): Remove.
41465         (getopt): Argv is now char * const *, as per standard.
41466
41467         * lib/getdate.y (tORDINAL): New token.
41468         (day, relunit): Allow it for relative times.
41469         (relative_time_table): Use tORDINAL for ordinals.
41470
41471 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41472
41473         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
41474         Document that "second" isn't allowed as an ordinal number.
41475
41476 2004-11-16  Jim Meyering  <jim@meyering.net>
41477
41478         * modules/closeout (Depends-on): Add fpending.
41479
41480 2004-11-15  Jim Meyering  <jim@meyering.net>
41481
41482         * lib/closeout.c: Include "__fpending.h" once again.
41483         Include <stdbool.h>.
41484         (close_stdout): Don't fail just because stdout was closed initially,
41485         since some programs don't write to stdout in the normal course of
41486         operation (other than --version and --help), and we don't want this
41487         function to make e.g. `touch file >&-' fail.
41488         But do fail if it was closed and someone has tried to write to it.
41489         E.g., `printf foo >&-' must fail.
41490
41491 2004-11-13  Jim Meyering  <jim@meyering.net>
41492
41493         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
41494
41495 2004-11-12  Simon Josefsson  <jas@extundo.com>
41496
41497         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
41498         small doc fix is still pending.
41499
41500 2004-11-11  Simon Josefsson  <jas@extundo.com>
41501
41502         * modules/strtok_r: New file.
41503
41504         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41505         strtok_r.
41506
41507 2004-11-11  Simon Josefsson  <jas@extundo.com>
41508
41509         * m4/strtok_r.m4: New file.
41510
41511         * m4/getopt.m4: Replace opterr.
41512
41513 2004-11-11  Simon Josefsson  <jas@extundo.com>
41514
41515         * lib/strtok_r.h, strtok_r.c: New file.
41516
41517 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
41518
41519         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
41520         of replacing opterr, getopt, etc.  This should handle the
41521         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
41522
41523 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
41524
41525         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
41526         we can stop lying to compilers about the constness of argv when we
41527         are compiled outside glibc.
41528         (getopt, getopt_long, getopt_long_only): Use it.
41529         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
41530         _getopt_internal, getopt): Likewise.
41531         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
41532         _getopt_long_only_r): Likewise.
41533         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
41534         _getopt_long_r, _getopt_long_only_r): Likewise.
41535
41536         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
41537         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
41538         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
41539         the other external symbols.
41540         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
41541         declaration, since the above renaming now works around collisions.
41542
41543 2004-11-11  Jim Meyering  <jim@meyering.net>
41544
41545         * lib/linebreak.c: Remove trailing blanks.
41546         * lib/alloca_.h: Likewise.
41547         * lib/acosl.c: Likewise.
41548         * lib/euidaccess.c: Likewise.
41549         * lib/allocsa.h: Likewise.
41550
41551 2004-11-10  Simon Josefsson  <jas@extundo.com>
41552
41553         * m4/getaddrinfo.m4: New file.
41554
41555 2004-11-10  Simon Josefsson  <jas@extundo.com>
41556
41557         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
41558
41559 2004-11-10  Simon Josefsson  <jas@extundo.com>
41560
41561         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41562         getaddrinfo.
41563
41564         * modules/getaddrinfo: New file.
41565
41566 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41567
41568         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
41569
41570 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41571
41572         * lib/mktime.c (SHR): New macro, which is a portable
41573         substitute for >> that should work even on Crays.
41574         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
41575         Problem reported by Mark D. Baushke in
41576         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
41577         * lib/getdate.y (SHR): Likewise.
41578         (tm_diff): Use it.
41579         * lib/strftime.c (SHR): Likewise.
41580         (tm_diff): Use it.
41581         * lib/quotearg.c (struct quoting_options): Use unsigned int for
41582         quote_these_too, so that right shifts are well defined.  All uses
41583         changed.
41584
41585 2004-11-10  Jim Meyering  <jim@meyering.net>
41586
41587         Ensure that no close failure goes unreported.
41588         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
41589         return early when it seems there's nothing to flush.
41590         Don't include __fpending.h.
41591
41592 2004-11-10  Jim Meyering  <jim@meyering.net>
41593
41594         * modules/closeout (Depends-on): Remove fpending.
41595
41596 2004-11-10  Jim Meyering  <jim@meyering.net>
41597
41598         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
41599
41600 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41601
41602         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
41603         gl_FUNC_STRFTIME.
41604         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
41605         and AC_REQUIRE when possible, to avoid duplicate checks.
41606         Check for <wchar.h>.
41607
41608 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41609
41610         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
41611
41612 2004-11-09  Bruno Haible  <bruno@clisp.org>
41613
41614         * m4/sockpfaf.m4: New file.
41615
41616 2004-11-05  Bruno Haible  <bruno@clisp.org>
41617
41618         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
41619         Reported by Mark D. Baushke <mdb@cvshome.org>.
41620
41621 2004-11-04  Bruno Haible  <bruno@clisp.org>
41622
41623         2004-09-11  Bruno Haible  <bruno@clisp.org>
41624                 * allocsa.valgrind: New file.
41625         2004-02-06  Bruno Haible  <bruno@clisp.org>
41626                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
41627                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
41628                 Reported by Christopher Seip <chris.seip@hp.com>.
41629
41630 2004-11-04  Bruno Haible  <bruno@clisp.org>
41631
41632         * modules/allocsa (Files): Add lib/allocsa.valgrind.
41633         (Makefile.am): Distribute it.
41634
41635 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41636
41637         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
41638         with errno == ERANGE if the buffer is too small.
41639         Problem reported by Mark D. Baushke.
41640
41641 2004-11-03  Albert Chin  <china@thewrittenword.com>
41642             Paul Eggert  <eggert@cs.ucla.edu>
41643
41644         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
41645         equivalent, substitute $ac_type for equivalent type rather than
41646         blindly using uint32_t *always* which won't work if uint32_t is not
41647         available.  Define _UINT32_T to work around typedef of uint32_t if
41648         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
41649         2.5.1.
41650
41651 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41652
41653         * m4/jm-macros.m4: Sync from coreutils.
41654         (gl_MACROS): Check for mbrlen, for pathchk.
41655         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
41656
41657 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41658
41659         * lib/xreadlink.c (MAXSIZE): New macro.
41660         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
41661         size does not exceed MAXSIZE.  Avoid cast.
41662         As suggested by Mark D. Baushke in
41663         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
41664         if readlink fails with buffer size just under MAXSIZE, try again
41665         with MAXSIZE.
41666
41667 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41668
41669         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
41670
41671 2004-11-02  Derek R. Price  <derek@ximbiot.com>
41672         and  Paul Eggert  <eggert@cs.ucla.edu>
41673
41674         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
41675         (get_date): Overparenthesize to avoid GCC warning.
41676
41677 2004-11-02  Bruno Haible  <bruno@clisp.org>
41678
41679         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
41680         returns void.
41681
41682 2004-11-02  Bruno Haible  <bruno@clisp.org>
41683
41684         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
41685         function returns void.
41686
41687 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
41688
41689         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
41690         fflush_unlocked, flockfile, funlockfile, funlockfile,
41691         fputs_unlocked, putc_unlocked.
41692
41693 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
41694
41695         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
41696         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
41697         already declared.
41698
41699 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41700
41701         * modules/getdate (Files): Add doc/getdate.texi.
41702         (Depends-on): Add setenv, xalloc.
41703
41704 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41705
41706         * lib/getdate.y: Add support for TZ="foo" within a date string.
41707         Fix some bugs near time_t boundaries.  Reject dates with
41708         out-of-range components, e.g., "Sept 31".
41709         Include <stdlib.h>, "setenv.h", "xalloc.h".
41710         (ISDIGIT_LOCALE): Remove; unused.
41711         Note that the TZ and time functions used here are not reentrant.
41712         (mktime_ok, get_tz): New functions.
41713         (TZBUFSIZE): New constant.
41714         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
41715         This requires that we sometimes generate our own TZ="XXX..." setting.
41716
41717 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41718
41719         * doc/getdate.texi: New file, from coreutils with modifications for
41720         the new TZ parsing.
41721
41722 2004-10-27  Derek R. Price  <derek@ximbiot.com>
41723
41724         * lib/mktime.c (not_equal_tm): Remove redundant check.
41725
41726 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41727
41728         * modules/regex (lib_SOURCES): Add regex.c.
41729         Reported by James Youngman in
41730         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
41731
41732 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41733
41734         * lib/getdate.y: Use Bison 1.875 features, and some minor
41735         code cleanups.  This change does not affect semantics.
41736         Don't include <stdlib.h>; no longer needed.
41737         Don't include unlocked-io.h; only the "#if TEST" code uses
41738         stdio, and performance isn't crucial there.
41739         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
41740         Bison 1.875 features as described below.
41741         All uses of "PC." replaced by "pc->".
41742         (YYSTYPE): Add a forward declaration.
41743         (yylex, yyerror): Use full prototypes in forward decls.
41744         Use "%pure-parser" rather than obsolescent "%pure_parser".
41745         Use %parse-param and %lex-param instead of obsolescent
41746         YYPARSE_PARAM and YYLEX_PARAM.
41747         (meridian_table, month_and_day_table, time_units_table,
41748         relative_time_table, time_zone_table, military_table,
41749         lookup_zone, lookup_word, get_date):
41750         Use NULL instead of 0 where appropriate.
41751         (to_hour): Avoid abort (), to avoid a dependency on
41752         stdlib.h.
41753         (yyerror, yylex): Now accepts parser_control * arg.
41754         (main) [TEST]: Use '\0' rather than 0 for char.
41755
41756 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
41757
41758         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
41759
41760 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
41761
41762         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
41763         It's now the caller's responsibility to handle the case where
41764         !HAVE_GETPAGESIZE && !defined getpagesize.
41765
41766         * lib/mktime.c (leapyear): Arg is long int, not int.
41767
41768 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
41769
41770         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
41771
41772 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
41773
41774         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
41775         missing.  Problem reported by James Youngman.
41776
41777 2004-10-16  Simon Josefsson  <jas@extundo.com>
41778
41779         * gnulib-tool: Fix comments.  Fix parse problem.
41780         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
41781
41782 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
41783
41784         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
41785         implementation of getopt_long.  Problem reported by Alexander Taler in:
41786         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
41787
41788 2004-10-15  Bruno Haible  <bruno@clisp.org>
41789
41790         * gnulib-tool: Untabify. Initialize supplied_libname.
41791         (func_usage): More homogenous output.
41792         (func_modules_transitive_closure, func_modules_to_filelist,
41793         func_emit_lib_Makefile_am): New functions.
41794         (func_import): New function, extracted from big case statement. Use
41795         func_get_license, func_modules_transitive_closure,
41796         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
41797         opt_lgpl. Don't use test -a, as it's not portable.
41798         (func_create_testdir): Use func_modules_transitive_closure,
41799         func_modules_to_filelist, func_emit_lib_Makefile_am.
41800
41801 2004-10-15  Bruno Haible  <bruno@clisp.org>
41802
41803         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
41804
41805 2004-10-15  Bruno Haible  <bruno@clisp.org>
41806
41807         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
41808         the portions belonging to each module.
41809         Suggested by Derek Robert Price <derek@ximbiot.com>.
41810
41811 2004-10-12  Simon Josefsson  <jas@extundo.com>
41812
41813         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
41814         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
41815         to real functions.
41816
41817 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41818
41819         * modules/vsnprintf: New file.
41820
41821 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41822
41823         * m4/vsnprintf.m4: New file.
41824
41825 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41826
41827         * lib/vsnprintf.h: New file.
41828         * lib/vsnprintf.c: New file.
41829
41830 2004-10-11  Bruno Haible  <bruno@clisp.org>
41831
41832         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
41833         vsnprintf.
41834
41835 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
41836
41837         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
41838
41839 2004-10-07  Bruno Haible  <bruno@clisp.org>
41840
41841         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
41842         fits into the provided buffer.
41843
41844 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
41845
41846         * lib/diacrit.c, diacrit.h: Add GPL notice.
41847
41848         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
41849         notice.
41850         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
41851         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
41852         This avoids a potential constant-folding bug.
41853
41854 2004-10-05  Bruno Haible  <bruno@clisp.org>
41855
41856         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
41857         for the declaration of strsep.
41858
41859 2004-10-05  Bruno Haible  <bruno@clisp.org>
41860
41861         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
41862
41863 2004-10-04  Simon Josefsson  <jas@extundo.com>
41864
41865         * modules/memmem: New file.
41866         * tests/test-memmem.c: New file.
41867         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
41868
41869 2004-10-04  Simon Josefsson  <jas@extundo.com>
41870
41871         * m4/memmem.m4: New file.
41872
41873 2004-10-04  Simon Josefsson  <jas@extundo.com>
41874
41875         * lib/memmem.h: New file.
41876         * lib/memmem.c: New file, taken from glibc.
41877
41878 2004-10-04  Simon Josefsson  <jas@extundo.com>
41879
41880         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
41881         '#ifdef USE_UNLOCKED_IO'.
41882
41883 2004-10-04  Simon Josefsson  <jas@extundo.com>
41884
41885         * config/srclist.txt: Add memmem from glibc.
41886
41887 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41888
41889         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
41890
41891         * modules/argmatch, modules/argp, modules/closeout, modules/error,
41892         modules/exclude, modules/getdate, modules/getline,
41893         modules/getndelim2, modules/getpass, modules/getpass-gnu,
41894         modules/getusershell, modules/linebuffer, modules/md5,
41895         modules/mountlist, modules/posixtm, modules/readtokens,
41896         modules/readutmp, modules/regex, modules/sha1,
41897         modules/version-etc, modules/yesno:
41898         Remove dependency on unlocked-io.
41899
41900 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41901
41902         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
41903
41904         * m4/unlocked-io.m4: Add copyright notice.
41905         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
41906
41907 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41908
41909         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
41910         * lib/xmalloc.c (xmemdup): Likewise.
41911         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
41912         XFREE): Remove these long-obsolescent macros.
41913         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
41914         * lib/xstrdup.c: Remove.
41915
41916         * lib/regex.c (re_comp): Cast gettext return value to char *,
41917         Problem reported by Martin Neitzel via Mark D. Baushke.
41918
41919 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41920
41921         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
41922         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
41923         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
41924         regex.c, sha1.c, version-etc.c, yesno.c:
41925         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
41926         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
41927         the includer's responsibility.
41928
41929         Sync from coreutils.
41930
41931         * lib/modechange.c (mode_compile): Don't decrement a pointer that
41932         points to the start of a string, as the C Standard says the
41933         resulting behavior is undefined.
41934
41935         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
41936         simple -> simple_backups, numbered_existing ->
41937         numbered_existing_backups, numbered -> numbered_backups
41938         to avoid shadowing problems.  All uses changed.
41939         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
41940         * lib/backupfile.c (check_extension, numbered_backup):
41941         Rename locals to avoid shadowing 'basename'.
41942         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
41943         once.
41944
41945         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
41946         * lib/.cvsignore: Add getopt.h.
41947
41948 2004-10-04  Bruno Haible  <bruno@clisp.org>
41949
41950         * modules/README: New file.
41951         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
41952         not a module.
41953
41954 2004-10-02  Jim Meyering  <jim@meyering.net>
41955
41956         * lib/dirfd.h, getpagesize.h: Add copyright notice.
41957
41958 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41959
41960         * modules/strsep: New file.
41961
41962 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41963
41964         * m4/strsep.m4: New file.
41965
41966 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41967
41968         * lib/strsep.h: New file.
41969         * lib/strsep.c: New file.
41970
41971 2004-10-01  Simon Josefsson  <jas@extundo.com>
41972
41973         * lib/snprintf.c (snprintf): Handle size==0.
41974
41975 2004-10-01  Simon Josefsson  <jas@extundo.com>
41976             Bruno Haible  <bruno@clisp.org>
41977
41978         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
41979         (snprintf): Declare 'args'.
41980
41981 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
41982
41983         * lib/snprintf.c: Remove comments as to why each header is needed.
41984
41985 2004-10-01  Bruno Haible  <bruno@clisp.org>
41986
41987         * MODULES.html.sh: Add strsep.
41988
41989 2004-09-30  Simon Josefsson  <jas@extundo.com>
41990
41991         * modules/snprintf: New file.
41992
41993 2004-09-30  Simon Josefsson  <jas@extundo.com>
41994
41995         * m4/snprintf.m4: New file.
41996
41997 2004-09-30  Simon Josefsson  <jas@extundo.com>
41998
41999         * lib/snprintf.h, lib/snprintf.c: New files.
42000
42001 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42002
42003         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
42004         (hol_entry_help): Never translate an empty string.
42005         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
42006         * lib/argp.h (OPTION_NO_TRANS): New option.
42007
42008 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
42009
42010         * modules/argp (Maintainer): Replace Simon Josefsson
42011         by Sergey Poznyakoff.
42012
42013 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
42014
42015         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
42016         changes merged back into glibc.
42017
42018 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
42019
42020         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
42021
42022 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
42023
42024         * lib/xvasprintf.c: Include xalloc.h.
42025         (xvasprintf): Use xalloc_die, not xmalloc_die.
42026
42027 2004-09-29  Bruno Haible  <bruno@clisp.org>
42028
42029         * modules/alloca-opt: New file, derived from modules/alloca.
42030         * modules/allocsa: Depend on alloca-opt instead of alloca.
42031         * modules/setenv: Likewise.
42032         * modules/vasnprintf: Likewise.
42033         * MODULES.html.sh: Add alloca-opt.
42034
42035 2004-09-28  Simon Josefsson  <jas@extundo.com>
42036
42037         * gnulib-tool: New parameter --lgpl, to asseert that modules are
42038         LGPL, and to replace license template from GPL to LGPL.
42039
42040 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
42041
42042         * modules/dummy: Change license to LGPL.
42043
42044 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
42045
42046         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
42047
42048 2004-09-24  Simon Josefsson  <jas@extundo.com>
42049
42050         * modules/minmax (License): Change from GPL to LGPL.
42051
42052 2004-09-23  Simon Josefsson  <jas@extundo.com>
42053
42054         * gnulib-tool (--import): Typo.
42055
42056 2004-09-23  Simon Josefsson  <jas@extundo.com>
42057
42058         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
42059
42060 2004-09-22  Bruno Haible  <bruno@clisp.org>
42061
42062         * modules/*: Add 'License' field.
42063         * gnulib-tool: Accept --extract-license option.
42064         (func_get_license): New function.
42065
42066 2004-09-21  Bruno Haible  <bruno@clisp.org>
42067
42068         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
42069         Reported by Simon Josefsson.
42070
42071 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
42072
42073         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
42074         gl_AC_TYPE_LONG_LONG.
42075
42076 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
42077
42078         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
42079
42080 2004-09-18  Simon Josefsson  <jas@extundo.com>
42081         and  Paul Eggert  <eggert@cs.ucla.edu>
42082
42083         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
42084         calls with autoreconf.  Define GL_LIB.
42085
42086 2004-09-14  Karl Berry  <karl@gnu.org>
42087
42088         * config/srclist.txt: unsync setenv.c, sigh.
42089
42090 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
42091
42092         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
42093         Problem reported by Bruno Haible in:
42094         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
42095
42096 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
42097
42098         * config/srclist.txt: Comment out argp-pvh.c.
42099
42100 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
42101
42102         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
42103         in case some system header has #define'd it.  Problem reported by
42104         Soeren D. Schulze in
42105         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
42106
42107 2004-09-09  Karl Berry  <karl@gnu.org>
42108
42109         * regex.[ch]: delete from the root.  These were supposed to be
42110                 synced with emacs cvs, but this has not happened for about
42111                 a year, and anyway nothing else uses emacs regex.[ch].
42112                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
42113                 lib/regex[.ch] is untouched.
42114
42115 2004-09-09  Bruno Haible  <bruno@clisp.org>
42116
42117         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
42118
42119 2004-09-09  Bruno Haible  <bruno@clisp.org>
42120
42121         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
42122         modifications.
42123         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
42124
42125 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
42126
42127         * modules/xvasprintf: New file.
42128         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
42129
42130 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
42131
42132         * lib/xvasprintf.h: New file.
42133         * lib/xvasprintf.c: New file.
42134         * lib/xasprintf.c: New file.
42135
42136 2004-09-08  Bruno Haible  <bruno@clisp.org>
42137
42138         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
42139
42140 2004-09-08  Bruno Haible  <bruno@clisp.org>
42141
42142         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
42143         length is > INT_MAX.
42144         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
42145         more.
42146
42147 2004-09-08  Bruno Haible  <bruno@clisp.org>
42148
42149         * lib/stdint_.h: New file, taken from GNU clisp.
42150
42151 2004-09-08  Bruno Haible  <bruno@clisp.org>
42152             Oskar Liljeblad  <oskar@osk.mine.nu>
42153
42154         * modules/stdint: New file.
42155         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
42156
42157 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42158
42159         Import from coreutils.
42160         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
42161         strings on unbounded length.  alloca's performance benefits aren't
42162         that important here.
42163         (V_STRDUP): Remove.
42164         (parse_with_separator): New function, with most of the internals
42165         of the old parse_user_spec.  Allow user to omit both user and group,
42166         for compatibility with FreeBSD.
42167         Clone only the user name, not the entire spec.
42168         Do not set *uid, *gid unless entirely successful.
42169         Avoid memory leak in some failing cases.
42170         Fix regression for USER.GROUP reported by Dmitry V. Levin in
42171         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
42172         (parse_user_spec): Rewrite to use parse_with_separator.
42173
42174 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42175
42176         * modules/userspec: Don't depend on alloca.
42177
42178 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42179
42180         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
42181
42182 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
42183
42184         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
42185         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
42186         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
42187
42188 2004-08-16  Simon Josefsson  <jas@extundo.com>
42189
42190         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
42191         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
42192         Add --dry-run for --import.
42193         Let user provided command line parameters override configure.ac
42194         settings.
42195
42196 2004-08-12  Simon Josefsson  <jas@extundo.com>
42197
42198         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
42199         as discussed with Paul Eggert in threads rooted at
42200         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
42201         and
42202         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
42203         Before, the test was empty, and relied on ELIDE_CODE in source
42204         code.)
42205         (gl_PREREQ_GETOPT): New macro.
42206         (gl_GETOPT): Use them.
42207
42208 2004-08-12  Simon Josefsson  <jas@extundo.com>
42209
42210         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
42211         * lib/getopt_.h: Renamed from getopt.h.
42212
42213 2004-08-12  Simon Josefsson  <jas@extundo.com>
42214
42215         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
42216         Change default library name from libfoo to libgnu.
42217         Now, if you have a configure.ac that says:
42218                 gl_SOURCE_BASE(gl)
42219                 gl_M4_BASE(gl/m4)
42220                 gl_MODULES(error getopt etcetera)
42221                 gl_INIT
42222         you can import all you need by running:
42223                 ../gnulib/gnulib-tool --import
42224
42225         * modules/getopt (Files): Rename getopt.h to getopt_.h.
42226         (Makefile.am): Rewrite, use logic from argz.
42227         (Include): Use <getopt.h> instead of "getopt.h".
42228
42229 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42230
42231         * modules/argp (Files): Add m4/unlocked-io.m4.
42232         (Depends-on): Add extensions.
42233
42234 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42235
42236         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
42237         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
42238         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
42239         Check for program_invocation_name, program_invocation_short_name,
42240         flockfile, funlockfile, features.h, _getopt_long_only_r.
42241
42242 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42243
42244         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
42245         its complicated substitute.
42246         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
42247         and program_invocation_name.
42248         (__argp_basename) [!_LIBC]: Remove; the only use was
42249         replaced by its body.
42250         (__argp_short_program_name): Change condition from
42251         !defined __argp_short_program_name to
42252         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
42253         to match argp-namefrob.h.
42254         (__argp_failure): Don't assume strerror_r returns char *.
42255         * lib/argp-parse.c (N_): Define unconditionally.
42256         (argp_default_options): Fill out initializers with 0 to avoid
42257         gcc warnings.
42258
42259 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42260
42261         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
42262         getopt1.c.
42263
42264 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42265
42266         Merge from coreutils.
42267
42268         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
42269
42270         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
42271         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
42272
42273 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42274
42275         Merge from coreutils.
42276
42277         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
42278         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
42279         for Reliant Unix 5.43.
42280
42281         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
42282         (union fooround): Use uintmax_t, not long int.
42283         The rest is a merge from libc:
42284         [defined _LIBC]: Include <shlib-compat.h>.
42285         (_obstack) [defined _LIBC]: Remove after 2.3.4.
42286
42287         * lib/settime.c (settime): Recode to avoid warning with
42288         Sun Forte C 6U2.
42289
42290         * lib/strverscmp.c: Convert to UTF-8.
42291
42292 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42293
42294         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
42295         m4/uintmax_t.m4.
42296
42297 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42298
42299         * modules/xalloc-die: New file.
42300         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
42301
42302         * modules/md5 (Files): Add m4/uint32_t.m4.
42303         * modules/sha1: Renamed from modules/sha.
42304         (Files):
42305         Rename lib/sha.h to lib/sha1.h.
42306         Rename lib/sha.c to lib/sha1.c.
42307         Rename m4/sha.m4 to m4/sha1.m4.
42308         (lib_SOURCES): Likewise.
42309         (configure.ac): Rename gl_SHA to gl_SHA1.
42310         (Include): sha.h -> sha1.h.
42311
42312 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42313
42314         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
42315         * m4/sha1.m4: Renamed from sha.m4.
42316         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
42317
42318 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42319
42320         * lib/obstack.h (obstack_empty_p):
42321         Don't assume that chunk->contents is suitably aligned.
42322         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
42323         Likewise. Problem reported by Benno in
42324         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
42325
42326         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
42327         readable.  This could be improved further but it'd take some work.
42328
42329 2004-08-08  Simon Josefsson  <jas@extundo.com>
42330
42331         * modules/xgethostname (Depends-on): Remove exit and error (not
42332         used).
42333
42334         * modules/getpass-gnu: Add getpass.h.
42335         (Depends-on): Add stdbool.
42336         * modules/getpass: Add getpass.h.
42337
42338 2004-08-08  Simon Josefsson  <jas@extundo.com>
42339
42340         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
42341         Check getpass declaration.
42342
42343 2004-08-08  Simon Josefsson  <jas@extundo.com>
42344
42345         * lib/xgethostname.c: Don't include error.h (not used).
42346
42347         * lib/getpass.h: Add.
42348         * lib/getpass.c: Include getpass.h first.
42349
42350 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
42351
42352         * lib/xalloc-die.c: New file.
42353         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
42354         All uses removed.
42355         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
42356         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
42357         xalloc-die.c.
42358         (_, N_, xalloc_die): Move to xalloc-die.c.
42359         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
42360         so that we needn't mess with xalloc_msg_memory_exhausted.
42361
42362         * lib/sha1.h: Renamed from sha.h.
42363         (SHA1_H): Renamed from _SHA_H.
42364         (sha1_ctx): Renamed from sha_ctx.
42365         (sha1_init_ctx): Renamed from sha_init_ctx.
42366         (sha1_process_block): Renamed from sha_process_block.
42367         (sha1_process_bytes): Renamed from sha_process_bytes.
42368         (sha1_finish_ctx): Renamed from sha_finish_ctx.
42369         (sha1_read_ctx): Renamed from sha_read_ctx.
42370         (sha1_stream): Renamed from sha_stream.
42371         (sha1_buffer): Renamed from sha_buffer.
42372         * lib/sha1.c: Likewise; renamed from sha.c.
42373         Do not include <sys/types.h>.
42374         Include <stddef.h> rather than <stdlib.h>.
42375
42376 2004-08-08  Bruno Haible  <bruno@clisp.org>
42377
42378         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
42379         FILESYSTEM_PREFIX_LEN.
42380         * lib/progreloc.c: Likewise.
42381         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
42382
42383 2004-08-06  Simon Josefsson  <jas@extundo.com>
42384
42385         * modules/progname (Depends-on): Don't depend on stdbool.
42386
42387 2004-08-06  Simon Josefsson  <jas@extundo.com>
42388
42389         * modules/getsubopt: New file.
42390         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
42391         getsubopt.
42392
42393 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42394
42395         More merge from coreutils.
42396
42397         * m4/utimens.m4, m4/utimecmp.m4: New files.
42398         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
42399         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
42400         prereq.m4, sha.m4: Import changes from coreutils.
42401
42402 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42403
42404         More merge from coreutils.
42405         * modules/raise, modules/readtokens0, modules/utimens:
42406         * modules/utimecmp, module/xnanosleep: New files.
42407         * modules/strftime: Add lib/strftime.h.
42408         Change include from <time.h> to "strftime.h".
42409         * modules/yesno: Add lib/yesno.h.
42410         * modules/backupfile: Remove lib/addext.c.
42411         * modules/euidaccess: Add stat-macros.h.
42412         * modules/canonicalize, modules/euidaccess,
42413         modules/filemode, modules/lchown, modules/makepath,
42414         modules/rmdir, modules/stat: Likewise.
42415
42416 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42417
42418         Merge from tar.
42419         * lib/argp-help.c (make_hol, hol_append): Don't assume that
42420         SIZE_MAX is a valid preprocessor constant.
42421         (__argp_basename): Change from "#ifndef _LIBC"
42422         to "#ifndef __argp_short_program_name", so that
42423         we don't compile these functions for tar.
42424
42425         More merges from coreutils.
42426         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
42427         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
42428         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
42429         * lib/addext.c: Remove; no longer needed.
42430         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
42431         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
42432         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
42433         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
42434         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
42435         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
42436         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
42437         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
42438         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
42439         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
42440         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
42441         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
42442         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
42443         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
42444         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
42445         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
42446         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
42447         Import changes from coreutils.
42448
42449 2004-08-05  Simon Josefsson  <jas@extundo.com>
42450
42451         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
42452
42453 2004-08-05  Simon Josefsson  <jas@extundo.com>
42454
42455         * m4/getsubopt.m4: New file.
42456
42457 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42458
42459         Merge from coreutils.
42460
42461         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
42462         * m4/getcwd-path-max.m4: New files.
42463
42464         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
42465         FILESYSTEM_PREFIX_LEN ->
42466         FILE_SYSTEM_PREFIX_LEN.
42467         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
42468         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
42469         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
42470         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
42471
42472         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
42473         prerequisite modules now handle the DOS stuff.
42474         Don't check for unistd.h.
42475
42476 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42477
42478         Merge from coreutils.
42479
42480         * lib/.gdb-history: Remove; this doesn't belong here.
42481
42482         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
42483         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
42484         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
42485         * lib/getcwd.c: New files.
42486
42487         * lib/dirname.h: Include <stdbool.h>.
42488         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
42489         for consistency with POSIX terminology.  All uses changed.
42490         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
42491         (strip_trailing_slashes): Use bool for booleans.
42492         * lib/stripslash.c (strip_trailing_slashes): Likewise.
42493
42494         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
42495         sometimes returns a positive errno value even when it succeeds.
42496         (print_errno_message) [!LIBC]: Fall back on strerror if
42497         __strerror_r fails.
42498
42499         * lib/path-concat.c (mempcpy): Don't define if a system header defines
42500         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
42501         (longest_relative_suffix): New function.
42502         (path_concat): Use it.  Assume first argument is not NULL.
42503         Port to DOS.  Omit redundant separators.
42504         Report an error instead of returning NULL.
42505         Use mempcpy instead of memcpy.
42506         (xpath_concat): Remove: not declared or used.
42507
42508         * lib/same.h: Include <stdbool.h>
42509         (same_name): Return bool, not int.
42510         * lib/same.c (same_name): Likewise.
42511         (errno): Don't declare; we assume C89 or better now.
42512
42513         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
42514         if not already defined.
42515
42516         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
42517         * lib/dup-safer.c (errno): Likewise.
42518
42519 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42520
42521         Merge from coreutils.
42522         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
42523         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
42524         * modules/path-concat: Don't depend on strdup.
42525
42526 2004-08-03  Simon Josefsson  <jas@extundo.com>
42527
42528         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
42529         * lib/progname.h: Don't include stdbool.h.
42530
42531 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42532
42533         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
42534         * MODULES.html.sh (func_all_modules): Remove fatal.
42535
42536 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42537
42538         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
42539
42540 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42541
42542         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
42543         working.
42544
42545 2004-08-02  Simon Josefsson  <jas@extundo.com>
42546
42547         * lib/getsubopt.h: New file, with comments from Bruno Haible.
42548         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
42549         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
42550
42551 2004-08-01  Simon Josefsson  <jas@extundo.com>
42552
42553         * lib/xgetdomainname.c: Include stdlib.h, for free().
42554
42555 2004-07-19  Bruno Haible  <bruno@clisp.org>
42556
42557         * MODULES.html.sh (func_all_modules): Add dummy.
42558
42559 2004-07-16  Simon Josefsson  <jas@extundo.com>
42560
42561         * modules/dummy: New file.
42562
42563 2004-07-16  Simon Josefsson  <jas@extundo.com>
42564
42565         * lib/dummy.c: New file.
42566
42567 2004-07-16  Bruno Haible  <bruno@clisp.org>
42568
42569         * lib/backupfile.h: Add extern "C" for C++.
42570         * lib/closeout.h: Likewise.
42571         * lib/copy-file.h: Likewise.
42572         * lib/findprog.h: Likewise.
42573         * lib/full-write.h: Likewise.
42574         * lib/pathname.h: Likewise.
42575         * lib/progname.h: Likewise.
42576         * lib/stpcpy.h: Likewise.
42577         * lib/stpncpy.h: Likewise.
42578         * lib/strcase.h: Likewise.
42579         * lib/strstr.h: Likewise.
42580         * lib/xalloc.h: Likewise.
42581
42582         * lib/mbswidth.h: Add extern "C" for C++.
42583         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
42584
42585 2004-07-13  Robert Millan  <robertmh@gnu.org>
42586
42587         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
42588
42589 2004-07-09  Simon Josefsson  <jas@extundo.com>
42590
42591         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
42592         failed without this.)
42593
42594 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
42595
42596         * modules/chown (Files): Add lib/fchown-stub.c, since
42597         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
42598
42599 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
42600
42601         * lib/fchown-stub.c: New file.
42602
42603 2004-06-24  Jim Meyering  <jim@meyering.net>
42604
42605         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
42606
42607 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42608
42609         * modules/argz: Omit "#include".
42610
42611         * MODULES.html.sh (func_all_modules): Add calloc, to match
42612         2004-06-01 addition of calloc module.
42613
42614 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42615
42616         * m4/argz.m4: New file, which is autoupdated from libtool.
42617
42618 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42619
42620         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
42621         libtool.
42622
42623 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42624
42625         * config/srclist-update: Don't insist on "USA." before the
42626         close-comment, as libtool omits the period and puts the */ on a
42627         separate line.
42628         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
42629         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
42630
42631 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
42632
42633         * modules/argz: New file.
42634         * MODULES.html.sh (func_all_modules): Add argz.
42635
42636 2004-06-12  Jim Meyering  <jim@meyering.net>
42637         and  Paul Eggert  <eggert@cs.ucla.edu>
42638
42639         * modules/hash (Files): Add lib/xalloc.h.
42640         * modules/pipe (Depends-on): Add wait-process.
42641         * modules/stat (Depends-on): Add xalloc.
42642         * modules/userspec (Files): Add lib/userspec.h.
42643         * modules/xstrto
42644
42645         Upgrade from gettext-0.13.
42646         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
42647         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
42648         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
42649
42650 2004-06-10  Jim Meyering  <jim@meyering.net>
42651
42652         * lib/calloc.c: New file.
42653
42654 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
42655
42656         * lib/getdate.y (yylex): Allow space between sign and number.
42657         Problem reported by Dan Jacobson.
42658
42659 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
42660
42661         Merge from coreutils CVS.
42662
42663         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
42664         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
42665         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
42666         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
42667         xstrtol.m4: Fix copyright date and/or serial number.
42668
42669         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
42670         See if we need an fchown replacement.
42671         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
42672         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
42673         and use the replacement function if we detect either defect.
42674
42675         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
42676         gl_UTIMECMP.
42677
42678 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
42679         and  Jim Meyering  <jim@meyering.net>
42680
42681         Merge from coreutils CVS.
42682
42683         * lib/stat-macros.h: New file, with contents from file-type.h
42684         and coreutils' system.h.
42685         * lib/file-type.c: Include "stat-macros.h".
42686         * lib/file-type.h (file_type): Move all macro definitions to new file,
42687         stat-macros.h.
42688
42689         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
42690         Wrap old code with this conditional.
42691         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
42692         function that does not dereference symlinks.
42693         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
42694
42695         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
42696         dependency problems.
42697         (xreadlink): Accept new arg SIZE, for efficiency.
42698         All decls and uses changed.
42699         * lib/xreadlink.h: Include <stddef.h>, for size_t.
42700
42701         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
42702         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
42703
42704         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
42705         sysexits.h.
42706
42707 2004-06-01  Jim Meyering  <jim@meyering.net>
42708
42709         * m4/calloc.m4: New file.
42710
42711 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
42712
42713         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
42714         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
42715         Also, fix a typo in a diagnostic.
42716
42717 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
42718
42719         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
42720         or AC_FUNC_REALLOC.
42721
42722 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
42723
42724         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
42725         macros to be defined.
42726         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
42727         the allocator returns NULL because the requested size is zero.
42728
42729 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
42730
42731         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
42732         var.  Add comment explaining why libc still defines it.  This
42733         merges the following patch from glibc:
42734         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
42735
42736 2004-05-20  Andreas Schwab  <schwab@suse.de>
42737
42738         * m4/free.m4: Replace free if it not known to work, not the other
42739         way round.
42740
42741 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
42742
42743         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
42744         present in glibc since revision 1.1 of this file.
42745         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
42746         obstack_alignment_mask, obstack_alloc, obstack_base,
42747         obstack_blank, obstack_blank_fast, obstack_chunk_size,
42748         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
42749         obstack_grow0, obstack_init, obstack_int_grow,
42750         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
42751         obstack_next_free, obstack_object_size, obstack_ptr_grow,
42752         obstack_ptr_grow_fast, obstack_room): Remove declarations of
42753         nonexistent functions.
42754
42755 2004-05-18  Karl Berry  <karl@gnu.org>
42756
42757         * config/srclist.txt: break link for vasnprintf.c.
42758
42759 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
42760
42761         Port obstack to the AS/400, where pointers are 16 bytes wide and
42762         you cannot cast an integer to a valid pointer.  This patch is
42763         currently waiting to be integrated into glibc; see
42764         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
42765
42766         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
42767         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
42768         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
42769         (struct obstack): temp member is now a union of a pointer and
42770         an integer, instead of an integer.  All integer uses changed.
42771         This does not affect the physical layout of struct obstack,
42772         except on hosts (like the AS/400) where the size or alignment of
42773         void * is greater than that of ptrdiff_t.
42774         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
42775         __STDC__)]: Store temporary in pointer member of union, not
42776         integer member.
42777         * lib/obstack.c: Include <stddef.h>, for offsetof.
42778         (struct fooalign): Remove; it doesn't need a name.
42779         (union fooround): Change double to long double, and add void *.
42780         (DEFAULT_ALIGNMENT): Use offsetof to compute.
42781         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
42782         not a macro.  Hence the values are always int; so remove all
42783         casts-to-int in uses.
42784
42785 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
42786
42787         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
42788         we can get this patch merged into glibc.
42789
42790 2004-05-17  Derek R. Price  <derek@ximbiot.com>
42791             Paul Eggert  <eggert@cs.ucla.edu>
42792
42793         * m4/argp: Depend on alloca.
42794
42795 2004-05-17  Derek R. Price  <derek@ximbiot.com>
42796             Paul Eggert  <eggert@cs.ucla.edu>
42797
42798         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
42799         freecoding.
42800
42801 2004-05-17  Bruno Haible  <bruno@clisp.org>
42802
42803         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
42804         precision that consists of a '.' followed by an empty digit string.
42805         Patch by Tor Lillqvist <tml@iki.fi>.
42806
42807 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
42808
42809         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
42810         for backward compatibility with older code.  We need our own
42811         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
42812         it under some other name, and our alloca.h will define it.
42813
42814 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
42815             Derek Price  <derek@ximbiot.com>
42816
42817         * lib/alloca.c: Include <alloca.h>, to get our interface.
42818         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
42819         include <alloca.h> first.  Use C89 prototype for alloca; this
42820         requires including <stddef.h> for size_t.  Use extern "C" if C++.
42821         Use #elif for simplicity, since we can assume C89 now.
42822         Don't try to source the system alloca.h since it will not be found
42823         and to prevent recursively including its replacement.
42824         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
42825         * lib/regex.c: Likewise.
42826
42827 2004-05-16  Derek Price  <derek@ximbiot.com>
42828             Paul Eggert  <eggert@cs.ucla.edu>
42829
42830         getline cleanup.  This changes the getndelim2 API: both order of
42831         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
42832         no delimiter).
42833
42834         * lib/getline.c: Don't include stddef.h or stdio.h, since our
42835         interface does that.
42836         (getline): Always use getdelim, so that we don't have two
42837         copies of this code.
42838         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
42839         if available.
42840         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
42841         (GETNDELIM2_MAXIMUM): New macro.
42842         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
42843         instead of the old practice of delim2==0.  All callers changed.
42844         Return -1 on overflow, instead of returning junk.
42845         Do not set *linesize unless allocation succeeds.
42846         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
42847         that we include sys/types.h.
42848         * lib/getnline.h: Likewise.
42849         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
42850         (getndelim2): Reorder arguments.
42851         * lib/getnline.c (getnline, getndelim):
42852         Don't discard the NMAX argument.
42853         (getnline): Invoke getndelim, to avoid code duplication.
42854         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
42855         of (size_t) -1 by callers of the getnline family.
42856
42857 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
42858
42859         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
42860         Check for gettimeofday.
42861         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
42862         Check for settimeofday, stime.
42863
42864 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
42865
42866         * lib/nanosleep.c (suspended): Change its type from int to
42867         sig_atomic_t volatile.
42868         (first_call): Make it private to rpl_nanosleep, and have it
42869         be zero initially as that's a bit faster.
42870         (my_usleep): Round up fractional times instead of truncating them,
42871         as this is the usual meaning for 'sleep'.
42872
42873         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
42874         doesn't work.
42875         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
42876         (ENOSYS): Define if not defined.
42877         (settime): Fall back on stime if it exists and settimeofday fails.
42878         But don't bother with fallbacks if a method fails with errno == EPERM.
42879
42880 2004-05-11  Jim Meyering  <jim@meyering.net>
42881
42882         Prior to this change, the save_cwd caller required read access to the
42883         current directory on most systems (ones with the fchdir function).
42884
42885         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
42886         fails, try write-only, and finally, resort to using xgetcwd.
42887
42888 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
42889
42890         * lib/obstack.c, obstack.h: Import changes from libc.
42891
42892 2004-04-28  Bruno Haible  <bruno@clisp.org>
42893
42894         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
42895         also implicitly appends .exe to executables.
42896         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
42897         accepts Windows pathnames.
42898         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
42899         Treat Cygwin like Windows, since it now accepts Windows pathnames.
42900         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
42901         Treat Cygwin like Windows, since it now accepts Windows pathnames.
42902         Reported by Derek Robert Price <derek@ximbiot.com>.
42903
42904 2004-04-21  Karl Berry  <karl@gnu.org>
42905
42906         * config/srclist.txt (localcharset.c): break sync.
42907
42908 2004-04-20  Paul Eggert  <eggert@twinsun.com>
42909
42910         * m4/host-os.m4: Add a copyright notice.
42911
42912 2004-04-20  Jim Meyering  <jim@meyering.net>
42913
42914         Change UTILS_ to gl_ in AC_DEFINE'd names.
42915         Change utils_- and jm_-prefixed variables, too.
42916         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
42917         UTILS_FUNC_MKDIR_TRAILING_SLASH.
42918         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
42919
42920         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
42921         Don't emit trailing blanks.
42922         Also rename jm_-prefixed variables to have gl_ prefix.
42923
42924         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
42925         Also rename jm_-prefixed variables to have gl_ prefix.
42926
42927         * m4/jm-macros.m4: Reflect the renamings.
42928         * m4/prereq.m4: Likewise.
42929
42930 2004-04-20  Jim Meyering  <jim@meyering.net>
42931
42932         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
42933         memory.
42934
42935 2004-04-20  Jim Meyering  <jim@meyering.net>
42936             Bruno Haible  <bruno@clisp.org>
42937
42938         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
42939         memory when realloc fails.
42940
42941 2004-04-19  Jim Meyering  <jim@meyering.net>
42942
42943         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
42944         now that readutmp.c may call `free (0)'.
42945
42946 2004-04-19  Bruno Haible  <bruno@clisp.org>
42947
42948         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
42949         * m4/inttypes_h.m4: Likewise.
42950         * m4/stdint_h.m4: Likewise.
42951         * m4/intmax_t.m4: Likewise.
42952         * m4/uintmax_t.m4: Likewise.
42953
42954 2004-04-18  Jim Meyering  <jim@meyering.net>
42955
42956         * m4/prereq.m4: Don't forbid jm_ prefix.
42957
42958         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
42959         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
42960         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
42961         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
42962         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
42963         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
42964         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
42965         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
42966         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
42967         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
42968         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
42969         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
42970         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
42971         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
42972         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
42973         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
42974         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
42975         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
42976         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
42977
42978 2004-04-18  Jim Meyering  <jim@meyering.net>
42979
42980         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
42981         failure, don't leak memory and do call END_UTMP_ENT.
42982
42983 2004-04-16  Jim Meyering  <jim@meyering.net>
42984
42985         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
42986         coreutils' stat program.
42987         (gl_PREREQ): Don't require jm_PREREQ_STAT.
42988
42989 2004-04-11  Paul Eggert  <eggert@twinsun.com>
42990
42991         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
42992         C89.
42993         (CHAR_BIT): Remove, since we assume C89.
42994         Include <stdint.h> if available, as per current Autoconf CVS advice.
42995
42996 2004-03-31  Jim Meyering  <jim@meyering.net>
42997
42998         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
42999         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
43000         * m4/xalloc.m4: Likewise.
43001
43002 2004-03-30  Paul Eggert  <eggert@twinsun.com>
43003
43004         Merge from coreutils.
43005
43006         * m4/inttostr.m4: New file.
43007         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
43008         Require AM_STDBOOL_H and gl_TIMESPEC instead.
43009         Require gl_CLOCK_TIME.
43010         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
43011
43012 2004-03-30  Paul Eggert  <eggert@twinsun.com>
43013
43014         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
43015         not bool, to be more consistent with Unix conventions.
43016         Suggested by Bruno Haible.
43017
43018         Merge from coreutils.
43019
43020         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
43021         * lib/umaxtostr.c: New files.
43022
43023         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
43024         the usual <time.h> dance.
43025         (get_date): Change signature to support fractional time stamps.
43026         All callers changed.
43027         * lib/getdate.y: Include "getdate.h" first, as we can now
43028         assume C89 and don't need to worry about 'const'.
43029         Similarly, include "unlocked-io.h" near start, not in middle.
43030         Include <limits.h>.
43031         (textint.value): Use long int rather than int.
43032         (textint.digits): Use size_t rather than int.
43033         (BILLION, LOG10_BILLION): New constants.
43034         (parser_control): New member rel_ns.  Members day_ordinal,
43035         time_zone, month, day, hour, minutes, rel_year, rel_month,
43036         rel_day, rel_hour, rel_minutes, rel_seconds
43037         are now long int, not int.  Member seconds is now struct timespec,
43038         not int.  New member timespec_seen.  Members dates_seen, days_seen,
43039         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
43040         not int.
43041         (%union.intval): Now long int, not int.
43042         New member timespec.
43043         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
43044         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
43045         (spec): Now is a timespec or an item list.
43046         (timespec, items): New nonterminals.
43047         (time, rel, relunit, number, get_date):
43048         Add support for fractional seconds.
43049         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
43050         (gmtime, localtime, mktime): Remove decls; not needed with C89.
43051         (to_hour): First arg is now long int, not int.
43052         (to_year): Returns long int, not int.
43053         Don't treat year -70 like 70.
43054         (tm_diff): Returns long int, not int.
43055         (lookup_word): Use bool instead of int when appropriate.
43056         (yylex): Use size_t for count, not int.
43057         Detect overflow when parsing large integer constants.
43058         Add support for fractions.
43059         (get_date): Make pointers 'const' if possible.
43060         Use more-portable code to detect integer overflow.
43061         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
43062         Don't use ctime; it's not reliable if the year has >4 digits.
43063
43064         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
43065         This is for compatibility with BSD.
43066
43067         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
43068         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
43069         From coreutils' system.h.
43070
43071         * lib/userspec.c: Don't include "posixver.h".
43072         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
43073         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
43074         compatible extension.  Simplify code by removing a boolean int
43075         that was always nonzero if a string was nonnull.
43076
43077 2004-03-30  Jim Meyering  <jim@meyering.net>
43078
43079         Merge from coreutils.
43080
43081         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
43082         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
43083         on some systems one must include <grp.h> before it.
43084         Reported by Christian Krackowizer.
43085
43086 2004-03-30  Jim Meyering  <jim@meyering.net>
43087
43088         Merge from coreutils.
43089
43090         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
43091
43092         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
43093         an empty input stream.
43094
43095         * lib/readtokens.c: Include <stdbool.h>.
43096         (readtoken): Use `size_t' rather than int/long.
43097         All callers adjusted.
43098         Use `bool' rather than `int' where appropriate.
43099         Use memset rather than an explicit loop.
43100         Use x2nrealloc rather than xrealloc.
43101         Allow the use of `\0' as a delimiter.
43102         (readtokens): Likewise.
43103         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
43104
43105 2004-03-30  Jim Meyering  <jim@meyering.net>
43106
43107         * m4/realloc.m4: Remove file, since now it does no more than
43108         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
43109         the `configure.ac' section of module/realloc.
43110         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
43111
43112 2004-03-30  Bruno Haible  <bruno@clisp.org>
43113
43114         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
43115         nonnull.
43116
43117 2004-03-29  Paul Eggert  <eggert@twinsun.com>
43118
43119         Merge changes to getloadavg.c from coreutils and Emacs.
43120
43121         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
43122         Define to an expression, not to the empty string.
43123         Include cloexec.h and xalloc.h.
43124         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
43125         Use set_cloexec_flag rather than rolling our own.
43126         * lib/cloexec.c, lib/cloexec.h: New files.
43127
43128 2004-03-29  Paul Eggert  <eggert@twinsun.com>
43129
43130         * m4/cloexec.m4: New file.
43131
43132 2004-03-18  Paul Eggert  <eggert@twinsun.com>
43133
43134         * lib/getopt.h: Sync with libc CVS.
43135
43136 2004-03-18  Paul Eggert  <eggert@twinsun.com>
43137             Bruno Haible  <bruno@clisp.org>
43138
43139         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
43140         mbswidth.
43141
43142 2004-03-18  Paul Eggert  <eggert@twinsun.com>
43143             Bruno Haible  <bruno@clisp.org>
43144
43145         * lib/mbswidth.h: Include <wchar.h> only if
43146         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
43147         <wchar.h>.
43148         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
43149
43150 2004-03-09  Paul Eggert  <eggert@twinsun.com>
43151
43152         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
43153         Sync with libc CVS.
43154         * lib/getopt_int.h: New file, also synced from libc.
43155
43156 2004-03-09  Paul Eggert  <eggert@twinsun.com>
43157
43158         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
43159         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
43160         Bring back getopt.c, getopt.h, getopt1.c.
43161
43162 2004-03-07  Paul Eggert  <eggert@twinsun.com>
43163
43164         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
43165         All uses changed.  Check for sa_sigaction member; this fixes
43166         a bug first reported by Jason Andrade in
43167         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
43168
43169 2004-03-07  Paul Eggert  <eggert@twinsun.com>
43170
43171         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
43172         '#if' expressions.  Unlike the code it replaces, it does not
43173         depend on (defined _SC_PAGESIZE).  However, it does depend on
43174         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
43175         first reported by Jason Andrade in
43176         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
43177
43178 2004-02-25  Simon Josefsson  <jas@extundo.com>
43179
43180         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
43181
43182 2004-02-25  Simon Josefsson  <jas@extundo.com>
43183
43184         * lib/strdup.h: New file.
43185         * lib/strdup.c: Include it.
43186         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
43187         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
43188
43189 2004-02-23  Karl Berry  <karl@gnu.org>
43190
43191         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
43192         (from fencepost.gnu.org:/gd/gnuorg).
43193
43194 2004-02-23  Karl Berry  <karl@gnu.org>
43195
43196         * config/srclistvars.sh (GNUORG) [karl]: redefine.
43197         * config/srclist.txt: add maintain/standards documents.
43198
43199 2004-02-18  Bruno Haible  <bruno@clisp.org>
43200
43201         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
43202         Reported by Derek Robert Price <derek@ximbiot.com>.
43203
43204 2004-02-16  Karl Berry  <karl@gnu.org>
43205
43206         * config/mkinstalldirs, install-sh: update from automake.
43207
43208 2004-02-06  Karl Berry  <karl@gnu.org>
43209
43210         * m4/po.m4: update from gettext 0.14.1.
43211
43212 2004-02-06  Karl Berry  <karl@gnu.org>
43213
43214         * lib/config.charset: update from gettext 0.14.1.
43215
43216 2004-02-05  Paul Eggert  <eggert@twinsun.com>
43217
43218         Add comments and code, prompted by suggestions from Bruno Haible
43219         for sh-quote.
43220         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
43221         describing the enum quoting_style values.
43222         * lib/quotearg.c (quotearg_alloc): New function.
43223         (quotearg_buffer_restyled): Treat lone { and } as special.
43224         Treat = as special.  Work around bug with older shells
43225         that "see" a '\' that is really the 2nd byte of a multibyte char.
43226         Quote empty string with shell_quoting_style.
43227
43228 2004-02-03  Bruno Haible  <bruno@clisp.org>
43229
43230         * m4/pipe.m4: New file, from GNU gettext.
43231
43232 2004-02-03  Bruno Haible  <bruno@clisp.org>
43233
43234         * lib/pipe.h: New file, from GNU gettext.
43235         * lib/pipe.c: New file, from GNU gettext.
43236
43237 2004-01-27  Bruno Haible  <bruno@clisp.org>
43238
43239         * m4/execute.m4: New file, from GNU gettext.
43240
43241 2004-01-27  Bruno Haible  <bruno@clisp.org>
43242
43243         * lib/execute.h: New file, from GNU gettext.
43244         * lib/execute.c: New file, from GNU gettext.
43245         * lib/w32spawn.h: New file, from GNU gettext.
43246
43247 2004-01-24  Paul Eggert  <eggert@twinsun.com>
43248
43249         Merge from diffutils.
43250
43251         * lib/file-type.c (file_type): Add typed memory objects.
43252         * lib/file-type.h (S_TYPEISTMO): New macro.
43253
43254         * lib/c-stack.h (c_stack_action): Remove argv argument.
43255         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
43256         (die): Don't calculate message unless segv_action returns.
43257         (get_stack_location, min_address_from_argv, max_address_from_argv,
43258         volatile stack_base, volatile_stack_size): Remove.
43259         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
43260         that every segmentation violation is a stack overflow.  (Ouch!)
43261         See Debian bug 136249 (still outstanding) for more info about why
43262         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
43263
43264 2004-01-24  Paul Eggert  <eggert@twinsun.com>
43265
43266         Exit-status fix from coreutils.
43267
43268         Use exit_failure consistently in place of EXIT_FAILURE,
43269         so that program exit statuses are consistent on failure.
43270
43271         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
43272         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
43273         * lib/argmatch.h: Comment fix to match the above.
43274         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
43275         Now a macro referring to exit_failure, instead of a separate
43276         variable.  Include "exitfail.h" to get it.
43277         * lib/xstrtol.h: Include "exitfail.h".
43278         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
43279
43280         * lib/long-options.c (parse_long_options): Use prototype
43281         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
43282         for clarity.
43283
43284 2004-01-21  Jim Meyering  <jim@meyering.net>
43285
43286         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
43287         so as not to conflict with a different-sized __mktime_internal
43288         function in GNU libc.
43289         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
43290         Problem building statically-linked `ls' reported by Michael Brunnbauer.
43291
43292 2004-01-20  Karl Berry  <karl@gnu.org>
43293
43294         * config/config.guess: update from config.
43295
43296         * config/srclistvars.sh: GNUWWWLICENSES for karl.
43297
43298 2004-01-20  Bruno Haible  <bruno@clisp.org>
43299
43300         Safer stack allocation.
43301         * lib/setenv.c: Include allocsa.h.
43302         (alloca): Remove fallback definition.
43303         (freea): Remove macro.
43304         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
43305         instead of freea.
43306
43307 2004-01-20  Bruno Haible  <bruno@clisp.org>
43308
43309         * m4/eealloc.m4: New file, from GNU gettext.
43310
43311 2004-01-20  Bruno Haible  <bruno@clisp.org>
43312
43313         * m4/allocsa.m4: New file, from GNU gettext.
43314
43315 2004-01-20  Bruno Haible  <bruno@clisp.org>
43316
43317         * lib/xallocsa.h: New file, from GNU gettext.
43318         * lib/xallocsa.c: New file, from GNU gettext.
43319
43320 2004-01-20  Bruno Haible  <bruno@clisp.org>
43321
43322         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
43323
43324 2004-01-20  Bruno Haible  <bruno@clisp.org>
43325
43326         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
43327         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
43328         specially.
43329
43330 2004-01-20  Bruno Haible  <bruno@clisp.org>
43331
43332         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
43333         patch.
43334
43335 2004-01-20  Bruno Haible  <bruno@clisp.org>
43336
43337         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
43338
43339 2004-01-20  Bruno Haible  <bruno@clisp.org>
43340
43341         * lib/eealloc.h: New file.
43342
43343 2004-01-20  Bruno Haible  <bruno@clisp.org>
43344
43345         * lib/binary-io.h: Avoid warnings on Cygwin.
43346
43347 2004-01-20  Bruno Haible  <bruno@clisp.org>
43348
43349         * lib/allocsa.h: New file, from GNU gettext.
43350         * lib/allocsa.c: New file, from GNU gettext.
43351
43352 2004-01-18  Karl Berry  <karl@gnu.org>
43353
43354         * doc/gpl.texi, doc/lgpl.texi: new files.
43355
43356 2004-01-18  Karl Berry  <karl@gnu.org>
43357
43358         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
43359         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
43360
43361 2004-01-15  Paul Eggert  <eggert@twinsun.com>
43362
43363         Merge from coreutils.
43364
43365         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
43366         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
43367         (gl_DEFAULT_POSIX2_VERSION): Move
43368         the documentation from 'configure' into 'config.hin',
43369         so that 'configure --help' isn't burdened by it and
43370         we don't have to worry about its formatting there.
43371         Reword the documentation so that it's more succinct
43372         and can be run together into a single paragraph.
43373         * m4/same.m4 (gl_SAME): Check for pathconf.
43374
43375 2004-01-15  Paul Eggert  <eggert@twinsun.com>
43376
43377         Merge from coreutils.
43378
43379         * lib/posixver.c: Include posixver.h.
43380
43381         * lib/same.c: Include <stdbool.h>, <limits.h>.
43382         (_POSIX_NAME_MAX): Define if not defined.
43383         (MIN): New macro.
43384         (same_name): If file names are silently truncated, report
43385         that the file names are the same if they are the same after
43386         the silent truncation.
43387
43388         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
43389         conversion function.
43390         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
43391         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
43392         longer needed.
43393
43394 2004-01-15  Jim Meyering  <jim@meyering.net>
43395
43396         Merge from coreutils.
43397
43398         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
43399         if no library is required.
43400         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
43401         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
43402         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
43403         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
43404         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
43405         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
43406         value, $ac_cv_search_crypt, if it's "none required".
43407         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
43408         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
43409         not gl_FUNC_GETLOADAVG.
43410         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
43411         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
43412
43413 2004-01-15  Jim Meyering  <jim@meyering.net>
43414
43415         Merge from coreutils.
43416
43417         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
43418         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
43419         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
43420
43421         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
43422         optional configure-time default.
43423
43424         * lib/version-etc.c (version_etc_copyright): Update copyright date.
43425
43426         * lib/xreadlink.c (xreadlink): Correct outdated comment.
43427
43428 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
43429
43430         Merge from coreutils.
43431
43432         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
43433         value, $ac_cv_search_nanosleep, if it's "none required".
43434
43435 2004-01-14  Paul Eggert  <eggert@twinsun.com>
43436
43437         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
43438         with like-named macro in fnmatch.c.
43439         (EXT): Use an internal constant instead.
43440
43441         Merge fnmatch patches from glibc.
43442         * lib/fnmatch.c (mbsinit): Remove define.
43443         Add libc_hidden_ver (__fnmatch, fnmatch).
43444         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
43445         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
43446
43447 2004-01-14  Karl Berry  <karl@gnu.org>
43448
43449         * config/install-sh: update from automake.
43450
43451 2004-01-13  Karl Berry  <karl@gnu.org>
43452
43453         * config/install-sh: update from automake.
43454
43455 2004-01-09  Karl Berry  <karl@gnu.org>
43456
43457         * config/install-sh: update from automake.
43458
43459 2004-01-05  Karl Berry  <karl@gnu.org>
43460
43461         * config/config.{sub,guess}: update from config.
43462
43463 2003-12-31  Karl Berry  <karl@gnu.org>
43464
43465         * config/depcomp: update from automake.
43466
43467 2003-12-14  Karl Berry  <karl@gnu.org>
43468
43469         * lib/config.charset: update from gettext-runtime.
43470
43471 2003-12-03  Paul Eggert  <eggert@twinsun.com>
43472
43473         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
43474         Bug reported by Alfred M. Szmidt.
43475
43476 2003-12-03  Bruno Haible  <bruno@clisp.org>
43477
43478         * m4/gettext.m4: Upgrade from gettext-0.13.
43479         * m4/po.m4: Upgrade from gettext-0.13.
43480         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
43481         * m4/intmax.m4: New file, from gettext-0.13.
43482         * m4/printf-posix.m4: New file, from gettext-0.13.
43483
43484 2003-11-29  Karl Berry  <karl@gnu.org>
43485
43486         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
43487
43488 2003-11-25  Paul Eggert  <eggert@twinsun.com>
43489             Bruno Haible  <bruno@clisp.org>
43490
43491         * lib/printf-parse.h: Don't include sys/types.h.
43492         (ARG_NONE): New macro.
43493         (char_directive): Change type of *arg_index fields to size_t.
43494         * lib/printf-parse.c: Don't include sys/types.h.
43495         (SSIZE_MAX): Remove macro.
43496         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
43497         Remove unnecessary overflow check.
43498         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
43499         fields.
43500
43501 2003-11-25  Bruno Haible  <bruno@clisp.org>
43502
43503         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
43504
43505 2003-11-25  Bruno Haible  <bruno@clisp.org>
43506
43507         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
43508         gt_TYPE_SSIZE_T.
43509
43510 2003-11-24  Paul Eggert  <eggert@twinsun.com>
43511
43512         * modules/alloca: Remove dependency on xalloc.
43513
43514 2003-11-24  Paul Eggert  <eggert@twinsun.com>
43515
43516         * lib/alloca.c: Remove dependency on xalloc module.
43517         (xalloc_die): Remove.
43518         (memory_full) [!defined emacs]: New macro.
43519         [!defined emacs]: Don't include xalloc.h.
43520         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
43521         address arithmetic overflows.  Change datatypes a bit to avoid
43522         unnecessary casts.
43523
43524 2003-11-22  Jim Meyering  <jim@meyering.net>
43525
43526         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
43527         s/size/size_t/.
43528
43529 2003-11-21  Karl Berry  <karl@gnu.org>
43530
43531         * config/config.{sub,guess}: update from config.
43532
43533 2003-11-18  Karl Berry  <karl@gnu.org>
43534
43535         * config/config.{sub,guess}: update from config.
43536
43537         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
43538
43539 2003-11-17  Paul Eggert  <eggert@twinsun.com>
43540
43541         * README: Mention that S+T cannot overflow if S is the size of
43542         an existing object and T is sufficiently small.
43543
43544 2003-11-17  Jim Meyering  <jim@meyering.net>
43545
43546         On systems without utime and without a utimes function capable of
43547         dealing with a NULL struct utimbuf* argument, this utime replacement
43548         could -- in unusual circumstances -- leak a file descriptor.
43549         * lib/utime.c: Include <unistd.h> and <errno.h>.
43550         (utime_null): Be sure to close `fd' and to preserve errno.
43551         Reported by Geoff Collyer via Arnold Robbins.
43552
43553 2003-11-17  Bruno Haible  <bruno@clisp.org>
43554
43555         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
43556         (Depends-on): Add xsize.
43557
43558 2003-11-17  Bruno Haible  <bruno@clisp.org>
43559
43560         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
43561
43562 2003-11-17  Bruno Haible  <bruno@clisp.org>
43563
43564         * lib/vasnprintf.c (alloca): Remove fallback definition.
43565         (freea): Remove definition.
43566         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
43567         Reported by Paul Eggert.
43568
43569 2003-11-16  Paul Eggert  <eggert@twinsun.com>
43570             Bruno Haible  <bruno@clisp.org>
43571
43572         Protect against address arithmetic overflow.
43573         * lib/printf-args.h: Include stddef.h.
43574         (arguments): Change type of field 'count' to size_t.
43575         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
43576         'unsigned int' where appropriate.
43577         * lib/printf-parse.h: Include sys/types.h.
43578         (char_directive): Change type of *arg_index fields to ssize_t.
43579         (char_directives): Change type of fields 'count', max_*_length to
43580         size_t.
43581         * lib/printf-parse.c: Include sys/types.h and xsize.h.
43582         (SSIZE_MAX): Define fallback value.
43583         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
43584         instead of 'int' where appropriate. Check a_allocated, d_allocated
43585         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
43586         * lib/vasnprintf.c: Include xsize.h.
43587         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
43588         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
43589         overflow. Avoid wraparound when converting a width or precision from
43590         decimal to binary.
43591
43592 2003-11-16  Bruno Haible  <bruno@clisp.org>
43593
43594         Update from GNU gettext.
43595         * lib/printf-parse.c: Generalize to it can be compiled for wide
43596         strings.
43597         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
43598         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
43599         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
43600         SNPRINTF): New macros.
43601         Don't include <alloca.h> if the file is used inside libintl.
43602         (local_wcslen): New function, for Solaris 2.5.1.
43603         (VASNPRINTF): Use it instead of wcslen.
43604
43605 2003-11-16  Bruno Haible  <bruno@clisp.org>
43606
43607         * lib/xsize.h (xmax): New function.
43608         (xsum, xsum3, xsum4): Declare as "pure" functions.
43609
43610 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43611
43612         * modules/xalloc (Files): Undo latest change, since xalloc.h
43613         no longer needs SIZE_MAX or PTRDIFF_MAX.
43614
43615 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43616
43617         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
43618         gl_PTRDIFF_MAX.
43619
43620 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43621
43622         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
43623         "return", to pacify some unknown compiler.  Problem reported
43624         by Joerg Schilling.
43625
43626 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43627
43628         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
43629         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
43630         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
43631         heuristic is just as accurate as far as we know, and it removes a
43632         dependency on size_max.m4 and ptrdiff_max.m4.
43633
43634 2003-11-11  Bruno Haible  <bruno@clisp.org>
43635
43636         * modules/xsize (Files): Add m4/size_max.m4.
43637         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
43638
43639 2003-11-11  Bruno Haible  <bruno@clisp.org>
43640
43641         * m4/size_max.m4: New file.
43642         * m4/ptrdiff_max.m4: New file.
43643         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
43644         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
43645         (gl_XALLOC): Invoke it.
43646
43647 2003-11-11  Bruno Haible  <bruno@clisp.org>
43648
43649         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
43650         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
43651         defined.
43652
43653 2003-11-10  Paul Eggert  <eggert@twinsun.com>
43654
43655         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
43656         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
43657         rejected some allocations of exactly SIZE_MAX - 2 bytes.
43658         From Bruno Haible.
43659         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
43660         not (size_t) -1, since it's defined here.
43661
43662 2003-11-09  Karl Berry  <karl@gnu.org>
43663
43664         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
43665
43666 2003-11-06  Paul Eggert  <eggert@twinsun.com>
43667
43668         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
43669         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
43670         Reject sizes of exactly SIZE_MAX bytes.
43671         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
43672         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
43673
43674 2003-11-05  Bruno Haible  <bruno@clisp.org>
43675
43676         * lib/xsize.h: Include limits.h, to avoid a possible collision with
43677         SIZE_MAX defined in <limits.h> on Solaris.
43678
43679 2003-11-04  Jim Meyering  <jim@meyering.net>
43680
43681         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
43682         variable names, rather than @VAR@.
43683         * modules/poll: Likewise.
43684
43685 2003-11-04  Bruno Haible  <bruno@clisp.org>
43686
43687         * modules/xsize: New file.
43688         * modules/linebreak: Depend on xsize.
43689         * MODULES.html.sh (func_all_modules): Add xsize.
43690
43691 2003-11-04  Bruno Haible  <bruno@clisp.org>
43692
43693         * m4/xsize.m4: New file.
43694
43695 2003-11-04  Bruno Haible  <bruno@clisp.org>
43696
43697         * lib/xsize.h: New file.
43698         * lib/linebreak.c: Include xsize.h.
43699         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
43700         argument for overflow.
43701         Suggested by Paul Eggert.
43702
43703 2003-11-03  Karl Berry  <karl@gnu.org>
43704
43705         * config/config.{guess,sub}: update from config.
43706
43707 2003-11-03  Jim Meyering  <jim@meyering.net>
43708
43709         * modules/userspec (lib_SOURCES): Add userspec.h.
43710         (Include): Add "userspec.h".
43711         Improve description.
43712
43713 2003-11-03  Jim Meyering  <jim@meyering.net>
43714
43715         * lib/userspec.c: Include "userspec.h".
43716         * lib/userspec.h: New file.
43717
43718 2003-11-03  Bruno Haible  <bruno@clisp.org>
43719
43720         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
43721
43722 2003-11-03  Bruno Haible  <bruno@clisp.org>
43723
43724         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
43725         available, to avoid (extremely rare) race condition.
43726         Suggested by Paul Eggert.
43727
43728 2003-11-02  Karl Berry  <karl@gnu.org>
43729
43730         * config/srclist.txt (vasprintf.c): sync broken, sigh.
43731
43732 2003-10-31  Paul Eggert  <eggert@twinsun.com>
43733
43734         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
43735         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
43736         (read_filesystem_list): Set and use me_type_malloced.
43737         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
43738         whatever the type happens to be), for brevity and consistency.
43739         Check for size calculation overflow on Alphas running OSF/1.
43740
43741 2003-10-31  Jim Meyering  <jim@meyering.net>
43742
43743         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
43744
43745         * lib/linebuffer.c: Include <string.h> for declaration of memset.
43746
43747 2003-10-30  Paul Eggert  <eggert@twinsun.com>
43748             Bruno Haible  <bruno@clisp.org>
43749
43750         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
43751         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
43752
43753 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
43754
43755         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
43756         netbsd*-gnu*.  Suggested by Robert Millan.
43757
43758 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43759
43760         * modules/group-member: Depend on stdbool.
43761
43762 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43763
43764         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
43765
43766 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43767
43768         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
43769         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
43770         after the 'gnu' in these cases.  This fixes some bugs in the
43771         previous change, and is based on suggestions by Robert Millan.
43772
43773 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43774
43775         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
43776         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
43777         no longer needed.
43778         * lib/quotearg.c (quotearg_n_options): Use it.
43779         * lib/group-member.c: Include <stdbool.h>.
43780         (free_group_info): Arg is now const *; don't free arg.
43781         (get_group_info): Now returns bool and accepts struct group_info *,
43782         rather than returning a malloc'ed struct group_info *.
43783         All uses changed.  Check for overflow in internal size calculation.
43784
43785         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
43786         rather than xmalloc/xrealloc.
43787         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
43788         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
43789         conformance bug: the old code used a pointer after freeing the
43790         storage that it addressed.
43791         * lib/hash.c (hash_initialize): Simplify the code by using
43792         xalloc_oversized rather than doing it by hand.
43793         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
43794         the buffer preserved.  Use free and xmalloc instead.
43795         * lib/quotearg.c (quotearg_n_options): Likewise.
43796         Use a simpler test for size overflow.  Don't use xalloc_oversized
43797         because unsigned int might be wider than size_t (!); this suggests
43798         that we should switch from unsigned int to size_t for slot numbers.
43799
43800 2003-10-28  Paul Eggert  <eggert@twinsun.com>
43801
43802         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
43803         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
43804         NetBSD kernels.  Requested by Richard Stallman.
43805
43806 2003-10-27  Paul Eggert  <eggert@twinsun.com>
43807
43808         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
43809         to allocate the returned structure.  Do not allocate a subarray,
43810         as x2nrealloc will do that.
43811         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
43812         instead of xnrealloc.
43813         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
43814
43815 2003-10-27  Bruno Haible  <bruno@clisp.org>
43816
43817         * lib/stdbool_.h: Better support for BeOS.
43818
43819 2003-10-26  Paul Eggert  <eggert@twinsun.com>
43820
43821         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
43822         now uses inline.
43823
43824 2003-10-26  Paul Eggert  <eggert@twinsun.com>
43825
43826         * lib/xalloc.h (xalloc_oversized): New static inline function, for
43827         callers that want to do their own size-overflow checking.  Include
43828         <stdbool.h>, since xalloc_oversized returns bool.
43829         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
43830         to use xalloc_oversized.
43831
43832         Add two functions x2realloc, x2nrealloc, for programs that grow
43833         arrays dynamically by doubling their sizes.
43834         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
43835         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
43836         New functions.
43837
43838         Port to C99 semantics for 'inline' of external functions.
43839         Bug reported by Bruno Haible.
43840         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
43841         with the old contents of xnmalloc.
43842         (xnmalloc, xmalloc): Use it.
43843         (xnrealloc_inline): New static inline function,
43844         with the old contents of xnrealloc.
43845         (xnrealloc, xrealloc): Use it.
43846
43847         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
43848         that.
43849
43850 2003-10-26  Karl Berry  <karl@gnu.org>
43851
43852         * config/srclist.txt (COPYING.DOC): no longer available from
43853         /gd/gnuorg; don't know where the ultimate source is.
43854
43855 2003-10-25  Paul Eggert  <eggert@twinsun.com>
43856
43857         Fix several address-calculation bugs in the hash modules,
43858         plus some minor code cleanup.
43859
43860         * lib/hash.h: Include <stdbool.h>, for bool.
43861         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
43862         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
43863         hash_get_n_entries, hash_get_max_bucket_length,
43864         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
43865         hash_rehash): Use size_t rather than unsigned.
43866         * lib/hash.c (struct hash_table, hash_get_n_buckets,
43867         hash_get_n_buckets_used, hash_get_n_entries,
43868         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
43869         hash_get_entries, hash_do_for_each, hash_string, is_prime,
43870         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
43871         Likewise.
43872         (SIZE_MAX): Define if not defined.
43873         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
43874         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
43875         hash_print):
43876         Use const * when possible.
43877         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
43878         (check_tuning): Fix bug: if tuning parameters were very close to
43879         0 or 1, rounding errors could have caused subscript violations.
43880         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
43881         (hash_initialize): Add 'fail:' label
43882         to free table and return NULL, and use it to simplify code.
43883         Use calloc rather than clearing the storage ourself.
43884         (hash_initialize, hash_rehash): Check for arithmetic overflow in
43885         buffer size calculations.
43886         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
43887         Include <stddef.h>, for size_t.
43888         * lib/hash-pjw.c (hash_pjw): Likewise.
43889         Switch to method described by Bruno Haible.
43890         Include <limits.h>, for CHAR_BIT.
43891         (SIZE_BITS): New macro.
43892
43893 2003-10-23  Paul Eggert  <eggert@twinsun.com>
43894
43895         * m4/getline.m4 (AM_FUNC_GETLINE):
43896         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
43897         hosts.  Problem reported by Derek Robert Price in
43898         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
43899         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
43900         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
43901
43902 2003-10-21  Paul Eggert  <eggert@twinsun.com>
43903
43904         * lib/getndelim2.c (getndelim2): When size calculation overflows,
43905         ceiling the allocation at NMAX bytes rather than silently
43906         discarding input bytes before NMAX is reached.  This makes
43907         a difference only if NMAX exceeds SIZE_MAX / 2.
43908
43909         * lib/obstack.c: Merge from glibc.
43910         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
43911         Add libc_hidden_def (_obstack_newchunk).
43912         (_obstack_free) [! defined _LIBC]: Remove.
43913         [defined _LIBC]: Make a strong alias from obstack_free, rather than
43914         a clone of the function body.
43915         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
43916         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
43917
43918         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
43919         glibc.
43920         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
43921         arg to memcpy.
43922
43923         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
43924         (obstack_ptr_grow_fast, obstack_int_grow_fast):
43925         Don't use lvalue casts, as GCC plans to remove support for them
43926         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
43927         was also present in the non-GCC version, indicating that this
43928         code had always been buggy and had never been widely used.
43929         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
43930         Use the fast variant of each macro, rather than copying the
43931         definiens of the fast variant; that way, we'll be more likely to
43932         catch future bugs in the fast variants.
43933
43934 2003-10-20  Bruno Haible  <bruno@clisp.org>
43935
43936         * modules/wait-process: New file.
43937         * MODULES.html.sh (func_all_modules): Add wait-process.
43938
43939 2003-10-20  Bruno Haible  <bruno@clisp.org>
43940
43941         * m4/wait-process.m4: New file.
43942
43943 2003-10-20  Bruno Haible  <bruno@clisp.org>
43944
43945         * lib/wait-process.h: New file, from GNU gettext.
43946         * lib/wait-process.c: New file, from GNU gettext.
43947
43948 2003-10-19  Jim Meyering  <jim@meyering.net>
43949
43950         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
43951         HPUX 10.20.
43952
43953 2003-10-18  Karl Berry  <karl@gnu.org>
43954
43955         * config/config.guess: update from config.
43956
43957 2003-10-16  Paul Eggert  <eggert@twinsun.com>
43958
43959         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
43960         (getgroups): First arg is int, not size_t.
43961         Don't let 'free' mangle errno.
43962
43963 2003-10-16  Paul Eggert  <eggert@twinsun.com>
43964
43965         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
43966
43967 2003-10-16  Karl Berry  <karl@gnu.org>
43968
43969         * config/config.{guess,sub}: update from config.
43970
43971 2003-10-16  Jim Meyering  <jim@meyering.net>
43972
43973         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
43974         memcpy.
43975
43976 2003-10-15  Paul Eggert  <eggert@twinsun.com>
43977
43978         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
43979         (SIZE_MAX): Remove.
43980         (new_exclude, add_exclude_file): Initial size no longer needs to
43981         be a power of 2.
43982         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
43983         our own address arithmetic overflow checking.
43984
43985         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
43986         (fnmatch): Do not alloca more than 2000 wide characters;
43987         instead, use malloc for large buffers.
43988         Check for address arithmetic overflow, and return -1
43989         with errno set to ENOMEM in that case.
43990         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
43991         (NEW_PATTERN): Do not alloca more than 8000 bytes;
43992         instead, return -1.  Check for address arithmetic overflow.
43993
43994 2003-10-14  Paul Eggert  <eggert@twinsun.com>
43995
43996         Handle invalid suffixes and overflow independently, so that
43997         callers can treat them independently as needed.  Fix some bugs in
43998         suffix handling, e.g., "100k@" was not diagnosed as an invalid
43999         suffix for a human-readable blocksize.  The major caller-visible
44000         change is the addition of a new
44001         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
44002         that both overflow and suffix chars were found.
44003
44004         * lib/human.c (humblock): Don't check separately for invalid suffix
44005         char; that is xstrtoumax's job (now that its bug is fixed).
44006         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
44007         INTMAX_MAX]: New macros.
44008         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
44009         TYPE_MAXIMUM): New macros.
44010         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
44011         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
44012         if overflow occurs, as it's what __strtol does and it's more useful
44013         in practice.
44014         (__xstrtol): If __strtol reports some error other than ERANGE,
44015         reflect it to the caller as LONGINT_INVALID.  If it reports
44016         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
44017         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
44018         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
44019         value.
44020         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
44021         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
44022         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
44023         [defined UINTMAX_MAX]: New macros.
44024
44025 2003-10-14  Bruno Haible  <bruno@clisp.org>
44026
44027         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
44028
44029 2003-10-14  Bruno Haible  <bruno@clisp.org>
44030
44031         * m4/sig_atomic_t: New file, from GNU gettext.
44032         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
44033
44034 2003-10-14  Bruno Haible  <bruno@clisp.org>
44035
44036         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
44037         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
44038         Also use volatile where needed.
44039
44040 2003-10-12  Paul Eggert  <eggert@twinsun.com>
44041
44042         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
44043         Change maintainer from Bruno Haible to 'all'.
44044
44045 2003-10-12  Paul Eggert  <eggert@twinsun.com>
44046
44047         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
44048
44049 2003-10-12  Paul Eggert  <eggert@twinsun.com>
44050
44051         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
44052         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
44053         and define in terms of the other primitives.
44054         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
44055         (SIZE_MAX): Define if not already defined.
44056         (array_size_overflow): New function.
44057         (xalloc_die): Abort instead of exiting if 'error' returns.
44058         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
44059         (xmalloc, xrealloc): Use them.
44060         (xcalloc): Check for address arithmetic overflow.
44061         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
44062         a bit faster than strcpy.
44063
44064 2003-10-10  Simon Josefsson  <jas@extundo.com>
44065
44066         * modules/argp (Depends-on): Add restrict and strcase.
44067
44068 2003-10-10  Simon Josefsson  <jas@extundo.com>
44069
44070         * m4/argp.m4: Add AC_C_INLINE.
44071
44072 2003-10-08  Paul Eggert  <eggert@twinsun.com>
44073
44074         Merge getpass from libc, plus a few fixes.
44075
44076         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
44077         Include <stdbool.h>.
44078         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
44079         __fsetlocking to empty.
44080         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
44081         do include <bits/libc-lock.h>.
44082         Do not include <fcntl.h>; not needed.
44083         [_LIBC]: Include <wchar.h>.
44084         (NOTCANCEL_MODE): New macro.
44085         (flockfile, funlockfile) [_LIBC]: New macros.
44086         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
44087         [!_LIBC]: New macros.
44088         (call_fclose): New function.
44089         (getpass): Use it.  Save tty stream separately; this simplifies the
44090         code and makes it more reliable if stdin happens to equal stdout.
44091         Invoke __fsetlocking on tty.
44092         Handle thread cancellation if needed.
44093         Namespace cleanup (use __tcgetattr, __getline).
44094         Use bool for Booleans.
44095         [USE_IN_LIBIO]: Handle wide streams.
44096         [!_LIBC]: Unconditionally do the fseek, since we don't know what
44097         stream might go where.
44098
44099         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
44100         doesn't have to include <stdio.h> before us.
44101         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
44102         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
44103         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
44104         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
44105         if not declared, so that we can use getpass.c code from libc without
44106         rewriting it.
44107         (flockfile, ftrylockfile, funlockfile): New macros.
44108
44109 2003-10-08  Paul Eggert  <eggert@twinsun.com>
44110
44111         * modules/getpass: Depend on stdbool.
44112
44113 2003-10-08  Paul Eggert  <eggert@twinsun.com>
44114
44115         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
44116
44117 2003-10-07  Karl Berry  <karl@gnu.org>
44118
44119         * config/config.{guess,sub}: update from config.
44120
44121 2003-10-06  Jim Meyering  <jim@meyering.net>
44122             Bruno Haible  <bruno@clisp.org>
44123
44124         This lets translators provide better translations for the
44125         "Written by ..." part of --version output.
44126         * lib/version-etc.h: Include stdarg.h.
44127         (version_etc_copyright): Declare as readonly.
44128         (version_etc): Make this function variadic with a NULL-terminated list
44129         of author name strings.
44130         (version_etc_va): New declaration.
44131         * lib/version-etc.c: Include stdarg.h, stdlib.h.
44132         (version_etc_copyright): Declare as readonly.
44133         (version_etc_va): New function. Provide a different translatable string
44134         for each possible number of authors < 10. Abbreviate when there are 10
44135         authors or more.
44136         (version_etc): Make this function variadic. Call version_etc_va.
44137         Suggestion from Gary V. Vaughan.
44138
44139         * lib/long-options.h (parse_long_options): Change prototype: the
44140         authors string is moved to the end and becomes variadic.
44141         * lib/long-options.c: Include stdarg.h.
44142         (parse_long_options): Make this function variadic, too.
44143         Call version_etc_va, not version_etc.
44144
44145 2003-10-06  Bruno Haible  <bruno@clisp.org>
44146
44147         * modules/version-etc-2: Remove file.
44148         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
44149
44150 2003-10-06  Bruno Haible  <bruno@clisp.org>
44151
44152         * modules/fatal-signal: New file.
44153         * MODULES.html.sh (func_all_modules): Add fatal-signal.
44154
44155 2003-10-06  Bruno Haible  <bruno@clisp.org>
44156
44157         * m4/fatal-signal.m4: New file.
44158         * m4/signalblocking.m4: New file, from GNU gettext.
44159
44160 2003-10-06  Bruno Haible  <bruno@clisp.org>
44161
44162         * lib/version-etc-2.h: Remove file.
44163         * lib/version-etc-2.c: Remove file.
44164
44165 2003-10-06  Bruno Haible  <bruno@clisp.org>
44166
44167         * lib/fatal-signal.h: New file, from GNU gettext.
44168         * lib/fatal-signal.c: New file, from GNU gettext.
44169
44170 2003-10-05  Paul Eggert  <eggert@twinsun.com>
44171
44172         * README: Rework advice for preventing empty .o files.
44173         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
44174         not <sys/types.h>.
44175
44176 2003-10-04  Karl Berry  <karl@gnu.org>
44177
44178         * lib/argp*: update from libc.
44179
44180 2003-10-04  Karl Berry  <karl@gnu.org>
44181
44182         * config/config.{guess,sub}: update from config.
44183
44184 2003-10-02  Bruno Haible  <bruno@clisp.org>
44185
44186         * modules/lchown (Include): Add lchown.h.
44187         * modules/time_r (Include): Use "..." syntax.
44188         * modules/xgetdomainname (Include): Add xgetdomainname.h.
44189
44190 2003-10-01  Simon Josefsson  <jas@extundo.com>
44191
44192         * MODULES.html.sh (func_all_modules): Move gethostname from section
44193         'based on' to section 'lacking' POSIX:2001.
44194
44195 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
44196
44197         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
44198         to output mode on the same stream.
44199
44200 2003-09-29  Paul Eggert  <eggert@twinsun.com>
44201
44202         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
44203         Fix arg typo in previous patch.
44204
44205 2003-09-28  Jim Meyering  <jim@meyering.net>
44206
44207         * lib/error.c: Correct cpp indentation.
44208
44209 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44210
44211         * modules/free: New file.
44212
44213 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44214
44215         * m4/free.m4: New file.
44216
44217 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44218
44219         * lib/minmax.h (MIN, MAX)
44220         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
44221         Omit the special code that used __typeof__, since we worry that
44222         it could be more trouble than it's worth.  See:
44223         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
44224         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
44225
44226         * lib/free.c: New file.
44227
44228 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
44229
44230         Trivial fixes to Makefile.am parts of module listings.
44231         * modules/strstr: Append strstr.h to lib_SOURCES.
44232         * modules/strcase: Likewise, for strcase.h.
44233
44234 2003-09-27  Karl Berry  <karl@gnu.org>
44235
44236         * config/mkinstalldirs: update from automake.
44237
44238 2003-09-26  Paul Eggert  <eggert@twinsun.com>
44239
44240         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
44241         (error_tail): Do not loop, reallocating temporary buffer, since
44242         the output cannot contain more wide characters than the input
44243         contains bytes, the size must be big enough already.  This avoids
44244         one potential size overflow calculation.  Check for size overflow
44245         when calculating temporary buffer size.  Free temporary buffer
44246         when done, if it was allocated with malloc; this plugs a memory
44247         leak.  Remove casts from void * to pointers, that are no longer
44248         needed now that we're assuming C89 or better.
44249
44250         Merge error changes from glibc.
44251
44252         * lib/error.c, error.h: Update copyright notice header to match glibc.
44253         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
44254         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
44255         Disable cancellation while printing error.
44256         * lib/error.h: Prepend __ to parameter names.
44257
44258 2003-09-26  Jim Meyering  <jim@meyering.net>
44259
44260         * lib/error.c (error_tail): Move some declarations
44261         into inner scope where the local variables are used.
44262
44263 2003-09-26  Bruno Haible  <bruno@clisp.org>
44264
44265         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
44266         stpncpy().
44267         Don't define stpncpy through config.h; it's now done through stpncpy.h.
44268
44269 2003-09-26  Bruno Haible  <bruno@clisp.org>
44270
44271         * lib/stpncpy.h (gnu_stpncpy): New declaration.
44272         (stpncpy): Define as alias for gnu_stpncpy.
44273         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
44274
44275 2003-09-25  Simon Josefsson  <jas@extundo.com>
44276
44277         * lib/xgetdomainname.h: New file.
44278         * lib/xgetdomainname.c: New file.
44279
44280 2003-09-25  Simon Josefsson  <jas@extundo.com>
44281             Bruno Haible  <bruno@clisp.org>
44282
44283         * modules/getdomainname: New file.
44284         * modules/xgetdomainname: New file.
44285         * MODULES.html.sh (func_all_modules): Add getdomainname,
44286         xgetdomainname.
44287
44288 2003-09-25  Simon Josefsson  <jas@extundo.com>
44289             Bruno Haible  <bruno@clisp.org>
44290
44291         * m4/getdomainname.m4: New file.
44292
44293 2003-09-25  Simon Josefsson  <jas@extundo.com>
44294             Bruno Haible  <bruno@clisp.org>
44295
44296         * lib/getdomainname.h: New file.
44297         * lib/getdomainname.c: New file.
44298
44299 2003-09-25  Karl Berry  <karl@gnu.org>
44300
44301         * lib/argp-fmtstream.c, argp-help.c: update from libc.
44302
44303 2003-09-25  Karl Berry  <karl@gnu.org>
44304
44305         * config/install-sh: update from automake.
44306
44307 2003-09-25  Bruno Haible  <bruno@clisp.org>
44308
44309         * modules/version-etc-2: New file, from modules/version-etc with
44310         modifications.
44311         * MODULES.html.sh (func_all_modules): Add version-etc-2.
44312
44313 2003-09-25  Bruno Haible  <bruno@clisp.org>
44314
44315         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
44316         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
44317
44318 2003-09-24  Simon Josefsson  <jas@extundo.com>
44319
44320         * modules/xgethostname: Add xgethostname.h.
44321
44322 2003-09-24  Paul Eggert  <eggert@twinsun.com>
44323
44324         * lib/linebuffer.c (freebuffer): Don't free the argument, just
44325         the buffer associated with the argument.  Bug reported by
44326         Simon Josefsson.
44327
44328 2003-09-24  Paul Eggert  <eggert@twinsun.com>
44329
44330         * README: Document assumptions that 'int' is at least 32 bits
44331         wide, that integer arithmetic is 2's complement without overflow,
44332         that there are no holes in integer values, that adding sizes of
44333         two nonoverlapping objects can't overflow, and that all-bits-zero
44334         yields scalar zero.  Fix spelling and capitalization typos.
44335
44336 2003-09-19  Karl Berry  <karl@gnu.org>
44337
44338         * lib/argp.h: update from libc.
44339
44340 2003-09-17  Paul Eggert  <eggert@twinsun.com>
44341
44342         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
44343         to avoid spurious warnings like "AC_RUN_IFELSE was called before
44344         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
44345
44346 2003-09-17  Paul Eggert  <eggert@twinsun.com>
44347
44348         * gnulib-tool: Use "test -h", not "test -L", for portability
44349         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
44350         (tags_regexp): Remove, since \| doesn't conform to POSIX.
44351         (sed_extract_prog): Issue s commands one-by-one, rather than
44352         using \| in one s command.
44353
44354 2003-09-16  Paul Eggert  <eggert@twinsun.com>
44355
44356         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
44357         input error, instead of returning NULL the next time we are called
44358         (and therefore losing track of errno).
44359
44360 2003-09-16  Bruno Haible  <bruno@clisp.org>
44361
44362         * gnulib-tool (func_create_testdir): Warn about duplicated
44363         dependencies.
44364
44365 2003-09-15  Paul Eggert  <eggert@twinsun.com>
44366
44367         * modules/argmatch, modules/fatal, modules/obstack,
44368         modules/xalloc, modules/xgethostname: Sort dependencies by
44369         importance, not alphabetically.
44370
44371 2003-09-15  Paul Eggert  <eggert@twinsun.com>
44372
44373         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
44374         fails, so that the caller gets the proper errno.
44375
44376         * lib/readutmp.c (read_utmp): Likewise.
44377         Check for fstat error.  Close stream and free storage
44378         when failing.
44379
44380 2003-09-14  Karl Berry  <karl@gnu.org>
44381
44382         * config/srclist.txt (strdup.c): disable for c89 changes.
44383
44384 2003-09-14  Jim Meyering  <jim@meyering.net>
44385
44386         * lib/getloadavg.c: Correct cpp indentation.
44387         * lib/strdup.c: Likewise.
44388         * lib/vasnprintf.c: Likewise.
44389
44390 2003-09-14  Bruno Haible  <bruno@clisp.org>
44391
44392         * modules/fwriteerror: New file.
44393         * MODULES.html.sh (func_all_modules): Add fwriteerror.
44394
44395 2003-09-14  Bruno Haible  <bruno@clisp.org>
44396
44397         * lib/fwriteerror.h: New file.
44398         * lib/fwriteerror.c: New file.
44399
44400 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44401
44402         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
44403         modules/xgethostname, modules/xalloc: Depend on exit.
44404
44405 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44406
44407         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
44408
44409         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
44410         and AC_MINIX, too, so that their extensions are available.
44411
44412         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
44413         This macro has been superseded by gl_BACKUPFILE.
44414
44415         More patches to assume C89 or better.
44416
44417         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
44418
44419         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
44420         unconditionally.
44421         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
44422         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
44423         Include <string.h>, <stdlib.h> unconditionally.
44424         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
44425         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
44426         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
44427         headers or for string.h.
44428         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
44429         or strtoul.
44430
44431         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
44432         headers.
44433         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
44434         * m4/userspec.m4 (gl_USERSPEC): Likewise.
44435         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
44436         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
44437         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
44438         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
44439         memcpy, memset.
44440         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
44441         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
44442         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
44443         strtol.
44444         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
44445         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
44446         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
44447         strtoul.
44448
44449 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44450
44451         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
44452         * lib/obstack.c [!defined _LIBC]: Likewise.
44453         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
44454         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
44455         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
44456
44457         More changes to assume C89 or better.
44458
44459         * lib/error.c (error_tail): Assume vprintf.
44460
44461         * lib/argmatch.c (getenv): Remove decl.
44462         * lib/progreloc.c (get_full_program_name): Define via prototype.
44463         * lib/setenv.c (clearenv): Likewise.
44464         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
44465         needed.
44466         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
44467         (malloc, memcpy): Remove decls.
44468         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
44469         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
44470         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
44471         (memcpy): Remove macro.
44472         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
44473         (__P): Remove.  All uses removed.
44474         (PTR): Remove.  All uses changed to void *.
44475         (CHAR_BIT, NULL): Remove.
44476         (spaces, zeros, memset_space, memset_zero)
44477         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
44478         Remove.
44479         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
44480         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
44481         Define with prototype.
44482         Remove now-unnecessary prototype decl.
44483         (extra_args_spec): Assume ANSI C.  All uses changed.
44484         (extra_args_spec_iso): Remove.
44485         (my_strftime, emacs_strftimeu): Define via prototype.
44486         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
44487         unconditionally.
44488         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
44489         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
44490         (strtoul, strtol): Remove decls.
44491         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
44492         LONG_MAX): Remove.
44493         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
44494         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
44495         (LOCALE_PARAM_PROTO): New macro.
44496         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
44497         (INTERNAL (strtol), strtol): Define with a prototype.
44498         (PARAMS): Remove.  All uses removed.
44499         * lib/tempname.c: Include <string.h> unconditionally.
44500         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
44501         * lib/xgethostname.c (main): Define with a prototype.
44502         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
44503         Include <stdlib.h> unconditionally.
44504         (calloc, malloc, realloc, free): Remove decls.
44505         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
44506         Include <stdlib.h> unconditionally.  Sort include file names.
44507         (strtod): Remove.
44508         (xstrtod): Define with a prototype.
44509         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
44510         (strtol, strtoul): Remove decls.
44511
44512 2003-09-11  Paul Eggert  <eggert@twinsun.com>
44513
44514         More patches to assume C89 or better.
44515         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
44516         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
44517         string.h, memchr, STDC_HEADERS.
44518
44519 2003-09-11  Paul Eggert  <eggert@twinsun.com>
44520
44521         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
44522         Include <stdlib.h>, <string.h> unconditionally.
44523         Remove now-unnecessary cast to char *.
44524         * lib/strnlen.c: Include <string.h> unconditionally.
44525         * lib/yesno.c (yesno): Define with a prototype.
44526
44527 2003-09-11  Bruno Haible  <bruno@clisp.org>
44528
44529         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
44530
44531 2003-09-10  Jim Meyering  <jim@meyering.net>
44532
44533         * lib/error.c: Correct indentation of cpp directives.
44534
44535 2003-09-10  Bruno Haible  <bruno@clisp.org>
44536
44537         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
44538         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
44539         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
44540         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
44541         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
44542         <stdlib.h> and <string.h> checks.
44543         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
44544         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
44545
44546 2003-09-10  Bruno Haible  <bruno@clisp.org>
44547
44548         * lib/strcspn.c: Include <string.h> unconditionally.
44549         * lib/strpbrk.c: Include <string.h> unconditionally.
44550         * lib/strstr.c: Include <string.h> unconditionally.
44551         * lib/unicodeio.c: Include <string.h> unconditionally.
44552         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
44553         * lib/unsetenv.c: Likewise.
44554         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
44555         * lib/yesno.c: Include <stdlib.h> unconditionally.
44556         (rpmatch): Add prototype.
44557
44558 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44559
44560         More patches to assume C89 or better.
44561         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
44562         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
44563         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
44564         or for string.h.
44565         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
44566         stdlib.h.
44567         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
44568         C headers.
44569         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
44570         string.h.
44571         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
44572         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
44573         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
44574         or for string.h.
44575         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
44576         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
44577         C headers.
44578         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
44579         memcpy.
44580         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
44581         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
44582         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
44583         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
44584         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
44585         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
44586         string.h, free.
44587         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
44588         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
44589         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
44590         C headers, or for string.h.
44591         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
44592         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
44593         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
44594         headers, memory.h, stdlib.h, string.h, strings.h.
44595         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
44596         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
44597         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
44598         strchr.
44599         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
44600         headers, memory.h, string.h.
44601         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
44602         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
44603         free.
44604         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
44605         headers.
44606         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
44607         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
44608         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
44609         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
44610         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
44611
44612 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44613
44614         More K&R removal.
44615
44616         * lib/acosl.c (main): Use a prototype.
44617         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
44618         tanl.c: Likewise.
44619
44620         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
44621
44622         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
44623         (getopt, etopt_long, getopt_long_only, _getopt_internal)
44624         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
44625         with a prototype.
44626         * lib/getopt.c (const): Remove macro.
44627         Include <string.h> unconditionally.
44628         (my_index): Remove; all uses changed to strchr.
44629         (strlen): Remove decl.
44630         (exchange): Remove forward decl; no longer needed.
44631         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
44632         Define with prototype.
44633         * lib/getopt1.c (const): Remove macro.
44634         (getopt_long, getopt_long_only, main): Define with prototype.
44635
44636         * lib/getugroups.c: Include <string.h> unconditionally.
44637
44638         * lib/getusershell.c: Include <stdlib.h> unconditionally.
44639         (getusershell, setusershell, endusershell, readname, main):
44640         Define with prototypes.
44641
44642         * lib/group-member.c: Include group-member.h first.
44643         Include <stdlib.h> unconditionally.
44644
44645         * lib/hard-locale.c: Include hard-locale.h first.
44646         Include <stdlib.h>, <string.h> unconditionally.
44647
44648         * lib/hash.c (free, malloc): Remove decls.
44649         Include <stdlib.h> unconditionally.
44650
44651         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
44652         (getenv): Do not declare.
44653
44654         * lib/idcache.c: Include <string.h> unconditionally.
44655
44656         * lib/long-options.c: Include long-options.h first, to test interface.
44657         Include <stdlib.h> unconditionally.
44658
44659         * lib/makepath.c: Include makepath.h first, to test interface.
44660         Include <stdlib.h> and <string.h> unconditionally.
44661
44662         * lib/linebuffer.c: Include <stdlib.h>.
44663         (free): Remove decl.
44664
44665         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
44666         stddef.h. rpl_malloc returns void *, not char *.
44667         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
44668         prototype.
44669
44670         * lib/md5.h: Include <limits.h> unconditionally.
44671         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
44672         (__P): Remove; all uses removed.
44673         * lib/md5.c: Include "md5.h" first.
44674         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
44675         md5_buffer, md5_process_bytes, md5_process_block):
44676         Define with prototypes.
44677         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
44678         * lib/sha.c: Include "sha.h" first.
44679         Include <stdlib.h>, <string.h> unconditionally.
44680
44681         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
44682         * lib/memcmp.c (__ptr_t): Likewise.
44683         * lib/memrchr.c (__ptr_t): Likewise.
44684         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
44685         Include <string.h> unconditionally.
44686         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
44687         * lib/memchr.c: Include <stdlib.h> unconditionally.
44688         * lib/memchr.c (LONG_MAX): Remove.
44689         * lib/memrchr.c (LONG_MAX): Likewise.
44690         * lib/memchr.c (__memchr): Define via a prototype.
44691         * lib/memrchr.c (__memrchr): Likewise.
44692         * lib/memcmp.c (__P): Remove, and remove all uses.
44693         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
44694         Remove forward decls; no longer needed.
44695         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
44696         Use types required by C89 in prototype.
44697
44698         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
44699         * lib/savedir.c: Likewise.
44700         * lib/mkdir.c (free): Remove decl.
44701         * lib/rmdir.c (rmdir): Define with a prototype.
44702         * lib/savedir.c: Include savedir.h first, to test interface.
44703
44704         * lib/mktime.c (STDC_HEADERS): Remove.
44705         Include <stdlib.h>, <string.h> unconditionally.
44706
44707         * lib/modechange.c: Include <stdlib.h> unconditionally.
44708         (malloc): Remove decl.
44709
44710         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
44711         (free): Remove decl.
44712
44713         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
44714         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
44715         (This type really should be intptr_t, but that's a C99ism.)
44716         (_obstack_memcpy): Remove: all uses changed to memcpy.
44717         Include <string.h> unconditionally.
44718         (struct obstack): Assume __STDC__ for types of members
44719         chunkfun, freefun, extra_arg.
44720         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
44721         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
44722         obstack_begin, obstack_specify_allocation,
44723         obstack_specify_allocation_with_arg, obstack_chunkfun,
44724         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
44725         Remove unprototyped decls and the macros that use them.
44726         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
44727         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
44728         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
44729         (defined __STDC__ && __STDC__)]:
44730         Remove nonprototyped code.
44731         Include <stdlib.h> unconditionally.
44732         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
44733         _obstack_allocated_p, _obstack_free, obstack_free,
44734         _obstack_memory_used, print_and_abort):
44735         Define using prototypes.
44736         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
44737         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
44738         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
44739         obstack_next_free, obstack_object_size, obstack_room) [0]:
44740         Remove unused, unprototyped code.
44741
44742         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
44743
44744         * lib/physmem.c (physmem_total, physmem_available, main): Define
44745         with prototypes.
44746
44747         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
44748         (main): Define with a prototype.
44749
44750         * lib/posixver.c (getenv): Remove decl.
44751
44752         * lib/putenv.c (malloc): Returns void *, not char *.
44753         Include <string.h> unconditionally.
44754         (strchr, memcpy, NULL): Do not define.
44755
44756         * lib/readtokens.c: Include readtokens.h first, to test interface.
44757         Include <stdlib.h>, <string.h> unconditionally.
44758         (init_tokenbuffer): Define with a prototype.
44759
44760         * lib/regex.c (PARAMS): Remove.  All uses removed.
44761         All uses of _RE_ARGS removed, too.
44762         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
44763         unconditionally.
44764         (bzero): Assume memset exists.
44765         (memcmp, memcpy, NULL): Remove.
44766         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
44767         char, or assignments to local vars of type signed char.
44768         (init_syntax_once, PREFIX(extract_number_and_incr),
44769         PREFIX(print_partial_compiled_pattern),
44770         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
44771         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
44772         PREFIX(regex_grow_registers), PREFIX(regex_compile),
44773         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
44774         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
44775         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
44776         wcs_compile_range, byte_compile_range, truncate_wchar,
44777         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
44778         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
44779         count_mbs_length, wcs_re_match_2_internal,
44780         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
44781         PREFIX(alt_match_null_string_p),
44782         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
44783         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
44784         regfree, PREFIX(extract_number)): Define with prototype.  Remove
44785         now-unnecessary declaration, if any.
44786         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
44787         regcomp, regexec):
44788         Remove now-unnecessary casts among pointer types.
44789         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
44790
44791         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
44792         (free): Remove decl.
44793
44794         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
44795
44796         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
44797         (free): Remove decl.
44798
44799         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
44800         * lib/xgetcwd.c: Likewise.
44801
44802         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
44803         (free): Remove decl.
44804
44805         * lib/strchrnul.c (strchrnul): Define with a prototype.
44806         Fix bug: c_in was not converted to char before searching.
44807
44808         The following changes are not K&R related:
44809
44810         * lib/group-member.h: Include <sys/types.h>, so that this file is
44811         self-contained.
44812         * lib/makepath.h: Likewise.
44813
44814         * lib/getusershell.c (readname, default_index, line_size, readname):
44815         Use size_t, not int, for sizes.
44816         (readname): If the size overflows, report an error instead of
44817         looping forever.
44818
44819 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44820
44821         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
44822         libc.
44823
44824 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44825
44826         * README: New section: portability guidelines.
44827
44828 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
44829
44830         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
44831         C89 spec.
44832
44833 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
44834
44835         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
44836
44837 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44838
44839         Assume C89 or better; remove K&R cruft.
44840         A few of these changes were first proposed by Derek Robert Price
44841         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
44842
44843         * lib/addext.c: Include <string.h> unconditionally.
44844         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
44845         Don't declare getenv or malloc.
44846
44847         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
44848         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
44849         (NULL): Remove.
44850         (find_stack_direction, alloca): Use prototypes.
44851
44852         * lib/atexit.c (atexit): Define using a prototype.
44853
44854         * lib/basename.c, dirname.c, stripslash.c:
44855         Include <string.h> unconditionally.
44856
44857         * lib/bcopy.c: Include <stddef.h>.
44858         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
44859
44860         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
44861
44862         * lib/error.h (error, error_at_line, error_print_progname)
44863         [! (defined (__STDC__) && __STDC__)]: Remove decls.
44864         * lib/error.c: Include error.h first, to check interface.
44865         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
44866         (VA_START): Remove; all uses changeed to va_start.
44867         (exit, strerror): Remove decls.
44868         (error_print_progname): Prototype uncondionally.
44869         Don't include <errno.h>; no longer needed.
44870         (private_strerror): Remove.
44871         (error_tail): Always define.
44872         (error, error_at_line): Assume C89 or better; always use prototypes.
44873         * lib/fatal.c: Include "fatal.h" first, to test interface.
44874         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
44875         (VA_START): Remove; all uses changed to va_start.
44876         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
44877         this case.
44878         (exit): Remove decl.
44879         (fatal): Prototype unconditionally.  Assume va_start works.
44880         Abort at end, to pacify gcc.
44881
44882         * lib/euidaccess.c (main): Define with a prototype.
44883
44884         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
44885
44886         * lib/exitfail.c: Include <stdlib.h> unconditionally.
44887
44888         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
44889         prototypes.
44890         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
44891         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
44892         (getenv): Remove decl.
44893         (fnmatch): Define using a prototype.
44894         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
44895         (FCT): Define using a prototype.
44896
44897         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
44898
44899         * lib/gethostname.c: Include <stddef.h>.
44900         (gethostname): Define with prototype.  Length is size_t, not int.
44901
44902 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44903
44904         Assume C89 or better; remove K&R cruft.
44905         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
44906         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
44907         string.h, getenv, malloc.
44908         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
44909         headers.
44910         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
44911         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
44912         do not check for strerror.
44913         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
44914         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
44915         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
44916         do not check for doprnt or vprintf.
44917         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
44918         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
44919
44920 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44921
44922         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
44923         getversion.c should have been removed then, but was accidentally
44924         preserved.
44925
44926         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
44927         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
44928
44929 2003-09-08  Karl Berry  <karl@gnu.org>
44930
44931         * config/config.sub, config.guess, srclistvars.sh: update from savannah
44932                 config, forget about prep.
44933
44934         * config/depcomp, missing: update from automake.
44935
44936 2003-09-07  Paul Eggert  <eggert@twinsun.com>
44937
44938         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
44939         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
44940
44941 2003-09-07  Paul Eggert  <eggert@twinsun.com>
44942
44943         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
44944         copy_tm_result.  Bug reported by Simon Josefsson in
44945         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
44946
44947 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44948
44949         * m4/time_r.m4: New file.
44950         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
44951         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
44952         is. Check for timegm declaration.
44953         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
44954         Do not check for gmtime_r.
44955         Replace mktime if __mktime_internal does not exist and if mktime
44956         hasn't been replaced already.
44957
44958 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44959
44960         * lib/time_r.c, lib/time_r.h: New files.
44961
44962         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
44963         __localtime_r.
44964         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
44965         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
44966
44967         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
44968         __gmtime_r.
44969         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
44970         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
44971         Include <time_r.h>.
44972
44973         * lib/timegm.c: Switch to glibc implementation, with the following
44974         changes:
44975         [defined HAVE_CONFIG_H]: Include <config.h>.
44976         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
44977         (__mktime_internal) [!defined _LIBC]: New decl.
44978         (__gmtime_r) [!defined _LIBC]: New macro and function.
44979         (timegm): Use a prototype, since gnulib assumes C89.
44980         Do not bother declaring tmp to be const, as it's not really usefu.
44981         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
44982         (timegm): Declare only if HAVE_DECL_TIMEGM.
44983
44984 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44985
44986         * MODULES.html.sh (func_all_modules): Add time_r.
44987         * modules/time_r: New file.
44988         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
44989         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
44990
44991 2003-09-03  Paul Eggert  <eggert@twinsun.com>
44992
44993         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
44994         Bug reported by Lute Kamstra in
44995         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
44996
44997         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
44998         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
44999         course with correspondingly smaller numbers for tomorrow and
45000         yesterday.  From Tadayoshi Funaba.  Originally installed into
45001         sh-utils on 1999-08-07, but the patch got lost (I guess during the
45002         coreutils merge?).
45003
45004 2003-08-31  Simon Josefsson  <jas@extundo.com>
45005
45006         * modules/timegm: New file.
45007         * MODULES.html.sh (func_all_modules): Add timegm.
45008
45009 2003-08-31  Simon Josefsson  <jas@extundo.com>
45010
45011         * m4/timegm.m4: New file.
45012
45013 2003-08-31  Simon Josefsson  <jas@extundo.com>
45014
45015         * lib/timegm.h: New file.
45016         * lib/timegm.c: New file.  Based on
45017         wget-1.8.2/src/http.c:mktime_from_utc.
45018
45019 2003-08-31  Karl Berry  <karl@gnu.org>
45020
45021         * lib/argp.h: update from libc.
45022
45023 2003-08-28  Bruno Haible  <bruno@clisp.org>
45024
45025         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
45026         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
45027         followed by '#define fnmatch fnmatch_posix' gives an error.
45028
45029 2003-08-28  Bruno Haible  <bruno@clisp.org>
45030
45031         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
45032         warning on QNX, which defines O_BINARY to 000000.
45033
45034 2003-08-27  Jim Meyering  <jim@meyering.net>
45035
45036         * m4/mkstemp.m4: Require that the system mkstemp be able to create
45037         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
45038         would fail after 32.  Reported by Danny Levinson.  Details here:
45039         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
45040
45041 2003-08-24  Bruno Haible  <bruno@clisp.org>
45042
45043         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
45044         MSVC7 <stdio.h> is included later.
45045
45046 2003-08-22  Simon Josefsson  <jas@extundo.com>
45047
45048         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
45049
45050 2003-08-20  Karl Berry  <karl@gnu.org>
45051
45052         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
45053
45054 2003-08-20  Bruno Haible  <bruno@clisp.org>
45055
45056         * modules/progname: New file.
45057         * MODULES.html.sh (func_all_modules): Add progname.
45058
45059 2003-08-20  Bruno Haible  <bruno@clisp.org>
45060
45061         * lib/progname.h: New file, from GNU gettext.
45062         * lib/progname.c: New file, from GNU gettext.
45063         * lib/progreloc.c: New file, from GNU gettext.
45064
45065 2003-08-19  Jim Meyering  <jim@meyering.net>
45066
45067         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
45068         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
45069
45070 2003-08-19  Bruno Haible  <bruno@clisp.org>
45071
45072         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
45073         more.
45074
45075 2003-08-19  Bruno Haible  <bruno@clisp.org>
45076
45077         * lib/xstrdup.c: Assume <string.h> exists.
45078
45079 2003-08-18  Paul Eggert  <eggert@twinsun.com>
45080
45081         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
45082         in makefile rules.
45083
45084 2003-08-18  Jim Meyering  <jim@meyering.net>
45085
45086         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
45087         * m4/lib-ld.m4: Likewise.
45088
45089 2003-08-18  Jim Meyering  <jim@meyering.net>
45090
45091         * lib/setenv.h: Indent nested cpp directive.
45092         * lib/vasnprintf.c: Remove trailing blanks.
45093
45094 2003-08-17  Simon Josefsson  <jas@extundo.com>
45095
45096         * modules/xstrndup: New file.
45097         * MODULES.html.sh (func_all_modules): Add xstrndup.
45098
45099 2003-08-17  Simon Josefsson  <jas@extundo.com>
45100
45101         * modules/argp: Fix autoconf macro name. Add more dependencies.
45102
45103 2003-08-17  Simon Josefsson  <jas@extundo.com>
45104
45105         * m4/xstrndup.m4: New file.
45106
45107 2003-08-17  Simon Josefsson  <jas@extundo.com>
45108
45109         * m4/argp.m4: New file.
45110
45111 2003-08-17  Simon Josefsson  <jas@extundo.com>
45112             Bruno Haible  <bruno@clisp.org>
45113
45114         * lib/xstrndup.h: New file.
45115         * lib/xstrndup.c: New file.
45116
45117 2003-08-17  Bruno Haible  <bruno@clisp.org>
45118
45119         * modules/strndup (Files, Include): Add lib/strndup.h.
45120
45121 2003-08-17  Bruno Haible  <bruno@clisp.org>
45122
45123         * modules/euidaccess (Files): Add lib/euidaccess.h.
45124
45125 2003-08-17  Bruno Haible  <bruno@clisp.org>
45126
45127         * lib/strndup.h: New file.
45128
45129 2003-08-17  Bruno Haible  <bruno@clisp.org>
45130
45131         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
45132         like AC_GNU_SOURCE.
45133         * modules/extensions (configure.ac): Comment out the invocation of
45134         gl_USE_SYSTEM_EXTENSIONS.
45135
45136 2003-08-16  Paul Eggert  <eggert@twinsun.com>
45137
45138         Merges from coreutils, etc.
45139         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
45140         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
45141         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
45142         fixing a typo.
45143         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
45144         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
45145
45146 2003-08-16  Paul Eggert  <eggert@twinsun.com>
45147
45148         Document merge from coreutils.
45149         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
45150         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
45151         * modules/utime: Add m4/utimes-null.m4.
45152
45153 2003-08-16  Paul Eggert  <eggert@twinsun.com>
45154
45155         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
45156         space, undoing this 2003-08-12 change:
45157         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
45158
45159 2003-08-16  Paul Eggert  <eggert@twinsun.com>
45160
45161         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
45162         strtoul.c from libc, undoing this 2003-08-12 change:
45163         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
45164
45165 2003-08-16  Jim Meyering  <jim@meyering.net>
45166
45167         Merges from coreutils.
45168         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
45169         prefix.  Adjust cache variables similarly.  Create 500 rather than
45170         just 300 files, to exercise bug on Darwin6.5, too.
45171         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
45172         $missing_dir.
45173         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
45174         AM_SYS_POSIX_TERMIOS.
45175         Reported by mkc@mathdogs.com.
45176         Also change use of $am_cv_sys_posix_termios
45177         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
45178         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
45179         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
45180         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
45181         in /proc/mounts until it finds one with matching device number.  This
45182         is unnecessary when the FILE argument *is* a mount point.  No stat call
45183         is necessary in that case.  So, disable the statvfs-testing code on
45184         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
45185         as RedHat bug# 84846.
45186         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
45187         to 1MB, so as not to render systems with no stack size limit (e.g.,
45188         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
45189         Include <unistd.h>.  On some systems,
45190         it is required for the definition of _SC_PAGESIZE.
45191
45192 2003-08-16  Jim Meyering  <jim@meyering.net>
45193
45194         Merge from coreutils.
45195         * lib/xstrtoimax.c: #else #if -> #elif.
45196         * lib/xstrtoumax.c: Likewise.
45197
45198 2003-08-16  Jim Meyering  <jim@meyering.net>
45199
45200         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
45201         * m4/utimes.m4: Removed.
45202         * m4/utimes-null.m4: Renamed from utimes.m4.
45203
45204         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
45205         to 1MB, so as not to render systems with no stack size limit (e.g.,
45206         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
45207         Include <unistd.h>.  On some systems,
45208         it is required for the definition of _SC_PAGESIZE.
45209
45210 2003-08-16  Jim Meyering  <jim@meyering.net>
45211         and Paul Eggert  <eggert@cs.ucla.edu>
45212
45213         Merges from coreutils, etc.
45214
45215         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
45216         using the latest version from cvs.  This avoids problems with #line
45217         directives using a vendor (Sun) compiler.
45218         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
45219         Don't set GETGROUPS_LIB here; now it's
45220         done via getgroups.m4's wrapper function.
45221         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
45222         rather than just in sh-util/configure.in, so that the
45223         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
45224         same.
45225         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
45226         AC_FUNC_GETLOADAVG where to find getloadavg.c.
45227         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
45228         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
45229         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
45230         Remove code that is now done by the newly-required macros.
45231         Append $(EXEEXT) to DF_PROG.
45232         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
45233         Do not invoke or require the following here,
45234         since prereq.m4 or some gnulib .m4 now does this for us:
45235         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
45236         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
45237         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
45238         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
45239         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
45240         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
45241         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
45242         AC_FUNC_OBSTACK.
45243         Do not replace the following functions, as this is now the job
45244         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
45245         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
45246         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
45247         atexit getpass, strdup, getpagesize.
45248         Replace 'raise'.
45249         Do not check for the following functions, as this is now the job
45250         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
45251         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
45252         setregid.
45253         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
45254         Check for sys/sysctl.h.
45255         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
45256         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
45257         of checking for ssize_t ourselves.
45258
45259         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
45260         Require every macro that gnulib/modules/* suggests for us.
45261         (jm_PREREQ_ADDEXT): New macro.
45262         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
45263         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
45264
45265         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
45266         (gl_PHYSMEM): Use it.
45267         Also check for `table' function.
45268         Check for new headers and functions.
45269         Add check for sys/sysmp.h.
45270         With suggestions from Kaveh Ghazi.
45271         Ignore headers that are present but cannot be compiled.  This
45272         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
45273         C 5.4.
45274
45275 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45276
45277         Document merge from coreutils.
45278         * modules/userspec: Depend on posixver.
45279         * modules/strftime: Depend on tzset.
45280
45281 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45282
45283         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
45284         rather than tab, after '#' in shell-script copyright notices.
45285         Suggested by Bruno Haible.
45286
45287 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45288
45289         * config/srclist-update: Use three spaces, rather than tab, after '#'
45290         in shell-script copyright notices.  Suggested by Bruno Haible.
45291         Remove unnecessary parenthesization in regular expression.
45292
45293 2003-08-15  Jim Meyering  <jim@meyering.net>
45294
45295         Merge from coreutils.
45296         * lib/xgethostname.c: Include <stdlib.h>.
45297         (xghostname): Don't exit for anything other than memory-related
45298         failure; just return NULL.
45299         * lib/userspec.c: Include "posixver.h".
45300         (parse_user_spec): Accept `.' as a separator only
45301         in pre-POSIX-200112 mode.
45302         * lib/strtoimax.c: Use #elif rather than #else #if.
45303         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
45304         Remove function, now that we can rely on a working tzset function.
45305         [!_LIBC]: Ensure that the required autoconf test has been run.
45306         [!defined _NL_CURRENT && HAVE_STRFTIME]:
45307         Use underlying_strftime for %r.
45308         * lib/sha.c: Merge in some clean-up and optimization changes from
45309         glibc.
45310         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
45311         Ensure that it is a multiple of 64.
45312         Rearrange loop exit tests so as to avoid performing an
45313         additional fread after encountering an error or EOF.
45314         * lib/realloc.c: Update copyright date.
45315
45316 2003-08-15  Jim Meyering  <jim@meyering.net>
45317         and Paul Eggert  <eggert@twinsun.com>
45318
45319         Merge from coreutils.
45320         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
45321         member but strut utmpx does not.  Needed for AIX 4.3.3.
45322         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
45323
45324 2003-08-15  Jim Meyering  <jim@meyering.net>
45325         and Paul Eggert  <eggert@cs.ucla.edu>
45326
45327         Merges from coreutils, etc.
45328         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
45329         Require gl_FUNC_TZSET_CLOBBER.
45330         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
45331         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
45332         members.
45333
45334 2003-08-14  Paul Eggert  <eggert@twinsun.com>
45335
45336         Help the merge from coreutils.
45337         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
45338         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
45339         * m4/tzset.m4: Use it too.
45340
45341 2003-08-14  Paul Eggert  <eggert@twinsun.com>
45342
45343         * modules/tzset: New file.
45344
45345 2003-08-14  Jim Meyering  <jim@meyering.net>
45346
45347         Merges from coreutils.
45348         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
45349         variable names, rather than @FNMATCH_H@.
45350         * modules/alloca: Likewise for $(ALLOCA_H).
45351
45352         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
45353         the three copies of the literal target, `fnmatch.h'.
45354         * modules/alloca (alloca.h): Likewise.
45355
45356 2003-08-14  Jim Meyering  <jim@meyering.net>
45357
45358         Merge from coreutils.
45359         * m4/tzset.m4: New file.
45360         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
45361         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
45362         otherwise, AIX 5.1 systems would end up using the latter.
45363         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
45364         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
45365         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
45366         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
45367
45368 2003-08-14  Jim Meyering  <jim@meyering.net>
45369
45370         Merge from coreutils.
45371         * lib/obstack.h: Whitespace changes.
45372         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
45373         and xcalloc return values.
45374         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
45375         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
45376         hang on OSF/1 5.1 for DIR on both local and remote file systems.
45377         Reported by (and fix confirmed by) Nelson H. F. Beebe.
45378         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
45379         error from mntctl.
45380         Use mntctl's return value to drive the entry-processing loop, since
45381         we can't rely on the value of the vmt_length member in the last
45382         entry.  On some systems doing so could result in exhausting
45383         virtual memory.  Based in part on a patch from Mike Jetzer.
45384
45385 2003-08-14  Jim Meyering  <jim@meyering.net>
45386         and Paul Eggert  <eggert@twinsun.com>
45387
45388         Merges from coreutils, plus other fixes.
45389         * lib/physmem.c: Merge in portability changes from gcc/libiberty
45390         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
45391         for credits and details.  Thanks to Kaveh Ghazi for helping
45392         to keep these files in sync.
45393         (ARRAY_SIZE): Define it.
45394         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
45395         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
45396         (memcasecmp): Don't assume size_t fits in unsigned int.
45397         Remove casts and duplicate code.
45398         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
45399         (memcpy): Remove definition.
45400         Merge in some clean-up and optimization changes from glibc.
45401         [BLOCKSIZE]: Move definition to top of file.
45402         Ensure that it is a multiple of 64.
45403         Rearrange loop exit tests so as to avoid performing an
45404         additional fread after encountering an error or EOF.
45405         * lib/md5.h (md5_uintptr): Define.
45406         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
45407         return to the initial working directory.  Preserve errno
45408         for caller.
45409         * lib/idcache.c: Include "xalloc.h".
45410         (xmalloc, xrealloc): Remove decls.
45411         (getuser): Remove casts no longer required in C89.
45412         * lib/human.c: Include stdio.h, for sprintf.
45413         * lib/group-member.c: Include "xalloc.h".
45414         (xmalloc, xrealloc): Remove decls.
45415         (get_group_info): Remove casts no longer required in C89.
45416         * lib/getusershell.c (readname): Remove casts no longer required in
45417         C89.
45418         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
45419         * lib/getline.c: Whitespace fix, from coreutils.
45420
45421 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45422
45423         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
45424         Check for isascii.
45425
45426         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
45427         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
45428         Undo previous (whitespace-only) change.
45429
45430 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45431
45432         * lib/exclude.c: Include <ctype.h>
45433         (IN_CTYPE_DOMAIN): New macro.
45434         (is_space): New fn.
45435         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
45436         and empty lines.
45437
45438         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
45439         Undo previous (whitespace-only) change.
45440
45441 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45442
45443         * config/srclist-update: Change update back to the old behavior,
45444         leaving whitespace alone.  Use one 'sed' command rather than a
45445         pipeline.
45446         (fixlicense): Now a variable, not a function.
45447         (remove_trailing_blanks): Remove.
45448         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
45449         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
45450         Undo previous (whitespace-only) change.
45451
45452 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45453
45454         Merge from coreutils.
45455         * modules/euidaccess: Add lib_SOURCES, include for new
45456         file euidaccess.h
45457
45458 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45459
45460         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
45461         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
45462         Normalize leading white space and remove trailing white space.
45463
45464         Merge from coreutils
45465         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
45466
45467         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
45468         0.12.1.  These files are now being upgraded automatically by
45469         ../config/srclist-update.
45470
45471 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45472
45473         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
45474         Normalize leading white space and remove trailing white space.
45475         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
45476         notice, as per ../config/srclist-update.
45477
45478         Merge from coreutils.
45479         * lib/euidaccess.h: New file.
45480         * lib/euidaccess.c: Include it.
45481         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
45482         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
45483         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
45484
45485 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45486
45487         * config/srclist-update: Add copyright notice.
45488         (remove_id_lines, remove_trailing_blanks): New constants.
45489         (fixfile): Use them to normalize spacing a bit in copied files.
45490         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
45491         Normalize leading white space and remove trailing white space.
45492
45493         * config/texinfo.tex: Sync with texinfo.
45494
45495         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
45496         strtoul.c from libc, to merge coreutils whitespace changes.
45497
45498         * config/srclist.txt: Get the following m4 files from gettext:
45499         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
45500         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
45501         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
45502         wint_t.m4.
45503
45504 2003-08-12  Karl Berry  <karl@gnu.org>
45505
45506         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
45507         been made.
45508
45509 2003-08-11  Paul Eggert  <eggert@twinsun.com>
45510
45511         * modules/gnu-source, m4/gnu-source.m4:
45512         Remove; we're assuming Autoconf 2.54 or later now.
45513         Suggested by Bruno Haible.
45514         * MODULES.html.sh (func_all_modules): Remove gnu-source.
45515
45516 2003-08-11  Bruno Haible  <bruno@clisp.org>
45517
45518         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
45519
45520 2003-08-11  Bruno Haible  <bruno@clisp.org>
45521
45522         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
45523         (vasnprintf): Use it instead of wcslen.
45524
45525 2003-08-11  Bruno Haible  <bruno@clisp.org>
45526
45527         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
45528         value to ensure that _Bool promotes to int. Use #define for _Bool when
45529         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
45530
45531 2003-08-10  Karl Berry  <karl@gnu.org>
45532
45533         * lib/regex.h: update from libc (whitespace fix).
45534
45535 2003-08-09  Paul Eggert  <eggert@twinsun.com>
45536
45537         Merge some files from coreutils.  These changes were
45538         originally made by Jim Meyering.
45539         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
45540         many older Unixes require this.
45541         * lib/alloca.c (alloca): Remove cast to argument of free;
45542         no longer needed in C89.
45543         * lib/alloca_.h, regex.h: Fix white space to match
45544         what GNU indent does.
45545
45546 2003-08-09  Paul Eggert  <eggert@twinsun.com>
45547
45548         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
45549         apparently Emacs's Unicode mode got confused before my 2003-08-05
45550         checkin.
45551
45552 2003-08-08  Paul Eggert  <eggert@twinsun.com>
45553
45554         * m4/extensions.m4: New file.
45555         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
45556         Require gl_USE_SYSTEM_EXTENSIONS.
45557         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
45558         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
45559
45560 2003-08-08  Paul Eggert  <eggert@twinsun.com>
45561
45562         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
45563         * modules/extensions, modules/gnu-source: New files.
45564         * modules/timespec, modules/unlocked-io: Depend on extensions.
45565
45566 2003-08-07  Paul Eggert  <eggert@twinsun.com>
45567
45568         * modules/restrict: New file.
45569         * MODULES.html.sh (func_all_modules): Add restrict.
45570         * modules/regex: Depend on restrict.
45571
45572 2003-08-07  Paul Eggert  <eggert@twinsun.com>
45573
45574         * m4/restrict.m4: New file.
45575         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
45576
45577 2003-08-07  Bruno Haible  <bruno@clisp.org>
45578
45579         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
45580         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
45581
45582 2003-08-07  Bruno Haible  <bruno@clisp.org>
45583
45584         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
45585         makes the module 'getndelim2' compatible with the module 'getline'.
45586
45587 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45588
45589         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
45590         byte with "\201" to avoid glitches when editing that source file
45591         with multi-gnome-terminal.
45592
45593 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45594
45595         * lib/bumpalloc.h: Remove.
45596
45597 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45598
45599         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
45600         * modules/bumpalloc: Remove.
45601
45602 2003-08-04  Paul Eggert  <eggert@twinsun.com>
45603
45604         * lib/getloadavg.c: Change copyright notice and spacing to conform to
45605         GNU coding style.
45606
45607         Merge from coreutils.
45608         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
45609         1. From glibc.
45610         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
45611         from Karl Berry, implemented by Jim Meyering.
45612         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
45613         from Dmitry V. Levin.
45614         Remove anachronistic cast of xrealloc.
45615         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
45616         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
45617         type. Otherwise, it wouldn't compile with at least /bin/cc on
45618         ymp-cray-unicos9.0.2.X.
45619         Combine two mostly-identical uses of alloca into one.
45620         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
45621
45622 2003-08-04  Dave Love  <d.love@dl.ac.uk>
45623
45624         [From Emacs.]
45625
45626         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
45627         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
45628         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
45629         obsolete NLIST_NAME_UNION.
45630         [__GNU__]: Undef BSD and FSCALE.
45631         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
45632
45633 2003-08-03  Paul Eggert  <eggert@twinsun.com>
45634
45635         * lib/stdbool_.h (_Bool): Make it signed char, instead of
45636         an enum type, so that it's guaranteed to promote to int.  See:
45637         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
45638
45639 2003-08-03  Karl Berry  <karl@gnu.org>
45640
45641         * config/depcomp: update from automake.
45642
45643 2003-07-31  Paul Eggert  <eggert@twinsun.com>
45644
45645         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
45646         (strerror): Don't assume that a printable int fits in 14 bytes.
45647
45648 2003-07-31  Bruno Haible  <bruno@clisp.org>
45649
45650         * modules/getpass-gnu: New file.
45651         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
45652
45653 2003-07-31  Bruno Haible  <bruno@clisp.org>
45654
45655         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
45656
45657 2003-07-24  Karl Berry  <karl@gnu.org>
45658
45659         * config/missing: update from automake.
45660
45661 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
45662             Bruno Haible  <bruno@clisp.org>
45663
45664         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
45665         * lib/getline.c (getline, getdelim): Likewise.
45666         Remove _GNU_SOURCE define; now it's defined in config.h through
45667         m4/getline.m4.
45668
45669 2003-07-23  Karl Berry  <karl@gnu.org>
45670
45671         * config/config.sub: update from prep.
45672
45673 2003-07-22  Paul Eggert  <eggert@twinsun.com>
45674
45675         * modules/xalloc (Depends-on): Add exitfail.
45676         * modules/xmemcoll: Likewise.
45677
45678 2003-07-22  Paul Eggert  <eggert@twinsun.com>
45679
45680         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
45681         over-parenthesization in macros.
45682
45683         Sync with coreutils.
45684
45685         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
45686         required by C99.
45687
45688         Use `exit_failure' for xalloc and xmemcoll instead of their own
45689         private exit-failure variables.
45690         * lib/xalloc.h (xalloc_exit_failure): Remove.
45691         * lib/xmalloc.c: Likewise.  Include exitfail.h.
45692         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
45693         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
45694         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
45695         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
45696
45697 2003-07-20  Jim Meyering  <jim@meyering.net>
45698
45699         * modules/closeout (Depends-on): Add exitfail.
45700         Suggestion from Bruno Haible.
45701
45702 2003-07-19  Karl Berry  <karl@gnu.org>
45703
45704         * config/config.sub: update from prep.
45705
45706 2003-07-18  Paul Eggert  <eggert@twinsun.com>
45707
45708         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
45709         Remove.
45710         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
45711         to test that it can stand by itself.  Include "exitfail.h".
45712         Clients should set exit_failure instead.
45713         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
45714
45715 2003-07-18  Bruno Haible  <bruno@clisp.org>
45716
45717         * modules/getndelim2: New file.
45718         * modules/getline: Share files with module getndelim2.
45719         * modules/getnline: Depend on getndelim2 instead of sharing files with
45720         it. Add getnline.c to lib_SOURCES.
45721         * MODULES.html.sh (func_all_modules): Add getndelim2.
45722
45723 2003-07-18  Bruno Haible  <bruno@clisp.org>
45724
45725         * m4/getndelim2.m4: New file.
45726         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
45727         invoke gl_PREREQ_GETNDELIM2.
45728         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
45729         gl_PREREQ_GETNDELIM2.
45730         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
45731         gl_GETNDELIM2.
45732
45733 2003-07-18  Bruno Haible  <bruno@clisp.org>
45734
45735         * lib/getndelim2.h: New file.
45736         * lib/getndelim2.c: Make into a module of its own. Include config.h,
45737         getndelim2.h.
45738         (getndelim2): Make non-static. Change return type to ssize_t.
45739         * lib/getline.h: Change argument names.
45740         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
45741         * lib/getnline.c: Include getndelim2.h.
45742
45743 2003-07-18  Andreas Schwab  <schwab@suse.de>
45744
45745         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
45746
45747 2003-07-17  Karl Berry  <karl@gnu.org>
45748
45749         * config/config.sub: update from prep.
45750
45751 2003-07-17  Bruno Haible  <bruno@clisp.org>
45752
45753         * modules/getnline: New file.
45754         * modules/getline: Add lib/getndelim2.c to source file list.
45755         * MODULES.html.sh (func_all_modules): Add getnline.
45756
45757 2003-07-17  Bruno Haible  <bruno@clisp.org>
45758
45759         * m4/getnline.m4: New file.
45760
45761 2003-07-17  Bruno Haible  <bruno@clisp.org>
45762
45763         * m4/Makefile.am.in: Remove file.
45764         * m4/Makefile.am: Remove file.
45765         * m4/Makefile.in: Remove file.
45766
45767 2003-07-17  Bruno Haible  <bruno@clisp.org>
45768
45769         * lib/getnline.h: New file.
45770         * lib/getnline.c: New file.
45771         * lib/getndelim2.c: New file, extracted from getline.c.
45772         (getndelim2): Renamed from getdelim2, with added nmax argument.
45773         * lib/getline.c: Include getndelim2.c.
45774         (getdelim2): Moved out to getndelim2.c.
45775         (getline, getdelim): Update.
45776
45777 2003-07-17  Bruno Haible  <bruno@clisp.org>
45778
45779         * lib/Makefile.am: Remove file.
45780         * lib/Makefile.in: Remove file.
45781
45782 2003-07-17  Bruno Haible  <bruno@clisp.org>
45783
45784         * configure.in: Remove file.
45785         * Makefile.in: Remove file.
45786
45787 2003-07-17  Bruno Haible  <bruno@clisp.org>
45788
45789         * MODULES.html.sh: Put the </BODY> right before </HTML>.
45790
45791 2003-07-16  Karl Berry  <karl@gnu.org>
45792
45793         * config/srclist-update: was running fixlicense twice, which caused
45794                 texinfo.tex to be nullified for some reason.  Simplify,
45795                 $gplsrc is no longer needed as far as I can see?
45796
45797 2003-07-16  Jim Meyering  <jim@meyering.net>
45798
45799         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
45800
45801 2003-07-15  Paul Eggert  <eggert@twinsun.com>
45802
45803         * config/srclist.txt: Get the following files from gettext-runtime/intl
45804         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
45805         ref-del.sin.  From Bruno Haible.
45806         * config/srclist-update (fixfile): Change grep pattern again, since the
45807         previous fix didn't work (there was another trailing $).  Use
45808         '[$]' to escape the $s.
45809
45810 2003-07-15  Karl Berry  <karl@gnu.org>
45811
45812         * lib/vasnprintf.c: update from gettext.
45813
45814 2003-07-15  Karl Berry  <karl@gnu.org>
45815
45816         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
45817         gets expanded when surrounded by '$'.
45818
45819 2003-07-15  Jim Meyering  <jim@meyering.net>
45820
45821         * modules/save-cwd: Don't depend on error.  From Derek Price.
45822
45823 2003-07-15  Jim Meyering  <jim@meyering.net>
45824
45825         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
45826
45827 2003-07-14  Simon Josefsson  <jas@extundo.com>
45828
45829         * modules/mempcpy: New file.
45830         * MODULES.html.sh (func_all_modules): Add mempcpy.
45831
45832 2003-07-14  Simon Josefsson  <jas@extundo.com>
45833
45834         * m4/mempcpy.m4: New file.
45835
45836 2003-07-14  Simon Josefsson  <jas@extundo.com>
45837
45838         * lib/mempcpy.h: New file.
45839         * lib/mempcpy.c: New file.
45840
45841 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45842
45843         * modules/getdate, modules/posixtm: Depend on mktime.
45844
45845 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45846
45847         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
45848         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
45849         unicodeio.c, unicodeio.h, unlocked-io.h:
45850         Switch from LGPL to GPL.
45851
45852 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45853
45854         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
45855         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
45856         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
45857         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
45858         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
45859         updated automatically by ../config/srclist-update.  This changes
45860         their license from LPGL to GPL.
45861
45862 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45863
45864         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
45865         assumed to refer to the root of the most recent stable gettext version.
45866         * config/srclistvars.sh: Add defaults for eggert.
45867         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
45868         Match "This program" as well as "The program".  This is needed
45869         for gettext.
45870
45871 2003-07-14  Jim Meyering  <jim@meyering.net>
45872
45873         Don't emit diagnostics.  Let callers do that.
45874         * lib/save-cwd.c: Don't include "error.h".
45875         (save_cwd): Don't call error.  Ensure that errno is valid
45876         when returning nonzero.
45877
45878         * lib/save-cwd.h (restore_cwd): Update prototype.
45879         * lib/save-cwd.c (restore_cwd): Remove two parameters.
45880         Simplify.  Don't call error upon failure.  Let callers do that.
45881         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
45882         when auditing is enabled.  But don't bother updating the #if.
45883
45884 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
45885
45886         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
45887         it breaks C++ compilation.
45888         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
45889
45890 2003-07-10  Simon Josefsson  <jas@extundo.com>
45891
45892         * modules/strchrnul (Makefile.am): Add strchrnul.h.
45893
45894 2003-07-10  Jim Meyering  <jim@meyering.net>
45895
45896         * m4/clock_time.m4: Remove trailing blank.
45897         * m4/intmax_t.m4: Likewise.
45898
45899 2003-07-10  Jim Meyering  <jim@meyering.net>
45900
45901         * lib/vasnprintf.c: Remove trailing blanks.
45902         Make cpp indentation consistent.
45903
45904 2003-07-09  Paul Eggert  <eggert@twinsun.com>
45905
45906         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
45907         posixver.c, strftime.c, strnlen.c, strverscmp.c:
45908         Switch from LGPL to GPL.
45909
45910 2003-07-09  Paul Eggert  <eggert@twinsun.com>
45911
45912         * config/srclist.txt: Sort sublists.  Add
45913         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
45914         that differ from gnulib for one reason or another; we'd like this list
45915         to be smaller but for now let's document what we have.
45916
45917 2003-07-08  Paul Eggert  <eggert@twinsun.com>
45918
45919         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
45920         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
45921         and sweeter "eval x=$x".
45922         * config/srclist.txt: Get lib/argp* from glibc.
45923
45924 2003-07-07  Paul Eggert  <eggert@twinsun.com>
45925
45926         * lib/mktime.c: Fix some boundary cases and remove need for floating
45927         point.
45928
45929         Issue a compile-time diagnostic if time_t is floating point, or if
45930         two's complement arithmetic is not in effect, or if arithmetic
45931         right shift does not propagate the sign.  These assumptions were
45932         all in the original code but they weren't checked.
45933
45934         (TIME_T_MIDPOINT, verify): New macros.
45935         (__isleap): Remove; it has integer overflow problems.
45936         (leapyear): New function, without those problems.
45937         (ydhms_tm_diff): Remove; splitting into two parts.
45938         (ydhms_diff): New function, containing the arithmetic part of
45939         the old ydhms_tm_diff function.  Issue a compile-time
45940         diagnostic if we are not using C99 integer division.
45941         Avoid casts when possible.
45942         (guess_time_tm): New function, containing the checking part of
45943         the old ydhms_tm_diff function.  Return the new value, rather than
45944         the difference between it and the old.  Accept a new argument T
45945         so that *T specifies the old value.  Check for overflow in the result.
45946
45947         (__mktime_internal): Use a time_t offset, not a long int offset.
45948         This undoes the 2003-06-04 change, which is no longer needed now
45949         that we have better overflow checking.
45950         (localtime_offset): Likewise.
45951
45952         (__mktime_internal): Avoid harmful overflow on hosts where time_t
45953         and long are 64-bit but int is only 32-bit.
45954         (ydhms_diff): Use long int to store year1 and yday1.
45955         Issue a compile-time diagnostic if long int is not wide enough.
45956
45957         (__mktime_internal): Use long int to store adjusted year and yday.
45958         Use plain C rather than preprocessor commands, if that doesn't
45959         affect efficiency.
45960         Check for overflow (and try to repair) after each probe
45961         rather than checking only at the very end.  This avoids some bugs
45962         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
45963         does not equal GMT offset at maximum time).
45964         Use integer to check for overflow rather than floating point; this
45965         is more portable to non-IEEE hosts, and is a tad faster.
45966         When we detect that we are oscillating between two values,
45967         don't check whether tm_isdst has the requested value, since
45968         we already know the answer.  When tm_isdst has the wrong value,
45969         use a different heuristic to find the right one, based on the
45970         extreme values actually observed in practice in tz2003a,
45971         rather than the (overly optimistic) "previous 3 calendar quarters".
45972
45973         (not_equal_tm, print_tm, check_result): Use "const T" rather than
45974         "T const" to accommodate glibc style.
45975         (check_result): Use less-confusing report format.  "long" -> "long int.
45976         (main): Likewise.
45977         Don't loop if the iteration overflows time_t.
45978         Allow a negative step in the iteration.
45979
45980 2003-07-06  Karl Berry  <karl@gnu.org>
45981
45982         * config/depcomp: update from automake.
45983         * config/config.sub: update from prep.
45984
45985 2003-07-03  Karl Berry  <karl@gnu.org>
45986
45987         * config/config.guess: update from prep.
45988
45989 2003-07-01  Paul Eggert  <eggert@twinsun.com>
45990
45991         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
45992         xreadlink.c now includes it unconditionally.
45993
45994 2003-07-01  Paul Eggert  <eggert@twinsun.com>
45995
45996         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
45997         having it depend on HAVE_SYS_TYPES_H.
45998
45999 2003-07-01  Bruno Haible  <bruno@clisp.org>
46000
46001         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
46002         <sys/types.h> should be sufficient.
46003         Reported by Paul Eggert.
46004
46005 2003-06-26  Karl Berry  <karl@gnu.org>
46006
46007         * config/depcomp: update from automake.
46008
46009 2003-06-26  Bruno Haible  <bruno@clisp.org>
46010
46011         * modules/human: Depend on module stdbool.
46012
46013 2003-06-25  Bruno Haible  <bruno@clisp.org>
46014
46015         * modules/readlink: New file.
46016         * modules/xreadlink: Depend on it.
46017         * MODULES.html.sh (func_all_modules): Add readlink.
46018
46019 2003-06-25  Bruno Haible  <bruno@clisp.org>
46020
46021         * m4/readlink.m4: New file.
46022
46023 2003-06-25  Bruno Haible  <bruno@clisp.org>
46024
46025         * lib/readlink.c: New file.
46026
46027 2003-06-22  Karl Berry  <karl@gnu.org>
46028
46029         * config/srclist.txt: update mkinstalldirs from automake.
46030         * config/mkinstalldirs: update.
46031
46032 2003-06-22  Bruno Haible  <bruno@clisp.org>
46033
46034         Portability to mingw32.
46035         * m4/ssize_t.m4: New file, from GNU gettext.
46036         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
46037         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
46038
46039 2003-06-22  Bruno Haible  <bruno@clisp.org>
46040
46041         * modules/safe-read: Add m4/ssize_t.m4.
46042         * modules/xreadlink: Add m4/ssize_t.m4.
46043
46044 2003-06-20  Bruno Haible  <bruno@clisp.org>
46045
46046         Assume C89, so PARAMS isn't needed.
46047         * lib/unicodeio.h (PARAMS): Remove.
46048         * lib/unicodeio.c: Don't use PARAMS.
46049
46050 2003-06-18  Karl Berry  <karl@gnu.org>
46051
46052         * config/config.{guess,sub}: update from prep.
46053
46054 2003-06-18  Jim Meyering  <jim@meyering.net>
46055
46056         Merge changes from coreutils.
46057         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
46058         Remove explicit declarations of xmalloc and realloc.
46059         Include xalloc.h.
46060         (read_utmp): Remove anachronistic cast of xmalloc.
46061
46062 2003-06-17  Paul Eggert  <eggert@twinsun.com>
46063
46064         Assume C89, so PARAMS isn't needed.
46065         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
46066         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
46067         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
46068         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
46069         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
46070         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
46071         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
46072         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
46073         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
46074         lib/xstrtod.h, lib/xstrtol.h: Likewise.
46075         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
46076         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
46077         no longer needed. Anyway, config.h should always be included before any
46078         other file.
46079
46080 2003-06-11  Simon Josefsson  <jas@extundo.com>
46081
46082         * modules/sysexits: New file.
46083         * MODULES.html.sh (func_all_modules): Add sysexits.
46084
46085 2003-06-11  Simon Josefsson  <jas@extundo.com>
46086
46087         * lib/sysexit_.h: New file.
46088
46089 2003-06-11  Derek Price  <derek@ximbiot.com>
46090
46091         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
46092         necessary.
46093
46094 2003-06-11  Bruno Haible  <bruno@clisp.org>
46095
46096         * m4/sysexits.m4: New file.
46097
46098 2003-06-10  Simon Josefsson  <jas@extundo.com>
46099
46100         * lib/argp.h: New file, from glibc.
46101         * lib/argp-ba.c: New file, from glibc.
46102         * lib/argp-eexst.c: New file, from glibc.
46103         * lib/argp-fmtstream.c: New file, from glibc.
46104         * lib/argp-fmtstream.h: New file, from glibc.
46105         * lib/argp-fs-xinl.c: New file, from glibc.
46106         * lib/argp-help.c: New file, from glibc.
46107         * lib/argp-namefrob.h: New file, from glibc.
46108         * lib/argp-parse.c: New file, from glibc.
46109         * lib/argp-pv.c: New file, from glibc.
46110         * lib/argp-pvh.c: New file, from glibc.
46111         * lib/argp-xinl.c: New file, from glibc.
46112
46113 2003-06-10  Simon Josefsson  <jas@extundo.com>
46114
46115         * modules/strchrnul: New file.
46116
46117 2003-06-10  Simon Josefsson  <jas@extundo.com>
46118
46119         * modules/argp: New file.
46120
46121 2003-06-10  Simon Josefsson  <jas@extundo.com>
46122
46123         * m4/strchrnul.m4: New file.
46124
46125 2003-06-10  Simon Josefsson  <jas@extundo.com>
46126
46127         * lib/strchrnul.h: New file.
46128         * lib/strchrnul.c: New file.
46129
46130 2003-06-10  Bruno Haible  <bruno@clisp.org>
46131
46132         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
46133
46134 2003-06-07  Karl Berry  <karl@gnu.org>
46135
46136         * config/config.{guess,sub}: update from prep.
46137
46138 2003-06-07  Jim Meyering  <jim@meyering.net>
46139
46140         * modules/strtod: Use $(...) notation, not @...@ for
46141         AC_REPLACE'd variables.
46142         * modules/localcharset: Likewise.
46143
46144 2003-06-07  Jim Meyering  <jim@meyering.net>
46145
46146         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
46147         in place of my name in the copyright comment.
46148         Remove definition and uses of __P.
46149
46150         From coreutils.
46151         * lib/stat.c: Don't declare xmalloc explicitly.
46152         Instead, include "xalloc.h".
46153         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
46154         xrealloc, and xcalloc return values.
46155         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
46156         Improve comment.
46157         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
46158
46159 2003-06-07  Bruno Haible  <bruno@clisp.org>
46160
46161         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
46162         avoid AC_CONFIG_LINKS.
46163         * modules/fnmatch (Makefile.am): Use explicit creation rule for
46164         fnmatch.h, to avoid AC_CONFIG_LINKS.
46165         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
46166
46167 2003-06-07  Bruno Haible  <bruno@clisp.org>
46168
46169         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
46170         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
46171         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
46172         directory.
46173         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
46174         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
46175         directory.
46176
46177 2003-06-06  Jim Meyering  <jim@meyering.net>
46178
46179         Merge from coreutils.
46180         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
46181         Consolidate declarations and initializations of *_base* locals.
46182
46183         Merge from coreutils.
46184         This avoids a core dump on systems without GNU putenv,
46185         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
46186         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
46187         (unsetenv): New static function, from GNU libc.
46188         (rpl_putenv): Use it.
46189
46190         * lib/modechange.c: Remove trailing blanks.
46191
46192         Merge from coreutils.
46193         * lib/fsusage.c: Remove declaration of statfs.
46194         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
46195
46196         * lib/posixtm.c: Include <stdbool.h> unconditionally.
46197
46198 2003-06-06  Jim Meyering  <jim@meyering.net>
46199
46200         * lib/stdbool_.h: Renamed from stdbool.h.in.
46201
46202 2003-06-06  Jim Meyering  <jim@meyering.net>
46203             Bruno Haible  <bruno@clisp.org>
46204
46205         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
46206         Adjust Makefile.am snippet not to redirect directly to target.
46207         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
46208
46209 2003-06-05  Paul Eggert  <eggert@twinsun.com>
46210
46211         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
46212         mismatch, look in future quarters as well as past.  This fixes a
46213         bug when processing fall-backwards gaps immediately after a long
46214         period of daylight-saving time.
46215
46216         * lib/mktime.c: Assume freestanding C89 or better.
46217         (HAVE_LIMITS_H): Remove.  Assume it's 1.
46218         (__P): Remove; not used.
46219         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
46220         (mktime, not_equal_tm, print_tm, check_result,
46221         main): Use prototypes.  Use const * where appropriate.
46222         (main): Fix typo in testing code that uncovered by above changes.
46223         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
46224
46225 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46226
46227         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
46228         locale.h, localeconv.  This merges changes from coreutils.
46229
46230         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
46231         It can be removed after the next Autoconf is released.
46232         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
46233         needed.
46234
46235 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46236
46237         * lib/mktime.c: Fix Debian bug 177940
46238         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
46239         (localtime_offset): Now long int, not time_t, because we want it
46240         to be guaranteed to be signed.  All uses changed.
46241         (__mktime_internal): If overflow would occur when adding offset,
46242         don't add it.
46243
46244         Merge 'human' changes from coreutils.  Rewrite to support
46245         locale-specific notations like thousands separators.
46246         * lib/human.c: Simplify authorship notice.
46247         Include human.h immediately after config.h.
46248         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
46249         <limits.h>: Do not include, since human.h does.
46250         (SIZE_MAX, UINTMAX_MAX): New macros.
46251         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
46252         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
46253         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
46254         (power_letter): Renamed from suffixes.
46255         (generate_suffix_backwards): Remove.
46256         (adjust_value): Now takes int style (because of human.h changes)
46257         and long double value (for greater precision on some platforms).
46258         (group_number): New function.
46259         (human_readable): Use it.  Use integer options, not enum.
46260         Put the options before the sizes in the arg list.
46261         Support all the new options.
46262         The old human_readable function has been removed;
46263         use inttostr.h instead.
46264         (human_readable, default_block_size, humblock):
46265         Use uintmax_t, not int, for block sizes.
46266         (human_readable_inexact, block_size_types): Remove.
46267         (block_size_opts): New constant.
46268         (human_options): Renamed from human_block_size, with new signature
46269         that allows block sizes up to UINTMAX_MAX.  All callers changed.
46270         * lib/human.h: Add copyright and authorship notice.
46271         Include <limits.h> and <stdbool.h> unconditionally.
46272         (PARAMS): Remove.  All uses removed.
46273         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
46274         (enum human_inexact_style): Remove tag; now a nameless enum.
46275         (human_floor, human_ceiling, human_round_to_even): Now have
46276         values 2, 0, 1 rather than -1, 1, 0.
46277         (human_group_digits, human_suppress_point_zero, human_autoscale,
46278         human_base_1024, human_SI, human_B): New constants.
46279         (human_readable_inexact, human_block_size): Remove.
46280         (human_readable): Size args are now uintmax_t, not int.
46281         (human_options): New decl.
46282
46283         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
46284         unnecessary now that we assume C89 or better.  This change
46285         imported from coreutils.
46286
46287         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
46288         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
46289         in the 2003-05-30 sync from glibc.
46290
46291         .h files should stand alone, but we shouldn't include <sys/types.h>
46292         if we can get away with just <stddef.h>.
46293
46294         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
46295         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
46296         rather than <sys/types.h>, as we merely need size_t.
46297         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
46298         to get size_t.
46299         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
46300         Include <stdio.h>, to get FILE.
46301         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
46302         memcasecmp.h has included <stddef.h> and all we need is size_t.
46303         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
46304         our interface, instead of including <sys/types.h>
46305
46306 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46307
46308         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
46309         now, as glibc mktime is buggy on non-glibc systems.
46310
46311 2003-06-03  Karl Berry  <karl@gnu.org>
46312
46313         * config/config.sub: update from prep.
46314
46315 2003-06-02  Paul Eggert  <eggert@twinsun.com>
46316
46317         [from coreutils]
46318         Fix some minor time-related bugs with POSIX time arguments.
46319         Some valid time stamps were being rejected (notably -1, and
46320         time stamps before 1900 on 64-bit hosts).  And some invalid
46321         time stamps were being accepted, e.g. September 31.
46322
46323         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
46324         that we can return (time_t) -1 successfully.
46325         * lib/posixtm.c: Likewise.
46326         [HAVE_STDBOOL_H]: Include <stdbool.h>.
46327         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
46328         (t): Remove static var.
46329         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
46330         of static var.  All uses changed.
46331         (year): Do not reject years before 1900; they can occur with
46332         64-bit time_t.
46333         (posix_time_parse): Do not check for out-of-range components;
46334         that is now the caller's responsibility, since our checks were
46335         only approximations.
46336         (posixtime): Use mktime to check for out-of-range components,
46337         since it knows them exactly.
46338         If mktime returns (time_t) -1, check whether an error actually occurred
46339         by invoking localtime on -1.
46340         (main) [TEST_POSIXTIME]: Check for input data errors, and report
46341         posixtime failures better.
46342         Improve the test data (in comments only).
46343
46344 2003-06-02  Karl Berry  <karl@gnu.org>
46345
46346         * config/mkinstalldirs (version): new variable.
46347         (--version): new option.
46348         (usage): improve message.
46349
46350 2003-05-30  Karl Berry  <karl@gnu.org>
46351
46352         * lib/mktime.c: update from libc.
46353
46354 2003-05-30  Bruno Haible  <bruno@clisp.org>
46355
46356         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
46357         * config/config.rpath: Upgrade to gettext-0.12.1.
46358
46359 2003-05-30  Bruno Haible  <bruno@clisp.org>
46360
46361         * m4/gettext.m4: Upgrade to gettext-0.12.1.
46362         * m4/nls.m4: New file, from gettext-0.12.1.
46363         * m4/po.m4: New file, from gettext-0.12.1.
46364         * m4/progtest.m4: Upgrade to gettext-0.12.1.
46365
46366 2003-05-30  Bruno Haible  <bruno@clisp.org>
46367
46368         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
46369         * lib/localcharset.h: Likewise.
46370         * lib/localcharset.c: Likewise.
46371
46372 2003-05-29  Karl Berry  <karl@gnu.org>
46373
46374         * config/config.rpath: update from gettext.
46375
46376 2003-05-28  Paul Eggert  <eggert@twinsun.com>
46377
46378         Assume the headers required for C89 freestanding compilers.
46379         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
46380         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
46381         * m4/human.m4 (gl_HUMAN): Likewise.
46382         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
46383         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
46384         * m4/userspec.m4 (gl_USERSPEC): Likewise.
46385         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
46386         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46387         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
46388
46389 2003-05-28  Paul Eggert  <eggert@twinsun.com>
46390
46391         Assume the headers required for C89 freestanding compilers.
46392         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
46393         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
46394         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
46395         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
46396         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
46397         define, since <limits.h> is guaranteed to do that.
46398         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
46399         * lib/exclude.c: Include <stdbool.h> unconditionally.
46400         * lib/tempname.c: Include <stddef.h> unconditionally.
46401         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
46402         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
46403         <stddef.h> does that.
46404         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
46405         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
46406         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
46407         needed.
46408         * lib/xstrtol.c: Likewise.
46409         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
46410         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
46411
46412         * lib/addext.c (addext): Use assignment rather than cast, to avoid
46413         warnings on some platforms.
46414
46415         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
46416         arbitrarily.
46417
46418 2003-05-26  Jim Meyering  <jim@meyering.net>
46419
46420         Merge in a change from coreutils:
46421         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
46422         that is guaranteed to be `no'.  Use `no_such_member' to indicate
46423         that condition, rather than `-1' which is slightly misleading.
46424         Change the name of the cache variable to have the gl_ prefix.
46425         Prompted by a patch from Richard Dawe for DJGPP.
46426
46427 2003-05-24  Karl Berry  <karl@gnu.org>
46428
46429         * config/config.guess: update from prep.
46430
46431 2003-05-22  Karl Berry  <karl@gnu.org>
46432
46433         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
46434
46435 2003-05-20  Karl Berry  <karl@gnu.org>
46436
46437         * config/config.guess: update from prep.
46438
46439 2003-05-18  Karl Berry  <karl@gnu.org>
46440
46441         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
46442         might actually be set by the user.
46443
46444         * config/depcomp, install-sh, mdate-sh: update from automake.
46445
46446 2003-05-17  Bruno Haible  <bruno@clisp.org>
46447
46448         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
46449         invalid expansion for AC_EGREP_CPP.
46450         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
46451         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
46452         Suggested by Akim Demaille <akim@epita.fr> in
46453         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
46454
46455 2003-05-12  Jim Meyering  <jim@meyering.net>
46456
46457         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
46458         the space-padded-by-default conversion specifiers, %e, %k, %l.
46459
46460 2003-05-12  Bruno Haible  <bruno@clisp.org>
46461
46462         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
46463         the string is longer than 4 KB.
46464
46465 2003-05-11  Karl Berry  <karl@gnu.org>
46466
46467         * config/config.{guess,sub}: update from prep.
46468
46469 2003-05-09  Bruno Haible  <bruno@clisp.org>
46470
46471         * modules/error: Add m4/strerror_r.m4 to file list.
46472
46473 2003-05-03  Bruno Haible  <bruno@clisp.org>
46474
46475         Upgrade to Unicode-4.0.
46476         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
46477         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
46478         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
46479         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
46480         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
46481         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
46482         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
46483         Change width of U+E0100..U+E01EF from 1 to 0.
46484
46485 2003-04-25  Jim Meyering  <jim@meyering.net>
46486
46487         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
46488         of type size_t, not int.
46489
46490 2003-04-25  Bruno Haible  <bruno@clisp.org>
46491
46492         * lib/copy-file.c: Include <stddef.h>, for size_t.
46493
46494 2003-04-21  Paul Eggert  <eggert@twinsun.com>
46495
46496         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
46497         code which expansion is under static control.  Patch imported from
46498         Akim Demaille's patch to Bison; see
46499         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
46500
46501 2003-04-14  Bruno Haible  <bruno@clisp.org>
46502
46503         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
46504
46505 2003-04-11  Jim Meyering  <jim@meyering.net>
46506
46507         Merge changes from Coreutils.
46508
46509         2003-03-22  Jim Meyering  <jim@meyering.net>
46510
46511         * lib/strftime.c (widen): Cast alloca return value to proper type.
46512
46513         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
46514
46515         From GNU libc.
46516         * lib/strftime.c (my_strftime): Handle very large width
46517         specifications for numeric values correctly.  Improve checks for
46518         overflow.
46519
46520         2003-01-19  Jim Meyering  <jim@meyering.net>
46521
46522         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
46523         definitions.
46524         (nl_get_alt_digit) [! defined my_strftime]: Define.
46525         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
46526         _nl_get_alt_digit and _nl_get_walt_digit.
46527
46528         * lib/strftime.c (my_strftime): Merge in locale-related changes from
46529         libc. These changes have no effect outside of _LIBC.
46530
46531 2003-04-10  Bruno Haible  <bruno@clisp.org>
46532
46533         * modules/findprog: New file.
46534         * MODULES.html.sh (func_all_modules): Add it.
46535
46536 2003-04-10  Bruno Haible  <bruno@clisp.org>
46537
46538         * m4/findprog.m4: New file.
46539         * m4/eaccess.m4: New file.
46540
46541 2003-04-10  Bruno Haible  <bruno@clisp.org>
46542
46543         * lib/findprog.h: New file, from GNU gettext.
46544         * lib/findprog.c: New file, from GNU gettext.
46545
46546 2003-04-05  Jim Meyering  <jim@meyering.net>
46547
46548         Merge changes from Coreutils.
46549
46550         * lib/exclude.h (PARAMS): Remove definition and uses.
46551         * lib/exclude.c: Remove uses of `PARAMS'.
46552
46553         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
46554         Add test-cases for DOS filenames. Declare program_name.
46555         (main): Set up program_name.  Patch by Rich Dawe.
46556
46557         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
46558         error from mntctl.
46559         Use mntctl's return value to drive the entry-processing loop, since
46560         we can't rely on the value of the vmt_length member in the last
46561         entry.  On some systems doing so could result in exhausting
46562         virtual memory.  Based in part on a patch from Mike Jetzer.
46563
46564 2003-04-04  Bruno Haible  <bruno@clisp.org>
46565
46566         * modules/linebreak: New file.
46567         * MODULES.html.sh (func_all_modules): Add it.
46568
46569 2003-04-04  Bruno Haible  <bruno@clisp.org>
46570
46571         * m4/linebreak.m4: New file.
46572
46573 2003-04-04  Bruno Haible  <bruno@clisp.org>
46574
46575         * lib/linebreak.h: New file, from GNU gettext.
46576         * lib/linebreak.c: New file, from GNU gettext with slight
46577         modifications.
46578         * lib/lbrkprop.h: New file, from GNU gettext.
46579
46580 2003-04-03  Bruno Haible  <bruno@clisp.org>
46581
46582         * modules/utf8-ucs4: New file.
46583         * modules/utf16-ucs4: New file.
46584         * modules/ucs4-utf8: New file.
46585         * modules/ucs4-utf16: New file.
46586         * MODULES.html.sh (func_all_modules): Add them.
46587
46588 2003-04-03  Bruno Haible  <bruno@clisp.org>
46589
46590         * m4/utf-ucs4.m4: New file.
46591         * m4/ucs4-utf.m4: New file.
46592
46593 2003-04-03  Bruno Haible  <bruno@clisp.org>
46594
46595         * lib/utf8-ucs4.h: New file, from GNU gettext.
46596         * lib/utf16-ucs4.h: New file, from GNU gettext.
46597         * lib/ucs4-utf8.h: New file, from GNU gettext.
46598         * lib/ucs4-utf16.h: New file, from GNU gettext.
46599
46600 2003-04-02  Bruno Haible  <bruno@clisp.org>
46601
46602         * modules/binary-io: New file.
46603         * MODULES.html.sh (func_all_modules): Add it.
46604
46605 2003-04-02  Bruno Haible  <bruno@clisp.org>
46606
46607         * lib/binary-io.h: New file, from GNU gettext.
46608
46609 2003-04-01  Bruno Haible  <bruno@clisp.org>
46610
46611         * modules/pathname: New file.
46612         * MODULES.html.sh (func_all_modules): Add it.
46613
46614 2003-04-01  Bruno Haible  <bruno@clisp.org>
46615
46616         * lib/pathname.h: New file, from GNU gettext.
46617         * lib/concatpath.c: New file, from GNU gettext.
46618
46619 2003-03-30  Bruno Haible  <bruno@clisp.org>
46620
46621         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
46622
46623 2003-03-30  Bruno Haible  <bruno@clisp.org>
46624
46625         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
46626         function chown() doesn't exist.
46627
46628 2003-03-28  Bruno Haible  <bruno@clisp.org>
46629
46630         * modules/copy-file: New file.
46631         * MODULES.html.sh (func_all_modules): Add it.
46632
46633 2003-03-28  Bruno Haible  <bruno@clisp.org>
46634
46635         * m4/copy-file.m4: New file.
46636
46637 2003-03-28  Bruno Haible  <bruno@clisp.org>
46638
46639         * lib/copy-file.h: New file, from GNU gettext.
46640         * lib/copy-file.c: New file, from GNU gettext.
46641
46642 2003-03-18  Jim Meyering  <jim@meyering.net>
46643
46644         * lib/quote.c (quote_n): Fix typo in comment.
46645
46646 2003-03-18  Bruno Haible  <bruno@clisp.org>
46647
46648         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
46649         checking.
46650         * m4/onceonly_2_57.m4: Likewise.
46651
46652 2003-03-17  Bruno Haible  <bruno@clisp.org>
46653
46654         * m4/onceonly.m4: Require autoconf 2.54 or newer.
46655         (m4_quote): Remove macro.
46656         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
46657
46658 2003-03-14  Jim Meyering  <jim@meyering.net>
46659
46660         Merge changes from Coreutils.
46661         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
46662         to be const, in order to avoid warnings.
46663         (obstack_room): Likewise.
46664         (obstack_empty_p): Likewise.
46665
46666 2003-03-14  Bruno Haible  <bruno@clisp.org>
46667
46668         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
46669         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
46670
46671 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46672
46673         Merge changes from Bison.
46674         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
46675         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
46676         when compiling Bison 1.875's `bitset bset = obstack_alloc
46677         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
46678         * lib/hash.c: Include <stdbool.h> unconditionally.
46679
46680 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46681
46682         * m4/onceonly.m4 (m4_quote): New macro.
46683         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
46684         Quote AC_FOREACH variable-expansions properly.
46685
46686 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46687
46688         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
46689
46690 2003-03-09  Paul Eggert  <eggert@twinsun.com>
46691
46692         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
46693         Reported by Bruce Becker; see:
46694         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
46695
46696 2003-03-03  Paul Eggert  <eggert@twinsun.com>
46697             Bruno Haible  <bruno@clisp.org>
46698
46699         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
46700         Reported by John Hughes, see
46701         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
46702
46703 2003-02-20  Bruno Haible  <bruno@clisp.org>
46704
46705         * MODULES.html.sh (func_all_modules): Add poll.
46706
46707 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46708
46709         * modules/poll: New file.
46710
46711 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46712
46713         * lib/poll_.h: New file.
46714         * lib/poll.c: New file.
46715
46716 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46717
46718         * m4/poll.m4: New file.
46719
46720 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46721
46722         * modules/mathl: New file.
46723
46724 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46725
46726         * lib/mathl.h: New file.
46727         * lib/acosl.c: New file.
46728         * lib/asinl.c: New file.
46729         * lib/atanl.c: New file.
46730         * lib/ceill.c: New file.
46731         * lib/cosl.c: New file.
46732         * lib/expl.c: New file.
46733         * lib/floorl.c: New file.
46734         * lib/frexpl.c: New file.
46735         * lib/ldexpl.c: New file.
46736         * lib/logl.c: New file.
46737         * lib/sincosl.c: New file.
46738         * lib/sinl.c: New file.
46739         * lib/sqrtl.c: New file.
46740         * lib/tanl.c: New file.
46741         * lib/trigl.c: New file.
46742         * lib/trigl.h: New file.
46743
46744 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46745
46746         * m4/mathl.m4: New file.
46747
46748 2003-02-18  Bruno Haible  <bruno@clisp.org>
46749
46750         * MODULES.html.sh (func_all_modules): Add mathl.
46751
46752 2003-02-17  Bruno Haible  <bruno@clisp.org>
46753
46754         * modules/mkdtemp: New module.
46755         * MODULES.html.sh (func_all_modules): Add it.
46756
46757 2003-02-17  Bruno Haible  <bruno@clisp.org>
46758
46759         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
46760
46761 2003-02-17  Bruno Haible  <bruno@clisp.org>
46762
46763         * lib/mkdtemp.h: New file, from GNU gettext.
46764         * lib/mkdtemp.c: New file, from GNU gettext.
46765
46766 2003-02-02  Jim Meyering  <jim@meyering.net>
46767
46768         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
46769         e.g. glibc-2.2.93.
46770
46771 2003-01-31  Bruno Haible  <bruno@clisp.org>
46772
46773         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
46774         'rpl_rename'.
46775         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
46776         'rpl_strnlen'.
46777         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
46778         'rpl_strtod'.
46779         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
46780         'rpl_utime'.
46781
46782 2003-01-31  Bruno Haible  <bruno@clisp.org>
46783
46784         * lib/rename.c: #undef rename before defining rpl_rename.
46785         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
46786
46787 2003-01-30  Bruno Haible  <bruno@clisp.org>
46788
46789         * modules/vasnprintf, modules/vasprintf: New modules.
46790         * MODULES.html.sh (func_all_modules): Add them.
46791
46792 2003-01-30  Bruno Haible  <bruno@clisp.org>
46793
46794         * m4/signed.m4: New file, from GNU gettext.
46795         * m4/longdouble.m4: New file, from GNU gettext.
46796         * m4/wchar_t.m4: New file, from GNU gettext.
46797         * m4/wint_t.m4: New file, from GNU gettext.
46798         * m4/vasnprintf.m4: New file.
46799         * m4/vasprintf.m4: New file.
46800
46801 2003-01-30  Bruno Haible  <bruno@clisp.org>
46802
46803         * lib/printf-args.h: New file, from GNU gettext.
46804         * lib/printf-args.c: New file, from GNU gettext.
46805         * lib/printf-parse.h: New file, from GNU gettext.
46806         * lib/printf-parse.c: New file, from GNU gettext.
46807         * lib/vasnprintf.h: New file, from GNU gettext.
46808         * lib/vasnprintf.c: New file, from GNU gettext.
46809         * lib/asnprintf.c: New file, from GNU gettext.
46810         * lib/vasprintf.h: New file, from GNU gettext with modifications.
46811         * lib/vasprintf.c: New file, from GNU gettext.
46812         * lib/asprintf.c: New file, from GNU gettext.
46813
46814 2003-01-29  Bruno Haible  <bruno@clisp.org>
46815
46816         * modules/stpncpy: New module.
46817         * MODULES.html.sh (func_all_modules): Add it.
46818
46819 2003-01-29  Bruno Haible  <bruno@clisp.org>
46820
46821         * m4/stpncpy.m4: New file.
46822
46823 2003-01-29  Bruno Haible  <bruno@clisp.org>
46824
46825         * lib/stpncpy.h: New file, from GNU gettext with modifications.
46826         * lib/stpncpy.c: New file, from GNU gettext with modifications.
46827
46828 2003-01-28  Bruno Haible  <bruno@clisp.org>
46829
46830         * modules/c-ctype: New module.
46831         * MODULES.html.sh (func_all_modules): Add it.
46832
46833 2003-01-28  Bruno Haible  <bruno@clisp.org>
46834
46835         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
46836         Paul Eggert.
46837         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
46838         Paul Eggert.
46839
46840 2003-01-27  Bruno Haible  <bruno@clisp.org>
46841
46842         * modules/xsetenv: New module.
46843         * MODULES.html.sh (func_all_modules): Add it.
46844
46845 2003-01-27  Bruno Haible  <bruno@clisp.org>
46846
46847         * lib/xsetenv.h: New file, from GNU gettext.
46848         * lib/xsetenv.c: New file, from GNU gettext.
46849
46850 2003-01-23  Jim Meyering  <jim@meyering.net>
46851
46852         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
46853         from working on systems without dirfd (at least Irix and OSF1/Tru64).
46854
46855 2003-01-23  Bruno Haible  <bruno@clisp.org>
46856
46857         * modules/minmax: New module.
46858         * MODULES.html.sh (func_all_modules): Add it.
46859
46860 2003-01-23  Bruno Haible  <bruno@clisp.org>
46861
46862         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
46863         Eggert.
46864
46865 2003-01-22  Bruno Haible  <bruno@clisp.org>
46866
46867         * modules/exit: New module.
46868         * MODULES.html.sh (func_all_modules): Add it.
46869
46870 2003-01-22  Bruno Haible  <bruno@clisp.org>
46871
46872         * lib/exit.h: New file, from GNU gettext.
46873
46874 2003-01-19  Bruno Haible  <bruno@clisp.org>
46875
46876         * gnulib-tool: Recognize option --extract-maintainer.
46877         (func_get_maintainer): New function.
46878         * modules/*: Add Maintainer entry.
46879
46880 2003-01-16  Jim Meyering  <jim@meyering.net>
46881
46882         * m4/regex.m4: The `regex' struct is both input and output.
46883         Initialize it before each use.  Patch by Tim Waugh.
46884
46885 2003-01-16  Bruno Haible  <bruno@clisp.org>
46886
46887         * MODULES.html.sh: Add a table of contents. Add the module name as
46888         leftmost column. Add hyperlinks.
46889
46890 2003-01-15  Bruno Haible  <bruno@clisp.org>
46891
46892         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
46893
46894 2003-01-15  Bruno Haible  <bruno@clisp.org>
46895
46896         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
46897         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
46898         suffix.
46899
46900 2003-01-15  Bruno Haible  <bruno@clisp.org>
46901
46902         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
46903
46904 2003-01-15  Bruno Haible  <bruno@clisp.org>
46905
46906         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
46907         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
46908
46909 2003-01-14  Jim Meyering  <jim@meyering.net>
46910
46911         * lib/same.c (same_name): Tweak a comment.
46912
46913 2003-01-14  Bruno Haible  <bruno@clisp.org>
46914
46915         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
46916         when a string comparison is sufficient.
46917
46918 2003-01-14  Bruno Haible  <bruno@clisp.org>
46919
46920         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
46921         'unsigned int'.
46922
46923 2003-01-14  Bruno Haible  <bruno@clisp.org>
46924
46925         * lib/hash-pjw.c: Add comment about low quality of this function.
46926
46927 2003-01-13  Bruno Haible  <bruno@clisp.org>
46928
46929         * modules/stpcpy: Distribute lib/stpcpy.h.
46930         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
46931
46932 2003-01-13  Bruno Haible  <bruno@clisp.org>
46933
46934         * modules/*: Add a description.
46935         * modules/strpbrk: Fix Makefile.am snippet.
46936         * modules/strtoimax: Fix dependencies.
46937         * modules/strtoumax: Likewise.
46938
46939 2003-01-13  Bruno Haible  <bruno@clisp.org>
46940
46941         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
46942         * modules/alloca (Makefile.am): All object files depend on alloca.h.
46943         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
46944
46945 2003-01-13  Bruno Haible  <bruno@clisp.org>
46946
46947         * gnulib-tool (func_create_testdir): Store config/* files in the main
46948         directory.
46949         * config.rpath: Move to ...
46950         * config/config.rpath: ... here.
46951         * modules/gettext: Contains config/config.rpath, not config.rpath.
46952         * modules/iconv: Likewise.
46953
46954 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46955
46956         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46957         to avoid collisions with libcurses and libreadline.
46958
46959         * m4/getstr.m4: Remove.
46960         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
46961
46962 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46963
46964         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46965         to avoid collisions with libcurses and libreadline.
46966
46967         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
46968         * lib/getstr.h, getstr.c: Remove.
46969         * lib/getline.c: Include "getline.h", to check interface.
46970         Move body of old getstr.c here: this defines MIN_CHUNK and
46971         declares getdelim2, which is renamed from getstr.
46972         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
46973
46974         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
46975         All uses changed.
46976         * lib/linebuffer.h: Likewise.
46977         (readline): Remove backward-compatibility macro.
46978
46979 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46980
46981         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46982         to avoid collisions with libcurses and libreadline.
46983         * getstr: Remove.
46984         * MODULES.html.sh: Remove getstr.
46985         * modules/getline: Depend on unlocked-io, not getstr.
46986
46987 2003-01-12  Jim Meyering  <jim@meyering.net>
46988
46989         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
46990
46991 2003-01-10  Bruno Haible  <bruno@clisp.org>
46992
46993         * modules/alloca: Change Makefile.am requirements. Simplify Include
46994         requirements. Add lib/alloca_.h to file list.
46995
46996 2003-01-10  Bruno Haible  <bruno@clisp.org>
46997
46998         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
46999
47000 2003-01-10  Bruno Haible  <bruno@clisp.org>
47001
47002         * lib/alloca_.h: New file.
47003         * lib/getdate.y: Unconditionally include alloca.h.
47004         * lib/makepath.c: Likewise.
47005         * lib/setenv.c: Likewise.
47006         * lib/userspec.c: Likewise.
47007
47008 2003-01-09  Karl Berry  <karl@gnu.org>
47009
47010         * MODULES.html.sh: include `dirname $0` in PATH, to find
47011         gnulib-tool.
47012
47013 2003-01-09  Bruno Haible  <bruno@clisp.org>
47014
47015         * modules/stdbool: Change configure.ac, Makefile.am requirements.
47016         Simplify Include requirements. Add lib/stdbool.h.in to file list.
47017
47018 2003-01-09  Bruno Haible  <bruno@clisp.org>
47019
47020         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
47021
47022 2003-01-09  Bruno Haible  <bruno@clisp.org>
47023
47024         * lib/stdbool.h.in: New file.
47025
47026 2003-01-09  Bruno Haible  <bruno@clisp.org>
47027
47028         * gnulib-tool (func_all_modules): Ignore files ending in ~.
47029         * MODULES.html.sh: Likewise.
47030
47031 2003-01-08  Jim Meyering  <jim@meyering.net>
47032
47033         * lib/full-write.c: Undefine and define-away `const' after inclusion
47034         of errno.h, not before.  Suggestion from Bruno Haible.
47035
47036 2003-01-08  Bruno Haible  <bruno@clisp.org>
47037
47038         * modules/full-read: Depend on full-write.
47039
47040 2003-01-08  Bruno Haible  <bruno@clisp.org>
47041
47042         * lib/safe-read.c: Include specification header first, to ensure its
47043         selfcontainedness.
47044         * lib/full-write.c: Likewise.
47045
47046 2003-01-07  Jim Meyering  <jim@meyering.net>
47047
47048         * lib/full-write.c: Rework so that it may serve to define full_read,
47049         too.
47050         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
47051
47052 2003-01-07  Bruno Haible  <bruno@clisp.org>
47053
47054         * lib/strtoimax.c: Include <stdint.h> as an alternative to
47055         <inttypes.h>.
47056         * lib/xstrtol.h: Likewise.
47057         * lib/xstrtoimax.c: Likewise.
47058         * lib/xstrtoumax.c: Likewise.
47059         * lib/human.h: Likewise.
47060
47061         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
47062         on systems that have <inttypes.h> but not <stdint.h>.
47063
47064 2003-01-07  Bruno Haible  <bruno@clisp.org>
47065
47066         * MODULES.html.sh: Add copyright notice.
47067         (missed_files): Omit CVS directory entries.
47068         (func_module): Make it work with sed-3.02.
47069         * MODULES.txt: Remove file.
47070
47071 2003-01-06  Jim Meyering  <jim@meyering.net>
47072
47073         * lib/version-etc.c: Update year in translatable copyright string.
47074
47075 2003-01-03  Karl Berry  <karl@gnu.org>
47076
47077         * config/config.{guess,sub}: update from prep.
47078
47079 2003-01-02  Karl Berry  <karl@gnu.org>
47080
47081         * doc/COPYING.DOC: belatedly updated to 1.2.
47082
47083 2003-01-01  Karl Berry  <karl@gnu.org>
47084
47085         * gnulib-tool (func_verify_module): report module name $module in
47086         error message, not $1.
47087         * gnulib-tool (create-testdir): don't complain if destdir couldn't
47088         be created, only if it doesn't exist.
47089         * gnulib-tool (last_checkin_date): don't expand the $Date here.
47090
47091 2002-12-31  Paul Eggert  <eggert@twinsun.com>
47092
47093         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
47094
47095 2002-12-31  Paul Eggert  <eggert@twinsun.com>
47096
47097         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
47098         memcmp if strcoll doesn't work.
47099
47100 2002-12-31  Bruno Haible  <bruno@clisp.org>
47101
47102         * lib/utime.c (utime_null): No need to call ftruncate if the file was
47103         nonempty.
47104
47105 2002-12-31  Bruno Haible  <bruno@clisp.org>
47106
47107         * lib/memcoll.c (STRCOLL): New macro.
47108         (memcoll): Use it.
47109
47110 2002-12-31  Bruno Haible  <bruno@clisp.org>
47111
47112         * lib/localcharset.h: New file.
47113         * lib/localcharset.c: Include it.
47114         * lib/unicodeio.c: Likewise.
47115
47116 2002-12-31  Bruno Haible  <bruno@clisp.org>
47117
47118         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
47119         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
47120
47121 2002-12-31  Bruno Haible  <bruno@clisp.org>
47122
47123         * lib/getline.h: Include <stddef.h>, for size_t.
47124
47125         * lib/unicodeio.h: Include <stddef.h>, for size_t.
47126         * lib/unicodeio.c: Don't include <stddef.h>.
47127
47128 2002-12-31  Bruno Haible  <bruno@clisp.org>
47129
47130         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
47131         HAVE_TM_ZONE.
47132
47133 2002-12-24  Karl Berry  <karl@gnu.org>
47134
47135         * config/config.guess: update from prep.
47136
47137 2002-12-24  Bruno Haible  <bruno@clisp.org>
47138
47139         General infrasructure.
47140         * m4/README: Rewritten.
47141         * m4/onceonly.m4: New file.
47142         * m4/onceonly_2_57.m4: New file.
47143
47144         Module atexit.
47145         * m4/atexit.m4: New file.
47146
47147         Module strtod.
47148         * m4/strtod.m4: New file.
47149
47150         Module strtol.
47151         * m4/strtol.m4: New file.
47152
47153         Module strtoul.
47154         * m4/strtoul.m4: New file.
47155
47156         Module memchr.
47157         * m4/memchr.m4: New file.
47158
47159         Module memcmp.
47160         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
47161         (jm_FUNC_MEMCMP): Invoke it.
47162
47163         Module memcpy.
47164         * m4/memcpy.m4: New file.
47165
47166         Module memmove.
47167         * m4/memmove.m4: New file.
47168
47169         Module memset.
47170         * m4/memset.m4: New file.
47171
47172         Module strcspn.
47173         * m4/strcspn.m4: New file.
47174
47175         Module strpbrk.
47176         * m4/strpbrk.m4: New file.
47177
47178         Module strstr.
47179         * m4/strstr.m4: New file.
47180
47181         Module strerror.
47182         * m4/strerror.m4: New file.
47183
47184         Module mktime.
47185         * m4/mktime.m4: Renamed from jm-mktime.m4.
47186         (gl_PREREQ_MKTIME): New macro.
47187         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
47188
47189         Module malloc.
47190         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
47191         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
47192         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
47193
47194         Module realloc.
47195         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
47196         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
47197         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
47198
47199         Module strftime.
47200         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
47201         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
47202         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
47203         gl_TM_GMTOFF.
47204         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
47205
47206         Module xalloc.
47207         * m4/xalloc.m4: New file.
47208
47209         Module alloca.
47210         * m4/alloca.m4: New file.
47211
47212         Module putenv.
47213         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
47214         (jm_FUNC_PUTENV): Invoke it.
47215
47216         Module setenv.
47217         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
47218         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
47219         when invoked twice.
47220         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
47221         gt_FUNC_SETENV.
47222
47223         Module memrchr.
47224         * m4/memrchr.m4: New file.
47225
47226         Module stpcpy.
47227         * m4/stpcpy.m4: New file.
47228
47229         Module strcase.
47230         * m4/strcase.m4: New file.
47231
47232         Module strdup.
47233         * m4/strdup.m4: New file.
47234
47235         Module strnlen.
47236         * m4/strnlen.m4: New file.
47237
47238         Module strndup.
47239         * m4/strndup.m4: New file.
47240
47241         Module xstrtod.
47242         * m4/xstrtod.m4: New file.
47243
47244         Module xstrtol.
47245         * m4/xstrtol.m4: New file.
47246
47247         Module getdate.
47248         * m4/getdate.m4: New file.
47249
47250         Module unlocked-io.
47251         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
47252         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
47253         * m4/jm-glibc-io.m4n: Remove file.
47254
47255         Module long-options.
47256         * m4/long-options.m4: New file.
47257
47258         Module md5.
47259         * m4/md5.m4: New file.
47260
47261         Module sha.
47262         * m4/sha.m4: New file.
47263
47264         Module getstr.
47265         * m4/getstr.m4: New file.
47266
47267         Module getline.
47268         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
47269         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
47270         <sys/types.h>, for size_t. Use the function name gnu_getline, not
47271         simply getline. Infoke gl_PREREQ_GETLINE.
47272
47273         Module obstack.
47274         * m4/obstack.m4: New file.
47275
47276         Module hash.
47277         * m4/hash.m4: New file.
47278
47279         Module readtokens.
47280         * m4/readtokens.m4: New file.
47281
47282         Module strverscmp.
47283         * m4/strverscmp.m4: New file.
47284
47285         Module stdbool.
47286         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
47287         OSF/1.
47288
47289         Module strtoll.
47290         * m4/strtoll.m4: New file.
47291
47292         Module strtoull.
47293         * m4/strtoull.m4: New file.
47294
47295         Module strtoimax.
47296         * m4/strtoimax.m4: New file.
47297
47298         Module strtoumax.
47299         * m4/strtoumax.m4: New file.
47300
47301         Module xstrtoimax.
47302         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
47303         jm_AC_PREREQ_XSTRTOIMAX.
47304         Moved the strtol prerequisites to strtol.m4.
47305         Moved the strtoll prerequisites to strtoll.m4.
47306         Moved the strtoimax prerequisites to strtoimax.m4.
47307
47308         Module xstrtoumax.
47309         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
47310         jm_AC_PREREQ_XSTRTOUMAX.
47311         Moved the strtoul prerequisites to strtoul.m4.
47312         Moved the strtoull prerequisites to strtoull.m4.
47313         Moved the strtoumax prerequisites to strtoumax.m4.
47314
47315         Module chown.
47316         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
47317         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
47318
47319         Module dup2.
47320         * m4/dup2.m4: New file.
47321
47322         Module ftruncate.
47323         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
47324         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
47325
47326         Module getgroups.
47327         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
47328         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
47329
47330         Module gettimeofday.
47331         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
47332         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
47333         gl_PREREQ_GETTIMEOFDAY.
47334
47335         Module mkdir.
47336         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
47337         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
47338
47339         Module mkstemp.
47340         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
47341         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
47342         jm_AC_TYPE_UINTMAX_T.
47343         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
47344
47345         Module stat.
47346         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
47347         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
47348
47349         Module lstat.
47350         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
47351         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
47352
47353         Module timespec.
47354         * m4/timespec.m4 (gl_TIMESPEC): New macro.
47355         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
47356         * m4/st_mtim.m4: Indentation.
47357
47358         Module nanosleep.
47359         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
47360         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
47361         gl_PREREQ_NANOSLEEP.
47362
47363         Module regex.
47364         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
47365         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
47366         (gl_REGEX): New macro.
47367
47368         Module rename.
47369         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
47370         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
47371
47372         Module rmdir.
47373         * m4/rmdir.m4: New file.
47374
47375         Module utime.
47376         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
47377         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
47378         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
47379
47380         Module dirname.
47381         * m4/dirname.m4: New file.
47382
47383         Module getopt.
47384         * m4/getopt.m4: New file.
47385
47386         Module unistd-safer.
47387         * m4/unistd-safer.m4: New file.
47388
47389         Module fnmatch.
47390         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
47391         declaration.
47392         (gl_PREREQ_FNMATCH_EXTRA): New macro.
47393         (gl_FUNC_FNMATCH_POSIX): New macro.
47394         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
47395         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
47396         simply fnmatch.
47397
47398         Module exclude.
47399         * m4/exclude.m4: New file.
47400
47401         Module human.
47402         * m4/human.m4: New file.
47403
47404         Module acl.
47405         * m4/acl.m4: Nop.
47406
47407         Module backupfile.
47408         * m4/backupfile.m4: New file.
47409         * m4/d-ino.m4: Indentation.
47410
47411         Module fsusage.
47412         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
47413         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
47414         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
47415
47416         Module dirfd.
47417         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
47418         requirements.
47419
47420         Module euidaccess.
47421         * m4/euidaccess.m4: New file.
47422
47423         Module file-type.
47424         * m4/file-type.m4: New file.
47425
47426         Module fileblocks.
47427         * m4/fileblocks.m4: New file.
47428
47429         Module filemode.
47430         * m4/filemode.m4: New file.
47431
47432         Module isdir.
47433         * m4/isdir.m4: New file.
47434
47435         Module lchown.
47436         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
47437         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
47438
47439         Module makepath.
47440         * m4/makepath.m4: New file.
47441
47442         Module modechange.
47443         * m4/modechange.m4: New file.
47444
47445         Module mountlist.
47446         * m4/mountlist.m4: New file.
47447         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
47448         Indentation.
47449
47450         Module path-concat.
47451         * m4/path-concat.m4: New file.
47452
47453         Module pathmax.
47454         * m4/pathmax.m4: New file.
47455
47456         Module same.
47457         * m4/same.m4: New file.
47458
47459         Module save-cwd.
47460         * m4/save-cwd.m4: New file.
47461
47462         Module savedir.
47463         * m4/savedir.m4: New file.
47464
47465         Module xgetcwd.
47466         * m4/xgetcwd.m4: New file.
47467         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
47468
47469         Module xreadlink.
47470         * m4/xreadlink.m4: New file.
47471
47472         Module safe-read.
47473         * m4/safe-read.m4: New file.
47474
47475         Module safe-write.
47476         * m4/safe-write.m4: New file.
47477
47478         Module closeout.
47479         * m4/closeout.m4: New file.
47480
47481         Module stdio-safer.
47482         * m4/stdio-safer.m4: New file.
47483
47484         Module getpass.
47485         * m4/getpass.m4: New file.
47486
47487         Module getugroups.
47488         * m4/getugroups.m4: New file.
47489
47490         Module group-member.
47491         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
47492         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
47493
47494         Module idcache.
47495         * m4/idcache.m4: New file.
47496
47497         Module userspec.
47498         * m4/userspec.m4: New file.
47499
47500         Module gettime.
47501         * m4/clock_time.m4: New file.
47502         * m4/gettime.m4: New file.
47503
47504         Module settime.
47505         * m4/settime.m4: New file.
47506
47507         Module posixtm.
47508         * m4/posixtm.m4: New file.
47509
47510         Module gethostname.
47511         * m4/gethostname.m4: New file.
47512
47513         Module canon-host.
47514         * m4/canon-host.m4: New file.
47515
47516         Module gettext.
47517         * m4/codeset.m4: New file, from gettext-0.11.5.
47518         * m4/gettext.m4: New file, from gettext-0.11.5.
47519         * m4/glibc21.m4: New file, from gettext-0.11.5.
47520         * m4/iconv.m4: New file, from gettext-0.11.5.
47521         * m4/intdiv0.m4: New file, from gettext-0.11.5.
47522         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
47523         * m4/inttypes.m4: New file, from gettext-0.11.5.
47524         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
47525         * m4/isc-posix.m4: New file, from gettext-0.11.5.
47526         * m4/lcmessage.m4: New file, from gettext-0.11.5.
47527         * m4/lib-ld.m4: New file, from gettext-0.11.5.
47528         * m4/lib-link.m4: New file, from gettext-0.11.5.
47529         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
47530         * m4/progtest.m4: New file, from gettext-0.11.5.
47531         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
47532         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
47533         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
47534
47535         Module localcharset.
47536         * m4/localcharset.m4: New file.
47537
47538         Module hard-locale.
47539         * m4/hard-locale.m4: New file.
47540
47541         Module mbswidth.
47542         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
47543         onceonly macros.
47544         * m4/mbrtowc.m4: Add comment.
47545
47546         Module memcasecmp.
47547         * m4/memcasecmp.m4: New file.
47548
47549         Module memcoll.
47550         * m4/memcoll.m4: New file.
47551
47552         Module unicodeio.
47553         * m4/unicodeio.m4: New file.
47554
47555         Module rpmatch.
47556         * m4/rpmatch.m4: New file.
47557
47558         Module yesno.
47559         * m4/yesno.m4: New file.
47560
47561         Module exitfail.
47562         * m4/exitfail.m4: New file.
47563
47564         Module c-stack.
47565         * m4/c-stack.m4 (gl_C_STACK): New macro.
47566         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
47567
47568         Module error.
47569         * m4/error.m4 (gl_ERROR): New macro.
47570         (jm_PREREQ_ERROR): Use onceonly macros.
47571
47572         Module fatal.
47573         * m4/fatal.m4: New file.
47574
47575         Module getloadavg.
47576         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
47577         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
47578
47579         Module getpagesize.
47580         * m4/getpagesize.m4: New file.
47581
47582         Module getusershell.
47583         * m4/getusershell.m4: New file.
47584
47585         Module physmem.
47586         * m4/physmem.m4: New file.
47587
47588         Module posixver.
47589         * m4/posixver.m4: New file.
47590
47591         Module quotearg.
47592         * m4/quotearg.m4: New file.
47593
47594         Module quote.
47595         * m4/quote.m4: New file.
47596
47597         Module readutmp.
47598         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
47599
47600         Module sig2str.
47601         * m4/sig2str.m4: New file.
47602
47603         Other.
47604         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
47605         ulonglong.m4.
47606         * m4/intmax_t.m4: New file.
47607         * m4/d-type.m4: Indentation.
47608         * m4/jm-macros.m4: Update.
47609         * m4/prereq.m4 (jm_PREREQ): Update.
47610         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
47611         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
47612         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
47613         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
47614         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
47615         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
47616         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
47617         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
47618         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
47619         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
47620         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
47621         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
47622         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
47623         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
47624         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
47625         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
47626         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
47627         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
47628         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
47629
47630 2002-12-24  Bruno Haible  <bruno@clisp.org>
47631
47632         * MODULES.txt: Update according to m4/ changes.
47633
47634         Module gettext.
47635         * config.rpath: New file, from gettext-0.11.5.
47636
47637         * modules/*: New module descriptions.
47638         * gnulib-tool: New file.
47639         * MODULES.html.sh: New file.
47640
47641 2002-12-21  Karl Berry  <karl@gnu.org>
47642
47643         * doc/fdl.texi: update to version 1.2.
47644
47645 2002-12-19  Karl Berry  <karl@gnu.org>
47646
47647         * config/config.guess: update from prep.
47648
47649 2002-12-18  Bruno Haible  <bruno@clisp.org>
47650
47651         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
47652         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
47653
47654 2002-12-17  Bruno Haible  <bruno@clisp.org>
47655
47656         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
47657         stdlib.h, string.h.
47658
47659 2002-12-17  Bruno Haible  <bruno@clisp.org>
47660
47661         * lib/canon-host.c (strdup): Remove unused declaration.
47662
47663         * lib/fsusage.c: Include full_read.h.
47664         (get_fs_usage): Use full_read instead of safe_read.
47665
47666         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
47667
47668 2002-12-12  Karl Berry  <karl@gnu.org>
47669
47670         * config/config.guess: update from prep.
47671
47672 2002-12-11  Bruno Haible  <bruno@clisp.org>
47673
47674         * m4/setenv.m4: New file, from gettext-0.11.5.
47675
47676 2002-12-11  Bruno Haible  <bruno@clisp.org>
47677
47678         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
47679         not unsetenv().
47680         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
47681         modifications:
47682
47683         2002-12-11  Bruno Haible  <bruno@clisp.org>
47684
47685                 * setenv.c (alloca): Fall back to malloc.
47686                 (freea): New macro.
47687                 (setenv): Use freea() to free memory allocated with alloca().
47688
47689         2002-11-13  Bruno Haible  <bruno@clisp.org>
47690
47691                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
47692                 function declarations.
47693                 * unsetenv.c (unsetenv): Likewise.
47694
47695         2002-03-04  Bruno Haible  <bruno@clisp.org>
47696
47697                 Portability to AIX 4.3.3.
47698                 * unsetenv.c: New file, extracted from setenv.c.
47699                 * setenv.c: Move the unsetenv() function to unsetenv.c.
47700
47701         2001-12-20  Bruno Haible  <bruno@clisp.org>
47702
47703                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
47704                 use malloc instead. For SunOS 4.
47705
47706         2001-12-11  Bruno Haible  <bruno@clisp.org>
47707
47708                 * setenv.c: Declare alloca.
47709                 (compar_fn_t): New typedef.
47710                 (KNOWN_VALUE, STORE_VALUE): Use it.
47711
47712         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
47713         setenv.h.
47714
47715 2002-12-10  Paul Eggert  <eggert@twinsun.com>
47716
47717         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
47718         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
47719         Choose values that are less likely to collide with system fnmatch
47720         options.
47721         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
47722         defined (e.g., a pure POSIX system).
47723         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
47724         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
47725
47726 2002-12-06  Paul Eggert  <eggert@twinsun.com>
47727
47728         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
47729         a pain in practice to deal with generated m4 files.  This change
47730         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
47731
47732         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
47733         and jm-glibc-io.m4, as they are no longer a special case.
47734         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
47735         kludge and the auto-generation stuff.  Check only whether the
47736         functions are declared, not whether they exist, since older hosts
47737         that don't declare the functions can't use the optimization anyway.
47738
47739 2002-12-06  Jim Meyering  <jim@meyering.net>
47740
47741         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
47742
47743         Merge in changes from libc's misc/error.c, in preparation
47744         for the merge of gnulib's changes back into libc.
47745
47746         * lib/error.c (_): Define only if not already defined.
47747         Move definition to follow all #include directives.
47748         Include unlocked-io.h only if !_LIBC.
47749         [_LIBC]: Include <libio/libioP.h>.
47750         [USE_IN_LIBIO]: Include <libio/iolibio.h>
47751         (fflush): Tweak definition to use INTUSE.
47752         (putc): Define.
47753
47754 2002-12-05  Paul Eggert  <eggert@twinsun.com>
47755
47756         * lib/alloca.c [defined emacs]: Include "lisp.h".
47757         (xalloc_die) [defined emacs]: New macro.
47758         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
47759         [! defined emacs]: Include <xalloc.h>.
47760         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
47761         (pointer): Typedef to POINTER_TYPE *.
47762         (malloc): Remove decl; we now always use xmalloc.
47763         (alloca): Use old-style definition, since Emacs needs this.
47764         Check for arithmetic overflow when computing combined size.
47765
47766 2002-12-04  Paul Eggert  <eggert@twinsun.com>
47767
47768         Do not generate unlocked-io.h automatically, since it's easier to
47769         maintain it by hand.
47770
47771         * lib/unlocked-io.h: New file, from GNU diffutils,
47772         but with proper copyright notice and attribution.
47773         * lib/gen-uio: Remove.
47774         * lib/Makefile.am: Add copyright notice.
47775         (libfetish_a_SOURCES): Add unlocked-io.h.
47776         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
47777         (DISTCLEANFILES, io_functions): Remove macros.
47778         (EXTRA_DIST): Remove gen_uio.
47779         (unlocked-io.h): Remove rule.
47780
47781 2002-12-04  Jim Meyering  <jim@meyering.net>
47782
47783         Reflect the fact that stat.c and lstat.c are no longer generated.
47784         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
47785         (DISTCLEANFILES): Likewise.
47786         (EXTRA_DIST): Likewise.
47787         (all_local): Don't depend on stat.c or lstat.c.
47788         (stat.c, lstat.c): Remove rules.
47789         (EXTRA_DIST): Remove xstat.in.
47790
47791         * lib/xstat.in: Remove file.  Contents moved into stat.c.
47792         * lib/stat.c: New file.  Contents mostly from xstat.in.
47793         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
47794         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
47795
47796         * lib/safe-read.c: Rework so that it may serve to define safe_write,
47797         too.
47798         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
47799
47800 2002-12-03  Jim Meyering  <jim@meyering.net>
47801
47802         * lib/safe-read.c, safe-write.c: Change variable names and comments,
47803         but not semantics, to minimize the differences between these two files.
47804         (safe_read): Change comment to mention SAFE_READ_ERROR.
47805
47806         * lib/safe-read.c (IS_EINTR): Define.
47807         (safe_read): Use IS_EINTR in place of in-function cpp directives.
47808
47809 2002-12-02  Jim Meyering  <jim@meyering.net>
47810
47811         * lib/safe-read.c (EINTR): Define.
47812         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
47813         (INT_MAX): Provide fallback.
47814         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
47815
47816         * lib/safe-read.h (SAFE_READ_ERROR): Define.
47817
47818 2002-12-02  Bruno Haible  <bruno@clisp.org>
47819
47820         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
47821         Define, taken from safe-read.c.
47822         (INT_MAX): Provide fallback.
47823         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
47824         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
47825
47826         * lib/safe-read.c (EINTR): Remove definition.
47827         (safe_read): Don't use EINTR if it is absent.
47828
47829 2002-12-01  Jim Meyering  <jim@meyering.net>
47830
47831         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
47832         zero.
47833         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
47834
47835 2002-11-27  Paul Eggert  <eggert@twinsun.com>
47836
47837         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
47838         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
47839         with `if (! (value < limit)) abort ();', for readability.
47840
47841 2002-11-26  Karl Berry  <karl@gnu.org>
47842
47843         * lib/strdup.c: copy from libc again, with jim's ok.
47844         * lib/.cppi-disable: re-add strdup.c
47845
47846 2002-11-25  Karl Berry  <karl@gnu.org>
47847
47848         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
47849         instead of "strtol.c".
47850
47851 2002-11-25  Karl Berry  <karl@gnu.org>
47852
47853         * config/install-sh: update from automake for variable quoting, $0 in
47854         error msgs, etc.
47855
47856         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
47857         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
47858         entry.
47859
47860 2002-11-25  Jim Meyering  <jim@meyering.net>
47861
47862         * lib/mktime.c: Sync from libc, now that it has the latest fix.
47863
47864 2002-11-24  Karl Berry  <karl@gnu.org>
47865
47866         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
47867         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
47868
47869 2002-11-24  Jim Meyering  <jim@meyering.net>
47870
47871         Update from coreutils:
47872
47873         * lib/mktime.c: Merge in changes from libc.
47874
47875         Avoid a link-time failure on some Linux systems.
47876         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
47877         (otherwise).
47878         (__mon_yday): Declare with the STATIC attribute.
47879         (__mktime_internal): Likewise.
47880         Based on a report from Greg Schafer.
47881
47882 2002-11-23  Jim Meyering  <jim@meyering.net>
47883
47884         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
47885         Use `unsigned', not `int', as type of index.
47886
47887         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
47888
47889         * lib/fsusage.c: Remove unneeded parentheses around operands of
47890         `defined'.
47891
47892 2002-11-22  Paul Eggert  <eggert@twinsun.com>
47893
47894         * lib/quotearg.h: Allow multiple inclusion by surrounding with
47895         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
47896         so that we can be included first.
47897         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
47898         * lib/quotearg.c: Include quotearg.h immediately after config.h.
47899         No need to include stddef.h or sys/types.h any more.
47900         Surround local include files with "", not "<>".
47901         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
47902         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
47903         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
47904         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
47905         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
47906         (ISPRINT): Remove; no longer needed now that we assume C89.
47907
47908         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
47909         Preserve errno.
47910
47911         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
47912         quotearg_char): Use SIZE_MAX rather than
47913         (size_t) -1 when we are talking about "infinity".
47914
47915         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
47916
47917 2002-11-22  Paul Eggert  <eggert@twinsun.com>
47918
47919         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
47920         hint that one should use `if (! x) abort ();' rather than `assert
47921         (x);', and anyway it's one less thing to worry about configuring.
47922         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
47923         hash_rehash, hash_insert): Use abort rather than assert.
47924
47925 2002-11-22  Bruno Haible  <bruno@clisp.org>
47926
47927         * lib/safe-read.h: Assume C89. Add comments.
47928         (safe_read): Change return type to size_t.
47929         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
47930         byte counts > SSIZE_MAX correctly.
47931         * lib/safe-write.h: New file.
47932         * lib/safe-write.c: New file.
47933         * lib/full-read.h: New file.
47934         * lib/full-read.c: New file.
47935         * lib/full-write.h: Assume C89. Add comments.
47936         * lib/full-write.c: Include safe-write.h.
47937         (full_write): Rewritten to use safe_write.
47938         Suggested by Jim Meyering and Paul Eggert.
47939
47940 2002-11-21  Jim Meyering  <jim@meyering.net>
47941
47942         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
47943
47944         Merge in changes from the coreutils.
47945
47946         2002-09-25  Paul Eggert  <eggert@twinsun.com>
47947         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
47948         <stdint.h>.
47949         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
47950         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
47951         int.  Work more efficiently if X is the same width as uintmax_t.
47952         Do not compare X to -1, to avoid bogus compiler warning.
47953         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
47954         Don't assume that f_frsize and f_bsize are the same type.
47955
47956         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
47957         warning on FreeBSD.
47958
47959         * lib/makepath.c (make_path): Restore umask *before* creating the final
47960         component.
47961         (make_path): Minor reformatting.
47962
47963         * lib/xmalloc.c: Adjust to work with new autoconf macros,
47964         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
47965         HAVE_MALLOC/HAVE_REALLOC.
47966
47967         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
47968         dummy ones.  At least on GNU/Linux systems, `auto' means something
47969         else.
47970         From Michael Stone.
47971
47972 2002-11-21  Bruno Haible  <bruno@clisp.org>
47973
47974         Remove case insensitive option matching.
47975         * lib/argmatch.h (argcasematch): Remove declaration.
47976         (ARGCASEMATCH): Remove macro.
47977         (__xargmatch_internal): Remove case_sensitive argument.
47978         (XARGMATCH): Update.
47979         (XARGCASEMATCH): Remove macro.
47980         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
47981         case_sensitive argument.
47982         (argcasematch): Remove function.
47983         (__xargmatch_internal): Remove case_sensitive argument.
47984         (main): Use XARGMATCH instead of XARGCASEMATCH.
47985
47986         * lib/xmalloc.c: Change compile-time error message. Add comment about
47987         required autoconf version.
47988
47989 2002-11-20  Paul Eggert  <eggert@twinsun.com>
47990
47991         Merge argmatch cleanups from Bison.  Assume C89.
47992
47993         * lib/argmatch.c: Include config.h here, not in argmatch.h.
47994         Include stdlib.h, for EXIT_FAILURE.
47995         Always include <string.h>, since we assume C89.
47996         (EXIT_FAILURE): Remove pre-C89 bug workaround.
47997         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
47998         Include <stddef.h> instead, since it's all we need for size_t.
47999         (PARAMS): Remove.  All uses removed.
48000         (ARRAY_CARDINALITY): Do not bother to #undef.
48001         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
48002         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
48003         Remove unnecessary parentheses.
48004         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
48005         Insert necessary parentheses.
48006         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
48007         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
48008
48009 2002-11-19  Bruno Haible  <bruno@clisp.org>
48010
48011         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
48012         * lib/mbswidth.h: Include <stddef.h>, for size_t.
48013
48014         * lib/mbswidth.h (PARAMS): Remove macro.
48015         (mbswidth, mbsnwidth): Use ANSI C function declarations.
48016         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
48017
48018         * lib/gcd.h (PARAMS): Remove macro.
48019         (gcd): Use ANSI C function declarations.
48020         * lib/gcd.c (gcd): Likewise.
48021
48022 2002-11-15  Bruno Haible  <bruno@clisp.org>
48023
48024         * lib/strcspn.c: Include <stddef.h>.
48025         (strcspn): Use ANSI C function declaration. Change return type to
48026         size_t. Use NULL.
48027         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
48028         (strpbrk): Use NULL.
48029         * lib/strpbrk.h (PARAMS): Remove macro.
48030         (strpbrk): Use ANSI C function declaration.
48031         * lib/strstr.c: Don't include <sys/types.h>.
48032         * lib/strstr.h (PARAMS): Remove macro.
48033         (strstr): Use ANSI C function declarations.
48034
48035 2002-11-14  Karl Berry  <karl@gnu.org>
48036
48037         * config/mkinstalldirs: `do' on separate line, instead of
48038         `for var; do'.
48039
48040 2002-11-06  Bruno Haible  <bruno@clisp.org>
48041
48042         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
48043         * lib/gcd.c (gcd): Likewise.
48044
48045 2002-11-05  Bruno Haible  <bruno@clisp.org>
48046
48047         * lib/gcd.h: New file, from gettext-0.11.5.
48048         * lib/gcd.c: New file, from gettext-0.11.5.
48049
48050 2002-11-05  Bruno Haible  <bruno@clisp.org>
48051
48052         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
48053         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
48054         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
48055         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
48056
48057         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
48058         <libintl.h>.
48059         * lib/makepath.c: Include gettext.h instead of <locale.h> and
48060         <libintl.h>.
48061
48062         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
48063         * lib/human.c: Include gettext.h instead of <libintl.h>.
48064         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
48065         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
48066         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
48067         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
48068         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
48069         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
48070         (textdomain): Remove definition.
48071         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
48072
48073         * lib/long-options.c: Remove include of <libintl.h> and definition of
48074         _.
48075         * lib/same.c: Remove include of <libintl.h> and definition of _.
48076
48077 2002-11-04  Owen Taylor  <otaylor@redhat.com>
48078
48079         * lib/config.charset: A few additions for Solaris.
48080
48081 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
48082
48083         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
48084         * lib/localcharset.c (locale_charset): Declare as extern "C".
48085
48086 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
48087
48088         * lib/config.charset: msdos in uk_UA uses CP1125.
48089
48090 2002-11-04  Bruno Haible  <bruno@clisp.org>
48091
48092         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
48093         * lib/strcase.h: New file, from GNU gettext-0.11.5.
48094         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
48095         * lib/strstr.h: New file, from GNU gettext-0.11.5.
48096         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
48097
48098 2002-11-04  Bruno Haible  <bruno@clisp.org>
48099
48100         * lib/localcharset.c (locale_charset): Don't return an empty string.
48101
48102 2002-11-04  Bruno Haible  <bruno@clisp.org>
48103
48104         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
48105         aliases.
48106
48107 2002-11-04  Bruno Haible  <bruno@clisp.org>
48108
48109         * lib/config.charset: Update for newest glibc. Add canonical names
48110         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
48111
48112 2002-11-04  Bruno Haible  <bruno@clisp.org>
48113
48114         * lib/config.charset: Add support for NetBSD.
48115
48116 2002-11-04  Bruno Haible  <bruno@clisp.org>
48117
48118         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
48119
48120 2002-11-01  Bruno Haible  <bruno@clisp.org>
48121
48122         * configure.in: Add AC_CONFIG_AUX_DIR call.
48123         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
48124         test/Makefile.
48125         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
48126
48127 2002-09-28  Karl Berry  <karl@gnu.org>
48128
48129         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
48130         installed automake until the next release, since changes have been
48131         made.
48132
48133 2002-09-25  Karl Berry  <karl@gnu.org>
48134
48135         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
48136         * lib/getopt*: copy from libc/posix.
48137         * lib/gettext.h: copy from gettext.
48138         * lib/.cppi-disable: add strdup.c, gettext.h.
48139
48140 2002-09-25  Karl Berry  <karl@gnu.org>
48141
48142         * config/srclist.txt: enable gettext.h check.
48143         * config/config.{guess,sub}: update from prep.
48144         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
48145                 from automake 1.6.3.
48146         See srclist*.
48147
48148 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
48149
48150         * regex.c (PATFETCH): Remove the translating fetch.
48151         (PATFETCH_RAW): Rename to PATFETCH.
48152         (set_image_of_range): New fun.
48153         (SET_RANGE_TABLE_WORK_AREA): Use it.
48154         (regex_compile): Don't translate the pattern chars so eagerly.
48155         Only do it when inserting an `exactn' bytecode or when handling
48156         a char-range.
48157         (mutually_exclusive_p): Avoid empty statement.
48158
48159 2002-07-06  Jim Meyering  <meyering@lucent.com>
48160
48161         * m4/README: Don't mention Makefile.am.in.
48162         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
48163
48164 2002-07-01  Jim Meyering  <meyering@lucent.com>
48165
48166         * lib/c-stack.c: Include sys/time.h.
48167         From Volker Borchert.
48168
48169 2002-06-26  Paul Eggert  <eggert@twinsun.com>
48170
48171         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
48172
48173 2002-06-26  Paul Eggert  <eggert@twinsun.com>
48174
48175         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
48176         New macro.  Use it uniformly instead of
48177         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
48178         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
48179         reported by Vin Shelton.
48180
48181 2002-06-22  Paul Eggert  <eggert@twinsun.com>
48182
48183         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
48184         Do not assume SA_SIGINFO behavior.
48185         Bug reported by Jim Meyering on NetBSD 1.5.2.
48186
48187 2002-06-22  Jim Meyering  <meyering@lucent.com>
48188
48189         * m4/c-stack.m4: New file, from diffutils-2.8.2.
48190         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
48191
48192         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
48193         now that configure.ac uses AC_GNU_SOURCE.
48194         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
48195         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
48196
48197         Update to latest tools.  Suggestions from Paul Eggert.
48198         * m4/stdbool.m4: New file, from diffutils-2.8.2.
48199         * m4/gnu-source.m4: Update from diffutils-2.8.2.
48200         * m4/fnmatch.m4: Likewise.
48201         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
48202         to AC_HEADER_STDBOOL
48203
48204 2002-06-22  Jim Meyering  <meyering@lucent.com>
48205
48206         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
48207         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
48208
48209 2002-06-22  Jim Meyering  <meyering@lucent.com>
48210
48211         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
48212
48213         * lib/exitfail.c, exitfail.h: Likewise.
48214         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
48215
48216         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
48217         of fnmatch.h.
48218         (EXTRA_DIST): Add fnmatch_loop.c.
48219         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
48220
48221         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
48222         * lib/fnmatch.c: Update from diffutils-2.8.2.
48223         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
48224         * lib/fnmatch.h: Remove file.
48225
48226 2002-06-21  Jim Meyering  <meyering@lucent.com>
48227
48228         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
48229         * m4/mbrtowc.m4: Likewise.
48230
48231         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
48232         * m4/mbswidth.m4: Reflect name change:
48233         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
48234         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
48235
48236         * m4/lib-link.m4: Update from gettext-0.11.2.
48237         * m4/gettext.m4: Likewise.
48238
48239         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
48240         From Alfred M. Szmidt.
48241
48242 2002-06-18  Paul Eggert  <eggert@twinsun.com>
48243
48244         * lib/file-type.h: Report an error if neither S_ISREG nor
48245         S_IFREG is defined, instead of using a test specific to glibc
48246         2.2.  This should be safe, since POSIX requires S_ISREG and
48247         Unix Version 7 had S_IFREG.  We don't need to check for
48248         <sys/types.h> since we don't use any symbols that it defines.
48249
48250 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
48251
48252         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
48253         $@-t, so that each temporary file name is unique and valid in the first
48254         8 characters, for operation under DOS.
48255
48256 2002-06-15  Paul Eggert  <eggert@twinsun.com>
48257
48258         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
48259
48260 2002-06-15  Jim Meyering  <meyering@lucent.com>
48261
48262         Work even with DJGPP 2.03, which lacks support for symlinks.
48263         From Richard Dawe.
48264         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
48265         is defined.
48266         * lib/lchown.c (S_ISLNK): Likewise.
48267
48268 2002-06-15  Jim Meyering  <meyering@lucent.com>
48269
48270         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
48271         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
48272         have been included before this file.
48273
48274 2002-06-14  Jim Meyering  <meyering@lucent.com>
48275
48276         * lib/file-type.h: Use the version from diffutils-2.8.2.
48277         * lib/file-type.c: Likewise.
48278
48279 2002-06-07  Jim Meyering  <meyering@lucent.com>
48280
48281         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
48282         They're needed at least for NetBSD 1.5.2.
48283         ($statxfs_includes): Include those same headers.
48284         ($statxfs_includes): Include sys/vfs.h if available.
48285         ($statxfs_includes): Likewise for sys/statvfs.h.
48286         Check for the following members in both structs statfs and statvfs:
48287         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
48288
48289 2002-06-01  Jim Meyering  <meyering@lucent.com>
48290
48291         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
48292         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
48293
48294 2002-05-28  Jim Meyering  <meyering@lucent.com>
48295
48296         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
48297         Reported by Volker Borchert.
48298
48299 2002-05-27  Jim Meyering  <meyering@lucent.com>
48300
48301         Fix a problem seen only on nonconforming systems whereby ls.c's
48302         use of localtime, and then of gettimeofday would cause trouble:
48303         the localtime call used to initialize rpl_gettimeofday's save
48304         mechanism would clobber ls's current local time information so
48305         that in any long listing the first file would always be listed
48306         with date 1970-01-01.  Analysis by Volker Borchert.
48307
48308         * lib/gettimeofday.c (localtime): Undefine.
48309         (rpl_localtime): New function.
48310
48311 2002-05-27  Jim Meyering  <meyering@lucent.com>
48312
48313         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
48314         localtime.
48315
48316         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
48317         use the replacement function; it wouldn't resolve at link time.
48318         Reported by Volker Borchert.
48319
48320 2002-05-22  Jim Meyering  <meyering@lucent.com>
48321
48322         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
48323         file-type.h.
48324         * lib/file-type.h: New file.
48325         * lib/file-type.c (file_type): New file/function.  Extracted from
48326         diffutils.
48327
48328 2002-04-30  Jim Meyering  <meyering@lucent.com>
48329
48330         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
48331
48332 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48333
48334         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
48335
48336 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48337
48338         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
48339         Do not check for alloca.h (no longer used) or stdbool.h (was never
48340         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
48341
48342 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48343
48344         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
48345
48346 2002-04-29  Jim Meyering  <meyering@lucent.com>
48347
48348         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
48349         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
48350         Use AC_FUNC_STRNLEN here instead.
48351
48352         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
48353         With autoconf-2.53a, it's part of AC_PROG_CC.
48354
48355 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48356
48357         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
48358         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
48359
48360 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48361
48362         * lib/sig2str.h, lib/sig2str.c: New files.
48363         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
48364
48365 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48366
48367         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
48368         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
48369         of 127, since 64 is the largest conceivable number for ancient
48370         nonstandard hosts.
48371         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
48372
48373 2002-04-28  Jim Meyering  <meyering@lucent.com>
48374
48375         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
48376
48377 2002-04-24  Jim Meyering  <meyering@lucent.com>
48378
48379         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
48380         (jm_PREREQ): Use it.
48381
48382         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
48383         mach/mach.h fcntl.h.
48384         Check for this function: setlocale.
48385
48386 2002-04-24  Jim Meyering  <meyering@lucent.com>
48387
48388         * lib/gettext.h: New file, from Gettext.
48389         * lib/Makefile.am (INCLUDES): Remove -I../intl.
48390         (libfetish_a_SOURCES): Add gettext.h.
48391
48392 2002-04-16  Jim Meyering  <meyering@lucent.com>
48393
48394         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
48395         ut_pid, ut_id, ut_exit.
48396
48397 2002-04-16  Jim Meyering  <meyering@lucent.com>
48398
48399         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
48400         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
48401         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
48402
48403 2002-04-12  Jim Meyering  <meyering@lucent.com>
48404
48405         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
48406         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
48407         existence of the getmntinfo function.  Needed for Darwin 5.3.
48408
48409         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
48410         This is necessary at least on Darwin 5.3.
48411
48412         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
48413         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
48414         strnlen.o in the library, and that makes some versions of ranlib
48415         object.
48416
48417 2002-04-12  Jim Meyering  <meyering@lucent.com>
48418
48419         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
48420
48421 2002-04-09  Jim Meyering  <meyering@lucent.com>
48422
48423         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
48424         to be more precise.  Rather than saying we're checking whether the
48425         function `works', say what we're testing.
48426         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
48427         Reported by Bruno Haible.
48428
48429 2002-03-10  Jim Meyering  <meyering@lucent.com>
48430
48431         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
48432         Suggestion from Santiago Vila.
48433
48434 2002-03-08  Jim Meyering  <meyering@lucent.com>
48435
48436         * lib/rename.c: Mention that this wrapper is needed also on
48437         mips-dec-ultrix4.4 systems.
48438
48439 2002-03-02  Jim Meyering  <meyering@lucent.com>
48440
48441         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
48442         not HAVE_CLOCK_SETTIME.
48443
48444 2002-02-27  Paul Eggert  <eggert@twinsun.com>
48445
48446         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
48447         Check for clock_settime.
48448
48449 2002-02-27  Paul Eggert  <eggert@twinsun.com>
48450
48451         * lib/nanosleep.h: Rename to....
48452         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
48453
48454         * lib/gettime.c: New file.
48455         * lib/settime.c: New file.
48456         * lib/stime.c: Remove.
48457
48458         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
48459         timespec.h.  Remove nanosleep.h.
48460
48461 2002-02-25  Paul Eggert  <eggert@twinsun.com>
48462
48463         * m4/acl.m4: New file.
48464         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
48465         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
48466
48467 2002-02-25  Paul Eggert  <eggert@twinsun.com>
48468
48469         * lib/acl.c, lib/acl.h: New files.
48470         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
48471
48472 2002-02-24  Jim Meyering  <meyering@lucent.com>
48473
48474         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
48475         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
48476         cause trouble.  Reported by Nelson Beebe.
48477
48478 2002-02-23  Paul Eggert  <eggert@twinsun.com>
48479
48480         * lib/path-concat.c (xpath_concat): Reorder code to pacify
48481         compilers that don't know that xalloc_die never returns.
48482
48483 2002-02-20  Jim Meyering  <meyering@lucent.com>
48484
48485         * lib/getdate.c: Regenerate using bison-1.33.
48486
48487 2002-02-17  Jim Meyering  <meyering@lucent.com>
48488
48489         * config/config.guess (main): Don't use `head -1'; it's no longer
48490         portable. Use `sed 1q' instead.
48491
48492 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
48493
48494         * m4/codeset.m4: Upgrade to gettext-0.11.
48495         * m4/gettext.m4: Upgrade to gettext-0.11.
48496         * m4/glibc21.m4: Upgrade to gettext-0.11.
48497         * m4/iconv.m4: Upgrade to gettext-0.11.
48498         * m4/isc-posix.m4: Upgrade to gettext-0.11.
48499         * m4/lcmessage.m4: Upgrade to gettext-0.11.
48500         * m4/lib-ld.m4: New file, from gettext-0.11.
48501         * m4/lib-link.m4: New file, from gettext-0.11.
48502         * m4/lib-prefix.m4: New file, from gettext-0.11.
48503         * m4/progtest.m4: Upgrade to gettext-0.11.
48504
48505 2002-02-15  Paul Eggert  <eggert@twinsun.com>
48506
48507         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
48508         (jm_PREREQ): Use it.
48509
48510 2002-02-15  Paul Eggert  <eggert@twinsun.com>
48511
48512         * lib/posixver.c, lib/posixver.h: New files.
48513         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
48514
48515 2002-02-02  Paul Eggert  <eggert@twinsun.com>
48516             Bruno Haible  <bruno@clisp.org>
48517
48518         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
48519         (fwrite_success_callback): New declaration.
48520         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
48521         print_unicode_char. Call failure callback instead of error.
48522         (fwrite_success_callback): New function.
48523         (exit_failure_callback): New function.
48524         (fallback_failure_callback): New function.
48525         (print_unicode_char): Call unicode_to_mb.
48526
48527 2002-01-26  Jim Meyering  <meyering@lucent.com>
48528
48529         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
48530         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
48531
48532 2002-01-26  Jim Meyering  <meyering@lucent.com>
48533
48534         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
48535
48536 2002-01-22  Paul Eggert  <eggert@twinsun.com>
48537
48538         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
48539
48540 2002-01-22  Jim Meyering  <meyering@lucent.com>
48541
48542         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
48543         Otherwise, some versions of automake would omit the rule that makes
48544         Makefile from Makefile.in.
48545
48546 2002-01-21  Paul Eggert  <eggert@twinsun.com>
48547
48548         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
48549         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
48550         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
48551         (memcoll): Set errno to zero if there is no error.
48552
48553         * lib/quotearg.c (quotearg_buffer_restyled):
48554         Fix bug with quoting buffers containing NUL when backslashing escapes.
48555         This bug was exposed by the other changes in this patch.
48556         (quotearg_n_options): New arg ARGSIZE.
48557         All callers changed.
48558         (quoting_options_from_style): New function.
48559         (quotearg_n_style): Use it.
48560         (quotearg_n_style_mem): New function.
48561
48562         * lib/quotearg.h (quotearg_n_style_mem): New function.
48563
48564 2002-01-19  Jim Meyering  <meyering@lucent.com>
48565
48566         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
48567         Remove useless quotes: DF_PROG="df".
48568         * m4/strnlen.m4: New file.
48569
48570 2002-01-16  Paul Eggert  <eggert@twinsun.com>
48571
48572         * lib/backupfile.c (ISDIGIT): Comment fix.
48573         * lib/getdate.y (ISDIGIT): Likewise.
48574         * lib/posixtm.c (ISDIGIT, year): Likewise.
48575         * lib/strverscmp.c (ISDIGIT): Likewise.
48576         * lib/userspec.c (ISDIGIT): Likewise.
48577
48578 2002-01-16  Jim Meyering  <meyering@lucent.com>
48579
48580         * lib/getdate.y: Add three semicolons, each just before a closing
48581         brace. Bison (as of version 1.31) no longer papers over that mistake.
48582
48583 2002-01-05  Jim Meyering  <meyering@lucent.com>
48584
48585         * lib/version-etc.c (version_etc_copyright): Update copyright year.
48586
48587 2001-12-19  Paul Eggert  <eggert@twinsun.com>
48588
48589         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
48590         not silently exit merely because the output buffer happens to
48591         have nothing pending.
48592
48593 2001-12-18  Paul Eggert  <eggert@twinsun.com>
48594
48595         See the big note in ../ChangeLog.
48596         * lib/human.c (suffixes): Prefer K to k for 1024.
48597         (generate_suffix_backwards): New function.
48598         (human_readable_inexact): Use it.
48599         * lib/xstrtol.c (__xstrtol): If there is no number but there
48600         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
48601         Accept 'K' as well as 'k'.
48602
48603 2001-12-15  Jim Meyering  <meyering@lucent.com>
48604
48605         * lib/regex.h (__restrict_arr): Update from libc.
48606
48607         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
48608         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
48609         (STREQ): Define.
48610
48611 2001-12-14  Jim Meyering  <meyering@lucent.com>
48612
48613         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
48614         Suggestion from Bruno Haible.
48615
48616 2001-12-10  Jim Meyering  <meyering@lucent.com>
48617
48618         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
48619         xrealloc, Instead, include "xalloc.h".
48620         (initbuffer): Don't cast xmalloc return value to char*.
48621         (readline): Reword comment.
48622         Don't cast xrealloc return value to char*
48623         Return NULL, not 0.
48624
48625 2001-12-09  Jim Meyering  <meyering@lucent.com>
48626
48627         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
48628         about `signed and unsigned type in conditional expression'.
48629         * lib/posixtm.c (posix_time_parse): Likewise.
48630
48631         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
48632
48633         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
48634         to avoid a pedantic warning.
48635
48636         * lib/getstr.c: Don't include assert.h.
48637         (getstr): Remove warning-evoking assertions.
48638         Return -1 if offset parameter is out of bounds.
48639         Change the type of a local from int to size_t.
48640
48641         * lib/strftime.c (my_strftime_localtime_r): Include this function
48642         definition in the `#if ! HAVE_TM_GMTOFF' block.
48643
48644         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
48645         Include xalloc.h instead.
48646
48647 2001-12-02  Jim Meyering  <meyering@lucent.com>
48648
48649         * lib/tempname.c: Don't declare getenv, thus reverting the change of
48650         2001-11-18.  It's no longer necessary, now that stdlib.h is always
48651         included.
48652
48653         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
48654         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
48655
48656 2001-11-30  Akim Demaille  <akim@epita.fr>
48657
48658         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
48659         before being defined.
48660
48661 2001-11-27  Paul Eggert  <eggert@twinsun.com>
48662
48663         * lib/quotearg.h (quotearg_n, quotearg_n_style):
48664         First arg is int, not unsigned.
48665         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
48666         (SIZE_MAX, UINT_MAX): New macros.
48667         (quotearg_n_options): Abort if N is negative.
48668         Avoid overflow check on hosts where size_t is 64 bits and int
48669         is 32 bits, as overflow is impossible there.
48670         Fix off-by-one typo that caused unnecessary reallocation.
48671
48672 2001-11-27  Jim Meyering  <meyering@lucent.com>
48673
48674         * lib/tempname.c: Merge with version from libc.
48675         * lib/regex.c: Likewise.
48676
48677         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
48678         systems for which STDC_HEADERS is 0, it was not included, resulting in
48679         a warning about an integer-to-pointer conversion problem with getenv.
48680         Reported by Volker Borchert.
48681
48682 2001-11-26  Jim Meyering  <meyering@lucent.com>
48683
48684         * lib/gtod.h: Remove file.
48685         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
48686         * lib/gettimeofday.c: Don't include gtod.h.
48687         (GTOD_init): Remove function.
48688         (rpl_gettimeofday): Do its job here instead, rather than aborting.
48689         Suggestion from Volker Borchert.
48690
48691 2001-11-23  Jim Meyering  <meyering@lucent.com>
48692
48693         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
48694         it.
48695         * lib/hash.c (struct hash_table): Define it here instead.
48696
48697 2001-11-22  Jim Meyering  <meyering@lucent.com>
48698
48699         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
48700
48701 2001-11-20  Jim Meyering  <meyering@lucent.com>
48702
48703         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
48704         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
48705
48706 2001-11-19  Jim Meyering  <meyering@lucent.com>
48707
48708         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
48709         directory.  Use "conftestXXXXXX" as the template.
48710         Suggestion from Paul Eggert.
48711
48712         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
48713         immediately, so the test doesn't mistakenly hit the max-open-files
48714         limit.
48715
48716 2001-11-18  Paul Eggert  <eggert@twinsun.com>
48717
48718         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
48719         (TEMPORARIES): New macro.
48720         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
48721         removes an artificial limitation (e.g. HP-UX 10.20, where
48722         TMP_MAX is 17576).
48723
48724 2001-11-18  Jim Meyering  <meyering@lucent.com>
48725
48726         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
48727
48728 2001-11-18  Jim Meyering  <meyering@lucent.com>
48729
48730         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
48731         on SunOS 4.
48732
48733         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
48734         files will be created before anything else.
48735
48736 2001-11-17  Paul Eggert  <eggert@twinsun.com>
48737
48738         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
48739         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
48740
48741 2001-11-17  Jim Meyering  <meyering@lucent.com>
48742
48743         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
48744         Prompted by a report from Bob Proulx.
48745
48746         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
48747         Instead, require UTILS_FUNC_MKSTEMP.
48748
48749 2001-11-17  Jim Meyering  <meyering@lucent.com>
48750
48751         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
48752         Now, that's done as part of AC_FUNC_STRTOD.
48753
48754 2001-11-17  Jim Meyering  <meyering@lucent.com>
48755
48756         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
48757         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
48758         rather than group writable.  Patch by Juan F. Codagnone.
48759
48760         * lib/readtokens.c: Remove explicit declarations of xmalloc and
48761         xrealloc, Instead, include "xalloc.h".
48762
48763         * lib/mountlist.c: Include unlocked-io.h after all system headers.
48764         Remove explicit declarations of xmalloc, xrealloc,
48765         and xstrdup.  Instead, include "xalloc.h".
48766
48767         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
48768         unlocked-io.h.
48769         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
48770         Likewise.
48771         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
48772
48773         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
48774         Reported by Padraig Brady.
48775
48776         * lib/mkstemp.c: #undef mkstemp.
48777         Include config.h.
48778         (rpl_mkstemp): Rename from mkstemp.
48779         Protoize.
48780
48781 2001-11-16  Jim Meyering  <meyering@lucent.com>
48782
48783         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
48784         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
48785         determine the amount of total physical memory, use pstat_getstatic.
48786         HPUX-11 doesn't define _SC_PHYS_PAGES.
48787         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
48788         If sysconf couldn't be used to determine the amount of available
48789         physical memory, use both pstat_getstatic and pstat_getdynamic.
48790         Based on a patch from Bob Proulx.
48791
48792 2001-11-10  Jim Meyering  <meyering@lucent.com>
48793
48794         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
48795         (jm_PREREQ): Use it.
48796
48797 2001-11-09  Jim Meyering  <meyering@lucent.com>
48798
48799         * m4/jm-macros.m4: Require autoconf-2.52f.
48800         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
48801         Use these AC_-prefixed names, not the AM_-prefixed ones.
48802
48803         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
48804
48805 2001-11-05  Jim Meyering  <meyering@lucent.com>
48806
48807         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
48808
48809 2001-11-04  Jim Meyering  <meyering@lucent.com>
48810
48811         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
48812         $DEFS.
48813
48814 2001-11-03  Jim Meyering  <meyering@lucent.com>
48815
48816         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
48817         of AC_DEFUN.
48818
48819         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
48820         know the name of the variable in the macro definition.
48821
48822 2001-11-03  Jim Meyering  <meyering@lucent.com>
48823
48824         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
48825         in argmatch_to_argument call.
48826
48827         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
48828         argument.
48829
48830         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
48831         e.g., a fault due to an attempt to free a NULL pointer.
48832
48833 2001-11-01  Jim Meyering  <meyering@lucent.com>
48834
48835         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
48836         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
48837
48838 2001-11-01  Jim Meyering  <meyering@lucent.com>
48839
48840         * lib/dirfd.c, lib/dirfd.h: New files.
48841         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
48842
48843         * lib/hash.c (hash_print) [TESTING]: Clean up.
48844
48845 2001-10-22  Paul Eggert  <eggert@twinsun.com>
48846
48847         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
48848         to avoid a warning if -Wall.
48849
48850 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
48851
48852         * README: New file
48853         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
48854         (per RMS's instructions, this is now the canonical source)
48855         * lgpl/, gpl/: New directories.
48856
48857 2001-10-21  Paul Eggert  <eggert@twinsun.com>
48858
48859         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
48860
48861 2001-10-21  Jim Meyering  <meyering@lucent.com>
48862
48863         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
48864         this code would end up calling gettext even in packages built
48865         with --disable-nls.
48866         * lib/getopt.c (_): Likewise.
48867         * lib/regex.c (_): Likewise.
48868
48869 2001-10-20  Paul Eggert  <eggert@twinsun.com>
48870
48871         * m4/error.m4 (jm_PREREQ_ERROR):
48872         Do not invoke AC_CHECK_FUNCS with strerror_r, as
48873         AC_FUNC_STRERROR_R does that.
48874         Check for strerror declaration.
48875
48876         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
48877         are supposed to have them these days.
48878         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
48879         Merge changes from latest Autoconf CVS.
48880         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
48881         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
48882         POSIX decided to standardize on the int flavor of strerror_r.
48883
48884 2001-10-20  Paul Eggert  <eggert@twinsun.com>
48885
48886         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
48887         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
48888         Use strerror_r that is only a macro, even if it is not a function.
48889         (strerror): Check for HAVE_DECL_STRERROR before declaring.
48890         (private_strerror): Use prototypes, not old-style function definition.
48891         (print_errno_message): New function.
48892         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
48893         char*-flavored one.
48894         (error_tail, error, error_at_line): Use it.
48895
48896 2001-10-11  Jim Meyering  <meyering@lucent.com>
48897
48898         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
48899         and quote_n (1, ... to avoid clobbering a buffer.
48900
48901 2001-10-05  Jim Meyering  <meyering@lucent.com>
48902
48903         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
48904         hash-pjw.h.
48905         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
48906         * lib/hash-pjw.h: New file.
48907
48908 2001-09-30  Jim Meyering  <meyering@lucent.com>
48909
48910         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
48911         `struct fsstat' has the `f_fstypename' member.
48912         Use that to define FS_TYPE, which is now used to make
48913         the getfsstat link test tighter.
48914
48915 2001-09-30  Jim Meyering  <meyering@lucent.com>
48916
48917         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
48918         Include <sys/ucred.h>, for Apple Darwin.
48919         Include sys/mount.h and sys/fs_types.h only if available.
48920         (FS_TYPE): Define.
48921         (read_filesystem_list): Use FS_TYPE.
48922
48923 2001-09-29  Paul Eggert  <eggert@twinsun.com>
48924
48925         * lib/exclude.c (excluded_filename): 0 -> false, since it's
48926         a boolean context.
48927
48928 2001-09-29  Jim Meyering  <meyering@lucent.com>
48929
48930         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
48931         [one-argument getmntent function]): Include stdio.h before mntent.h.
48932         SunOS 4.1.x needs it for the declaration of `FILE'.
48933         Patch by Volker Borchert.
48934
48935         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
48936         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
48937         sys/fs_types.h, and make the link-test for getfsstat guard #include
48938         directives with appropriate #if HAVE_*_H tests so that we can
48939         detect getfsstat on Apple Darwin1.3.7 systems.
48940         Reported by Nelson Beebe.
48941         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
48942
48943 2001-09-28  Paul Eggert  <eggert@twinsun.com>
48944
48945         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
48946         #defines strtoimax.  Also treat the other strto* functions
48947         like strtoimax.
48948
48949         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
48950         Check for strtoul and strtoumax,
48951         as those declarations are made even in the signed case.
48952         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
48953         Likewise, for strtol and strtoimax.
48954
48955 2001-09-28  Paul Eggert  <eggert@twinsun.com>
48956
48957         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
48958         #defines strtoimax.  Also treat the other strto* functions
48959         like strtoimax.
48960
48961         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
48962         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
48963         (strtoimax, strtoumax): Do not declare if already defined as a macro.
48964
48965 2001-09-26  Jim Meyering  <meyering@lucent.com>
48966
48967         Most macros in unlocked-io.h had the wrong number of arguments.
48968         * lib/gen-uio: New script.
48969         (USE_UNLOCKED_IO): Define to 1 if not already defined.
48970         * lib/unlocked-io.hin: Remove file.
48971         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
48972         rather than trying to embed it here.
48973         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
48974         Reported by Padraig Brady.
48975
48976 2001-09-25  Volker Borchert  <bt@teknon.de>
48977
48978         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
48979         `result'.
48980
48981 2001-09-24  Jim Meyering  <meyering@lucent.com>
48982
48983         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
48984
48985 2001-09-23  Jim Meyering  <meyering@lucent.com>
48986
48987         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
48988         instead of the mere test for existence of mntent.h.  The latter
48989         would get a false-positive on AIX 3.4 systems.
48990         In the outer getmntent if-block, don't die if neither of the getmntent
48991         tests succeeds.  Instead, just fall through and continue with the
48992         remaining tests.
48993
48994 2001-09-23  Jim Meyering  <meyering@lucent.com>
48995
48996         * lib/mountlist.c: Remove useless parentheses in #if directives.
48997         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
48998         the deprecated MOUNTED symbol is no longer defined in mntent.h.
48999
49000 2001-09-22  Jim Meyering  <meyering@lucent.com>
49001
49002         * m4/gettext.m4: New file.  From gettext.
49003         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
49004         * m4/progtest.m4: Likewise
49005         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
49006         * m4/glibc21.m4: Likewise.
49007
49008         * m4/libintl.m4: Remove.  No longer used.
49009
49010 2001-09-22  Jim Meyering  <meyering@lucent.com>
49011
49012         * lib/localcharset.c: Update from latest gettext.
49013         * lib/config.charset: Likewise.
49014
49015 2001-09-20  Jim Meyering  <meyering@lucent.com>
49016
49017         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
49018         strtoimax.
49019         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
49020         strtoumax.
49021
49022 2001-09-20  Jim Meyering  <meyering@lucent.com>
49023
49024         * lib/xstrtol.c (strtoimax): Guard declaration with
49025         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
49026         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
49027         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
49028         (strtoumax): Likewise, for completeness (it wasn't necessary).
49029
49030 2001-09-17  Paul Eggert  <eggert@twinsun.com>
49031
49032         * lib/strtoimax.c (HAVE_LONG_LONG):
49033         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
49034         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
49035         to work around bug in IBM C compiler.
49036
49037 2001-09-17  Jim Meyering  <meyering@lucent.com>
49038
49039         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
49040         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
49041         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
49042         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
49043         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
49044         whenever the right hand side need not be expanded by the shell.
49045
49046 2001-09-16  Paul Eggert  <eggert@twinsun.com>
49047
49048         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
49049         library.  It's not correct, as some older glibcs are buggy.
49050         fnmatch wasn't fixed until glibc 2.2.
49051
49052         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
49053         special shell magic here.
49054
49055 2001-09-16  Jim Meyering  <meyering@lucent.com>
49056
49057         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
49058         * m4/jm-macros.m4: Require it.
49059
49060 2001-09-16  Jim Meyering  <meyering@lucent.com>
49061
49062         * lib/mkdir.c: New file.
49063
49064 2001-09-15  Jim Meyering  <meyering@lucent.com>
49065
49066         * m4/jm-macros.m4: Check for help2man.
49067
49068 2001-09-11  Jim Meyering  <meyering@lucent.com>
49069
49070         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
49071         The body, by Paul Eggert, was moved here from configure.in.
49072         * m4/jm-macros.m4: Require UTILS_HOST_OS.
49073
49074 2001-09-04  Paul Eggert  <eggert@twinsun.com>
49075
49076         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
49077         (jm_PREREQ): Use it.
49078
49079 2001-09-04  Paul Eggert  <eggert@twinsun.com>
49080
49081         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
49082         Use ssize_t, not int, to store result of readlink.
49083         Check for ssize_t overflow as well as size_t overflow,
49084         as POSIX says the result of readlink is implementation-defined
49085         when ssize_t overflows.
49086         Remove unnecessary cast to char*.
49087         Use free+malloc instead of realloc, as the storage doesn't need
49088         to be preserved and it's clearer and can be more efficient that way.
49089         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
49090         * lib/xreadlink.h (xreadlink): Update prototype.
49091
49092 2001-09-04  Paul Eggert  <eggert@twinsun.com>
49093
49094         * lib/xgetcwd.c: Revert some of the previous change; intead,
49095         fix the HAVE_GETCWD_NULL code to behave more like the
49096         !HAVE_GETCWD_NULL code used to.
49097
49098         Include "xalloc.h".
49099         (xgetcwd): Do not return NULL when memory is exhausted; instead,
49100         invoke xalloc_die.
49101
49102 2001-09-03  Paul Eggert  <eggert@twinsun.com>
49103
49104         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
49105         sys/param.h, as pathmax.h includes them.
49106
49107 2001-09-03  Paul Eggert  <eggert@twinsun.com>
49108
49109         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
49110         (jm_PREREQ_XGETCWD): New macro.
49111
49112         * m4/getcwd.m4: New file.
49113
49114 2001-09-03  Paul Eggert  <eggert@twinsun.com>
49115
49116         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
49117         like the HAVE_GETCWD_NULL code.
49118         Include pathmax.h if not HAVE_GETCWD.
49119         Do not include xalloc.h.
49120         (INITIAL_BUFFER_SIZE): New symbol.
49121         Do not use xmalloc / xrealloc, since the caller is responsible for
49122         handling errors.  Preserve errno around `free' during failure.
49123         Do not overrun buffer when using getwd.
49124
49125 2001-09-03  Paul Eggert  <eggert@twinsun.com>
49126
49127         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
49128         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
49129         getcwd (NULL, 0).
49130
49131 2001-09-03  Paul Eggert  <eggert@twinsun.com>
49132
49133         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
49134         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
49135         spotted by Jim Meyering.
49136
49137 2001-09-03  Jim Meyering  <meyering@lucent.com>
49138
49139         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
49140         failure.
49141
49142 2001-09-02  Jim Meyering  <meyering@lucent.com>
49143
49144         * lib/error.c: Update from GNU libc.
49145
49146 2001-09-01  Jim Meyering  <meyering@lucent.com>
49147
49148         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
49149         Used by df.
49150
49151 2001-09-01  Jim Meyering  <meyering@lucent.com>
49152
49153         * lib/xreadlink.c: New file.
49154         * lib/xreadlink.h: New file.
49155         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
49156         xreadlink.h.
49157
49158         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
49159         doesn't conflict with sparc Solaris 7's definition in
49160         /usr/include/sys/int_types.h.
49161
49162         * lib/exclude.c: Use `""', not `<>' to #include non-system header
49163         files.
49164         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
49165         and strncasecmp as r-values.  Unixware didn't have declarations.
49166
49167 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49168
49169         * lib/xstrtol.h: Add copyright notice.
49170         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
49171         LONGINT_INVALID_SUFFIX_CHAR.
49172
49173 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49174
49175         * lib/xstrtol.c (strtoimax): New decl.
49176
49177 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49178
49179         * lib/xgetcwd.c: Don't include pathmax.h.
49180         Include stdlib.h and unistd.h if available.
49181         Include xalloc.h.
49182         (xmalloc, xstrdup, free): Remove decls.
49183         (xgetcwd): Don't assume sizes fit in unsigned.
49184         Check for overflow when computing sizes.
49185         Simplify reallocation code.
49186
49187 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49188
49189         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
49190         a directory's st_size can have an arbitrary value, so the old
49191         usage could waste an arbitrary amount of memory.  All uses
49192         changed.
49193         * lib/savedir.h: Update prototype.
49194
49195 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49196
49197         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
49198
49199         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
49200         old strtoimax.c.
49201
49202         Also, make the following further changes to make this file's
49203         configuration more similar to that of strtol.c:
49204         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
49205         (strtoumax, uintmax_t, strtoull, strtol): Remove.
49206         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
49207         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
49208         changed to signed values.
49209
49210         And make the following changes as well:
49211         Fix copyright notice, as 1999 was missing.
49212         (verify): New macro.
49213         (strtoimax): Check sizes at compile-time, not run-time.
49214         Prefer strtol to strtoll if both work.
49215         (main): Remove; it was not that useful and was a pain to maintain.
49216
49217         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
49218
49219 2001-08-31  Jim Meyering  <meyering@lucent.com>
49220
49221         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
49222         Use an initial, malloc'd, buffer of length 128 rather than
49223         a statically allocated one of length 1024.
49224
49225 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49226
49227         Simplify code, partly by assuming autoconf 2.52 semantics.
49228
49229         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
49230
49231         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
49232         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
49233         All uses removed.
49234         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
49235         Move AC_REQUIRE to next-to-top level, to avoid confusion.
49236         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
49237         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
49238         jm_AC_HEADER_INTTYPES_H.
49239         * m4/jm-macros.m4 (jm_MACROS): Likewise.
49240
49241         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
49242
49243         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
49244         Quote first arg of AC_DEFUN.
49245         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
49246         since they are needed to parse the include file even if we need
49247         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
49248         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
49249         but with opposite signedness.
49250
49251 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49252
49253         Merge 'exclude' changes from tar 1.13.22.
49254         This fixes one or two unlikely storage allocation overflow bugs,
49255         but doesn't change user-visible behavior otherwise.
49256
49257 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49258
49259         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
49260         (jm_PREREQ_EXCLUDE): New macro.
49261
49262 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49263
49264         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
49265         tm to be declared.
49266
49267 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49268
49269         * lib/hash.c: Remove '2001' from copyright notice.
49270
49271 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49272
49273         * lib/full-write.h: New file.
49274         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
49275         * lib/full-write.c: Correct credits, as cccp.c no longer
49276         exists and anyway it was so heavily changed from the old cccp
49277         code as to be unrecognizable.  Include full-write.h.
49278         (full_write) Return size_t, with short writes meaning failure.
49279         All callers changed.  This fixes a bug with large buffers
49280         on 64-bit hosts.
49281         * lib/utime.c: Include full-write.h.
49282
49283 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49284
49285         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
49286         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
49287         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
49288         Include if available.
49289         (<xalloc.h>): Include
49290         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
49291         (verify): New macro.  Use it to verify that EXCLUDE macros do not
49292         collide with FNM macros.
49293         (struct patopts): New struct.
49294         (struct exclude): Use it, as exclude patterns now come with options.
49295         (new_exclude): Support above changes.
49296         (new_exclude, add_exclude_file):
49297         Initial size must now be a power of two to simplify overflow checking.
49298         (free_exclude, fnmatch_no_wildcards): New function.
49299         (excluded_filename): No longer requires options arg, as the options
49300         are determined by add_exclude.  Now returns bool, not int.
49301         (excluded_filename, add_exclude):
49302         Add support for the fancy new exclusion options.
49303         (add_exclude, add_exclude_file): Now takes int options arg.
49304         Check for arithmetic overflow when computing sizes.
49305         (add_exclude_file): xrealloc might modify errno, so don't
49306         realloc until after errno might be used.
49307
49308         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
49309         New macros.
49310         (free_exclude): New decl.
49311         (add_exclude, add_exclude_file): Now takes int options arg.
49312         (excluded_filename): No longer requires options arg, as the options
49313         are determined by add_exclude.  Now returns bool, not int.
49314
49315 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49316
49317         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
49318
49319 2001-08-27  Jim Meyering  <meyering@lucent.com>
49320
49321         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
49322
49323         * lib/version-etc.c (N_): Remove definition.
49324         Revert most of last change.
49325         Instead, simply don't mark the `Copyright...' string for translation.
49326         Based on advice from Paul Eggert.
49327
49328         * lib/strtoxmax.c: Tweak comment.
49329
49330 2001-08-26  Jim Meyering  <meyering@lucent.com>
49331
49332         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
49333
49334         * m4/xstrtoimax.m4: New file.
49335         * m4/xstrtoumax.m4: Add comments explaining why we
49336         AC_REPLACE_FUNCS(strtol).
49337
49338 2001-08-26  Jim Meyering  <meyering@lucent.com>
49339
49340         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
49341         of copyright with `%s' so translators don't get an untranslated
49342         message in 2002.
49343         (COPYRIGHT_YEAR): Define.
49344         (version_etc): Use fprintf rather than fputs.
49345         Suggestion from Ulrich Drepper.
49346
49347         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
49348
49349         * lib/strtoll.c: New file, from GNU libc.
49350         * lib/xstrtoimax.c: New file.
49351
49352         * lib/xstrtol.h: Add xstrtoimax.
49353         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
49354         * lib/strtoimax.c: New file.  Likewise, but first define
49355         STRTOUXMAX_SIGNED.
49356
49357         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
49358         ...
49359         * lib/strtoxmax.c: ... then renamed to this.
49360
49361 2001-08-18  Paul Eggert  <eggert@twinsun.com>
49362
49363         * m4/inttypes.m4: Add AC_PREREQ(2.13).
49364         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
49365         (jm_AC_TYPE_INTMAX_T): New macro.
49366         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
49367
49368         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
49369
49370         * m4/longlong.m4: Renamed from ulonglong.m4.
49371         * m4/inttypes.m4: Renamed from inttypes_h.m4.
49372         * m4/uintmax_t.m4: Removed.
49373
49374 2001-08-13  Paul Eggert  <eggert@twinsun.com>
49375
49376         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
49377         Port to Solaris 8, where 'sed' requires a space after the 'r'
49378         command, and where sh dislikes "$/".  Clean up the spacing a bit.
49379         Redirect output to $tmp just once.
49380
49381 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
49382
49383         * lib/addext.c (<errno.h>): Include.
49384         (errno): Declare if not defined.
49385         (addext): Work correctly when pathconf returns -1 and leaves
49386         errno alone because there is no limit.  Also, work even if
49387         pathconf returns a value greater than SIZE_MAX.
49388
49389 2001-08-12  Jim Meyering  <meyering@lucent.com>
49390
49391         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
49392         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
49393         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
49394         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
49395         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
49396         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
49397         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
49398         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
49399         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
49400         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
49401         utime.m4, utimes.m4, xstrtoumax.m4:
49402         Quote the first argument in each use of AC_DEFUN.
49403
49404 2001-08-12  Jim Meyering  <meyering@lucent.com>
49405
49406         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
49407         Simply `return getcwd (NULL, 0);'.
49408         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
49409         Use 1300 as initial value for length, not PATH_MAX.
49410
49411         * lib/pathmax.h: Clean up cpp syntax.
49412
49413 2001-08-12  Jim Meyering  <meyering@lucent.com>
49414
49415         * lib/gettimeofday.c: New file.
49416         * lib/gtod.h: New file.
49417         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
49418
49419 2001-08-05  Jim Meyering  <meyering@lucent.com>
49420
49421         * m4/jm-macros.m4: Require autoconf-2.52.
49422
49423 2001-08-04  Jim Meyering  <meyering@lucent.com>
49424
49425         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
49426         stmt, to get in sync with glibc.
49427
49428 2001-08-03  Paul Eggert  <eggert@twinsun.com>
49429
49430         The following changes are from gettext 0.10.39 as maintained by
49431         Bruno Haible.
49432
49433         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
49434         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
49435         with inverted sense.  All uses changed.
49436
49437         * lib/mbswidth.c: Don't include <limits.h>.
49438         Include <stdlib.h> and <string.h> unconditionally.
49439         (iswcntrl, mbsinit, ISCNTRL): New macros.
49440         (mbsnwidth): Use K&R style function declarations.
49441         Don't bother checking for MB_LEN_MAX == 1, since the compiler
49442         can optimize it when MB_CUR_MAX == 1.
49443         The width of control characters is zero, not 1.
49444
49445 2001-08-03  Paul Eggert  <eggert@twinsun.com>
49446
49447         The following changes are from gettext 0.10.39 as maintained by
49448         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
49449
49450         * m4/codeset.m4: Upgrade to serial AM1.
49451         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
49452         all uses changed.  Quote first arg of AC_DEFUN.
49453         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
49454
49455         * m4/iconv.m4: Upgrade to serial AM2.
49456         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
49457         Add --with-libconv-prefix.
49458         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
49459         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
49460         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
49461         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
49462         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
49463
49464         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
49465         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
49466         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
49467         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
49468         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
49469         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
49470         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
49471         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
49472         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
49473
49474         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
49475         string.h any more.
49476
49477         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
49478         not the default value.
49479
49480         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
49481         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
49482         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
49483         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
49484         Also check for iswcntrl, used for wcwidth fallback.
49485         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
49486         to Autoconf 2.13.
49487
49488 2001-08-03  Jim Meyering  <meyering@lucent.com>
49489
49490         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
49491         as it was in the original.  Reported by Paul Eggert.
49492
49493 2001-07-16  Jim Meyering  <meyering@lucent.com>
49494
49495         * m4/gettimeofday.m4: New file.
49496         Prompted by a report from Bernhard Baehr.
49497
49498 2001-07-15  Jim Meyering  <meyering@lucent.com>
49499
49500         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
49501         stuff. Now it's in ../Makefile.cfg.
49502
49503 2001-07-15  Jim Meyering  <meyering@lucent.com>
49504
49505         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
49506         (BUILT_SOURCES): Add unlocked-io.h.
49507         (io_functions): Define.
49508         (unlocked-io.h): New rule.
49509         (DISTCLEANFILES): Add unlocked-io.h.
49510         (all-local): Depend on unlocked-io.h, to ensure it is created.
49511
49512         * lib/unlocked-io.hin: New file
49513
49514         * lib/regex.c: Update from glibc.
49515
49516 2001-07-05  Jim Meyering  <meyering@lucent.com>
49517
49518         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
49519         recommendation.
49520         (libfetish_a_SOURCES): Put all .h files here instead.
49521         Remove a thus-exposed (better checks in automake) duplicate and
49522         two unnecessary .h files.
49523
49524 2001-07-04  Jim Meyering  <meyering@lucent.com>
49525
49526         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
49527         that generates jm-glibc-io.m4 so that it doesn't trigger any make
49528         distcheck failure.
49529
49530 2001-07-02  Jim Meyering  <meyering@lucent.com>
49531
49532         The following changes were prompted by suggestions from Bruno Haible.
49533
49534         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
49535         is now generated.
49536         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
49537         definition of EXTRA_DIST.
49538         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
49539         ensure that the generated file is created/updated whenever the list
49540         of $(unlocked_functions) is changed.
49541         (jm-glibc-io.m4): New rule.
49542         (unlocked-io.h): New rule -- currently unused.
49543
49544 2001-06-24  Jim Meyering  <meyering@lucent.com>
49545
49546         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
49547         unmatched right bracket, rather than kludging it with an extra,
49548         falsely-matching quote in a comment.  Patch by Akim Demaille.
49549
49550 2001-06-11  Jim Meyering  <meyering@lucent.com>
49551
49552         * lib/regex.c: Update from GNU libc.
49553
49554 2001-05-27  Jim Meyering  <meyering@lucent.com>
49555
49556         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
49557         Check for ut_type in struct utmp.
49558
49559 2001-05-27  Jim Meyering  <meyering@lucent.com>
49560
49561         * lib/readutmp.h (UT_TYPE): Define.
49562
49563 2001-05-24  Jim Meyering  <meyering@lucent.com>
49564
49565         * lib/argmatch.c: Include "quote.h".
49566         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
49567         quote function.  Reported by Göran Uddeborg.
49568
49569 2001-05-22  Jim Meyering  <meyering@lucent.com>
49570
49571         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
49572         now that we use the package-supplied version unconditionally.
49573         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
49574
49575 2001-05-21  Jim Meyering  <meyering@lucent.com>
49576
49577         * m4/regex.m4: Change a couple backticks to single quotes to avoid
49578         shell syntax errors.
49579
49580 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
49581
49582         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
49583
49584 2001-05-20  Paul Eggert  <eggert@twinsun.com>
49585
49586         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
49587         Don't bother to check library strftime, since
49588         we'll be using our own my_strftime function anyway.
49589         Define my_strftime instead of strftime.
49590
49591 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
49592
49593         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
49594         which is not yet declared.
49595
49596 2001-05-15  Jim Meyering  <meyering@lucent.com>
49597
49598         * m4/regex.m4: Use proper quoting so brackets appear in the test
49599         program.
49600         Reported by, and with help from, Bruno Haible.
49601
49602 2001-05-13  Jim Meyering  <meyering@lucent.com>
49603
49604         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
49605         undefined.
49606
49607 2001-05-11  Paul Eggert  <eggert@twinsun.com>
49608
49609         dirname code cleanup.  base_name now behaves more compatibly
49610         with POSIX basename when given file names that have trailing
49611         slashes, and similarly for dir_name.  Add new primitives
49612         base_len and dir_len.  Put the directory-name-related decls
49613         into dirname.h.
49614
49615         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
49616         * lib/backupfile.c (base_name): Likewise.
49617         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
49618         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
49619         * lib/makepath.c (strip_trailing_slashes): Likewise.
49620         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
49621         ISSLASH): Likewise.
49622         * lib/rename.c (strip_trailing_slashes): Likewise.
49623         * lib/same.c (base_name): Likewise.
49624         * lib/stripslash.c (ISSLASH): Likewise.
49625
49626         * lib/addext.c: Include <dirname.h> after size_t is defined.
49627         * lib/backupfile.c: Likewise.
49628
49629         * lib/addext.c (addext): Use base_len to trim redundant
49630         trailing slashes instead of doing it ourselves.
49631         But do not trim the last slash if it is not redundant.
49632
49633         * lib/backupfile.c (find_backup_file_name,
49634         max_backup_version): Use base_len instead of rolling it ourselves.
49635         Handle the case of "" and (on DOS) "C:" correctly.
49636
49637         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
49638         needed. Include <string.h>, <dirname.h>.
49639         (base_name): Allow file names ending in slashes, other than names
49640         that are all slashes.  In this case, return the basename followed
49641         by the slashes.  This is more general, and can be used in places
49642         where the original base_name purposely had an assertion failure.
49643         (base_len): New function.
49644
49645         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
49646         Do not include <assert.h>; no longer needed.
49647         Include xalloc.h.
49648         (memrchr): Remove decl.
49649         (dir_name_r): Remove.
49650         (dir_len): Renamed from dirlen.  All callers changed.
49651         Rewrite in terms of base_name, for simplicity and consistency.
49652         (dir_name): Never return NULL.  All callers changed.
49653         Do not include <stdlib.h> in test program; no longer needed.
49654         return 0; is fine for test program.
49655
49656         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
49657         New macros.
49658         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
49659
49660         * lib/path-concat.c (path_concat): Use base_len to compute
49661         base length, not strlen; this means we cannot rely on memcpy
49662         to null-terminate.
49663
49664         * lib/same.c (STREQ): Remove.
49665         (same_name): Handle the case where the basename ends in trailing '/'.
49666
49667         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
49668         a slash was stripped.  Do not strip the last slash after a
49669         file system prefix.
49670
49671 2001-05-11  Paul Eggert  <eggert@twinsun.com>
49672
49673         * lib/Makefile.am (libfetish_a_SOURCES):
49674         Add strftime.c, since we now compile it on all hosts.
49675
49676         * lib/strftime.c (my_strftime):
49677         Define to nstrftime if emacs, but only if my_strftime is not defined.
49678         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
49679         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
49680         Add one more extra argument: a nanoseconds value.
49681         All uses changed.
49682         (ns): New macro.
49683         (my_strftime function): Add %N format.
49684         (emacs_strftimeu): Renamed from emacs_strftime,
49685         with extra ut argument.
49686
49687 2001-05-09  Paul Eggert  <eggert@twinsun.com>
49688
49689         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
49690
49691 2001-04-21  Jim Meyering  <meyering@lucent.com>
49692
49693         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
49694         doesn't interfere.
49695
49696 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
49697
49698         * m4/ftruncate.m4: Check for chsize.
49699         Link with ftruncate.o unconditionally if ftruncate is missing.
49700         This was required when cross-compiling to i586-mingw32msvc.
49701
49702 2001-04-08  Jim Meyering  <meyering@lucent.com>
49703
49704         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
49705         recomputed; that's necessary when the offset spans a DST transition.
49706         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
49707
49708 2001-04-02  Jim Meyering  <meyering@lucent.com>
49709
49710         * lib/regex.h, regex.c: Update from GNU libc.
49711
49712 2001-03-24  Jim Meyering  <meyering@lucent.com>
49713
49714         * m4/jm-macros.m4: Require autoconf-2.49d.
49715
49716 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
49717
49718         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
49719
49720 2001-03-19  Paul Eggert  <eggert@twinsun.com>
49721
49722         * lib/version-etc.c (version_etc_copyright): Update to 2001.
49723
49724 2001-03-17  Jim Meyering  <meyering@lucent.com>
49725
49726         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
49727         now that the version in autoconf is equivalent.
49728         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
49729
49730         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
49731         Suggestion from Akim Demaille.
49732
49733         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
49734         (jm_PREREQ_TEMPNAME): New function.
49735
49736 2001-03-16  Paul Eggert  <eggert@twinsun.com>
49737
49738         * lib/tempname.c (uint64_t): Define to uintmax_t if
49739         not defined, and if UINT64_MAX is not defined.
49740         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
49741         Reported by John David Anglin.
49742
49743 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
49744
49745         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
49746         resolve alias if codeset is empty.
49747         * lib/config.charset (BeOS): Use wildcard syntax.
49748
49749 2001-03-13  Jim Meyering  <meyering@lucent.com>
49750
49751         * lib/path-concat.c (path_concat)
49752         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
49753         concatenating e.g., `C:' and `foo'.
49754         From Bruno Haible.
49755
49756 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
49757
49758         * lib/localcharset.c (locale_charset): Don't use
49759         setlocale(LC_CTYPE,NULL). Don't return NULL.
49760         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
49761
49762 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
49763
49764         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
49765         support for DOS/DJGPP.
49766
49767 2001-03-01  Paul Eggert  <eggert@twinsun.com>
49768
49769         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
49770         lacks mkstemp.  Compile our own tempname.c if we compile our own
49771         mkstemp.c, as mkstemp relies on tempname.
49772
49773 2001-03-01  Jim Meyering  <meyering@lucent.com>
49774
49775         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
49776         AH_VERBATIM really does output its argument verbatim.
49777
49778 2001-02-28  Paul Eggert  <eggert@twinsun.com>
49779
49780         * lib/Makefile.am (libfetish_a_SOURCES):
49781         Add dup-safer.c, fopen-safer.c.
49782         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
49783
49784         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
49785         * lib/unistd-safer.h: New files.
49786
49787 2001-02-25  Paul Eggert  <eggert@twinsun.com>
49788
49789         The mkstemp replacement is taken from glibc 2.2.2, with some
49790         portability fixes for use outside glibc, as follows:
49791
49792         * lib/tempname.c (struct_stat64): New macro.
49793         (direxists, __gen_tempname): Use it.
49794         This avoids a portability problem with Solaris 8.
49795
49796         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
49797         (<stddef.h>, <stdint.h>, <string.h>):
49798         Include only if STDC_HEADERS || _LIBC.
49799         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
49800         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
49801         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
49802         (__set_errno): Define this macro if <errno.h> doesn't.
49803         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
49804         Define these macros if <stdio.h> doesn't.
49805         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
49806         Define these macros if <sys/stat.h>
49807         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
49808         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
49809         __xstat64): Define if not _LIBC.
49810         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
49811         (__gen_tempname): Invoke gettimeofday only if
49812         HAVE_GETTIMEOFDAY || _LIBC;
49813         otherwise, fall back on plain "time".
49814         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
49815
49816         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
49817
49818         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
49819
49820 2001-02-18  Paul Eggert  <eggert@twinsun.com>
49821
49822         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
49823
49824 2001-02-17  Paul Eggert  <eggert@twinsun.com>
49825
49826         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
49827         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
49828         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
49829         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
49830
49831 2001-02-17  Paul Eggert  <eggert@twinsun.com>
49832
49833         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
49834         Remove workaround macros for hosts that have mbrtowc but not
49835         mbstate_t, as we now insist on proper declarations for both
49836         before using mbrtowc.
49837
49838 2001-02-17  Jim Meyering  <meyering@lucent.com>
49839
49840         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
49841         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
49842         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
49843         UnixWare 7.1.1.
49844
49845         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
49846         rather than AC_CACHE_VAL.
49847
49848 2001-02-17  Jim Meyering  <meyering@lucent.com>
49849
49850         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
49851         around included file name.
49852
49853         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
49854
49855         * lib/strftime.c: Update from GNU libc (the only changes were to
49856         comments).
49857
49858 2001-02-17  Jim Meyering  <meyering@lucent.com>
49859
49860         * lib/regex.c: Update from libc.
49861
49862 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
49863
49864         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
49865         clash.
49866
49867 2001-02-16  Paul Eggert  <eggert@twinsun.com>
49868
49869         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
49870         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
49871         Reported by Mark Hounschell via Paul Eggert.
49872
49873 2001-02-07  Jim Meyering  <meyering@lucent.com>
49874
49875         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
49876
49877 2001-02-05  Jim Meyering  <meyering@lucent.com>
49878
49879         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
49880         it includes the patch required for `large file' support with at least
49881         HP-UX's 10.20 /bin/cc.
49882
49883 2001-02-03  Jim Meyering  <meyering@lucent.com>
49884
49885         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
49886         AS_IF, now that it works once again (mysteriously).
49887         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
49888
49889 2001-01-30  Jim Meyering  <meyering@lucent.com>
49890
49891         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
49892         * m4/chown.m4: Rename conftestchown to conftest.chown.
49893         * m4/rename.m4: s/conftestdir/conftest.d1/ and
49894         s/conftestdir2/conftest.d2/.
49895         * m4/utimes.m4: s/conftestdata/conftest.data/
49896         Inspired by Pavel Roskin's change in autoconf.
49897
49898 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
49899
49900         * lib/config.charset: Update for FreeBSD 4.2.
49901
49902 2001-01-27  Jim Meyering  <meyering@lucent.com>
49903
49904         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
49905         a use of AS_IF.
49906         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
49907
49908 2001-01-26  Jim Meyering  <meyering@lucent.com>
49909
49910         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
49911         quotearg.c includes it.
49912
49913 2001-01-26  Jim Meyering  <meyering@lucent.com>
49914
49915         * lib/quotearg.c: Include stddef.h.
49916         * lib/quote.c: Include stddef.h.
49917         Reported by Axel Kittenberger.
49918
49919         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
49920         line in double quotes so that it evokes a better diagnostic.
49921         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
49922         Reported by Axel Kittenberger.
49923
49924 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
49925
49926         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
49927         as if it was a `charset'.
49928
49929 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
49930
49931         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
49932         has const.
49933
49934 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
49935
49936         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
49937         to avoid a warning.  Add back 'const' to inptr.
49938
49939 2001-01-20  Jim Meyering  <meyering@lucent.com>
49940
49941         Be sure that headers are checked before used in code compiled
49942         for the type checks.
49943         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
49944         In place of that, invoke jm_CHECK_ALL_TYPES.
49945         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
49946         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
49947         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
49948         The check for ssize_t was mistakenly run before the test for unistd.h.
49949
49950         The configure-time check for stdbool.h was missing.
49951         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
49952         (jm_PREREQ_HASH): New function.
49953
49954 2001-01-17  Jim Meyering  <meyering@lucent.com>
49955
49956         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
49957         for autoconf-2.49c.
49958         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
49959
49960 2001-01-16  Jim Meyering  <meyering@lucent.com>
49961
49962         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
49963         From Bruno Haible.
49964
49965 2001-01-14  Jim Meyering  <meyering@lucent.com>
49966
49967         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
49968         foo and bar.  Create conftestdir/ in the script, not in the C code.
49969         Remove directories in the script, not in the C code.
49970         Remove conftestdir{,2} before trying to create the directory.
49971         Make the entire configure script fail if the mkdir fails.
49972
49973 2001-01-14  Jim Meyering  <meyering@lucent.com>
49974
49975         * lib/rename.c: New file.  From Volker Borchert.
49976         Include stdlib.h, string.h or strings.h, and xalloc.h.
49977         Use strip_trailing_slashes rather than open-coding it.
49978
49979 2001-01-03  Paul Eggert  <eggert@twinsun.com>
49980
49981         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
49982
49983 2001-01-03  Jim Meyering  <meyering@lucent.com>
49984
49985         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
49986         of local `inptr' to avoid warning with some system declarations of
49987         iconv.
49988
49989 2001-01-02  Volker Borchert  <bt@teknon.de>
49990
49991         * m4/rename.m4: New file.
49992         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
49993
49994 2001-01-01  Jim Meyering  <meyering@lucent.com>
49995
49996         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
49997         even on systems with utmpx.h.  It's necessary for the declaration of
49998         utmp's ut_user member.  Reported by Andreas Jaeger.
49999
50000         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
50001         available. They are required for the declarations of getgrgid and
50002         getpwuid resp.
50003         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
50004         Reported by Andreas Jaeger.
50005
50006 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
50007
50008         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
50009         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
50010         so `make install' also works in VPATH builds.
50011
50012 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
50013
50014         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
50015         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
50016         can be used in subdirectories.
50017
50018 2000-12-29  Paul Eggert  <eggert@twinsun.com>
50019
50020         * lib/modechange.c: Do not assume that mode_t uses the
50021         traditional octal encoding.  E.g. "chmod 1 FOO" should set
50022         the other-execute bit of FOO even if S_IXOTH != 1.
50023
50024         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
50025         WOTH, XOTH, ALLM): New macros.
50026         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
50027          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
50028         Use them.
50029         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
50030         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
50031         (mode_compile):
50032         No need to use uintmax_t; unsigned long is long enough.
50033         Don't bother to get suffix since we don't use it.
50034
50035 2000-12-26  Jim Meyering  <meyering@lucent.com>
50036
50037         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
50038         better with autoheader.
50039
50040 2000-12-24  Jim Meyering  <meyering@lucent.com>
50041
50042         * lib/hash.c (is_prime): Return explicit boolean values.
50043         (hash_get_first): Return NULL to appease Irix5.6's 89.
50044         Reported by Nelson Beebe.
50045
50046 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
50047
50048         * lib/localcharset.c (locale_charset): Add support for Win32.
50049
50050 2000-12-18  Paul Eggert  <eggert@twinsun.com>
50051
50052         * lib/physmem.h, lib/physmem.c: New files.
50053
50054         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
50055         (noinst_HEADERS): Add physmem.h.
50056
50057         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
50058         't' for compatibility with Solaris 8 sort.
50059
50060 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
50061
50062         * lib/config.charset: Add support for BeOS.
50063
50064 2000-12-17  Jim Meyering  <meyering@lucent.com>
50065
50066         * m4/dos.m4 (jm_AC_DOS): New file and macro.
50067         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
50068
50069 2000-12-16  Jim Meyering  <meyering@lucent.com>
50070
50071         This bug had a serious impact on chown: `chown N:M FILE' (for integer
50072         N and M) would have treated it like `chown N:N FILE'.
50073
50074         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
50075
50076 2000-12-16  Jim Meyering  <meyering@lucent.com>
50077
50078         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
50079         SHELLS_FILE to a file name that's useful on djgpp systems.
50080         Include stdlib.h.
50081         (ADDITIONAL_DEFAULT_SHELLS): Define.
50082         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
50083         Based mostly on a patch from Prashant TR.
50084
50085 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
50086
50087         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
50088         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
50089         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
50090
50091 2000-12-08  Andreas Schwab  <schwab@suse.de>
50092
50093         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
50094         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
50095
50096 2000-12-07  Jim Meyering  <meyering@lucent.com>
50097
50098         * lib/stripslash.c (ISSLASH): Define.
50099         (strip_trailing_slashes): Use ISSLASH rather than comparing against
50100         `/'.
50101         From Prashant TR.
50102
50103         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
50104         (dir_name_r): Declare this function as static.
50105         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
50106         manifest itself on a name containing a mix of slashes and
50107         backslashes.
50108         Make this function work with names starting with a DOS-style
50109         drive letter and colon prefix.
50110         (dir_name): Append `.' if necessary.
50111         Based mostly on patches from Prashant TR and Eli Zaretskii.
50112
50113         * lib/dirname.h (dir_name_r): Remove prototype.
50114
50115 2000-12-06  Paul Eggert  <eggert@twinsun.com>
50116
50117         * m4/off_t-format.m4: Remove this file.
50118         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
50119
50120 2000-12-06  Jim Meyering  <meyering@lucent.com>
50121
50122         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
50123         replacement strtoull, we may well need the replacement strtoul, too.
50124         Check for declarations of strtoul and strtoull.
50125         Check for strtol.  Mainly as a cue to cause automake to include
50126         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
50127         Check for limits.h -- strtol.c needs it.
50128
50129 2000-12-05  Jim Meyering  <meyering@lucent.com>
50130
50131         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
50132
50133 2000-12-04  Jim Meyering  <meyering@lucent.com>
50134
50135         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
50136         Also include memory.h, stdlib.h, unistd.h if appropriate.
50137         Reported by Andreas Jaeger (conflicting declaration of malloc).
50138
50139 2000-12-02  Jim Meyering  <meyering@lucent.com>
50140
50141         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
50142         * m4/jm-macros.m4 (jm_MACROS): require it.
50143
50144 2000-12-02  Jim Meyering  <meyering@lucent.com>
50145
50146         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
50147
50148 2000-12-01  Paul Eggert  <eggert@twinsun.com>
50149
50150         * lib/memrchr.c: Include <config.h> before any system include file.
50151
50152 2000-11-30  Jim Meyering  <meyering@lucent.com>
50153
50154         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
50155
50156 2000-11-30  Jim Meyering  <meyering@lucent.com>
50157
50158         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
50159
50160 2000-11-29  Paul Eggert  <eggert@twinsun.com>
50161
50162         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
50163
50164 2000-11-26  Jim Meyering  <meyering@lucent.com>
50165
50166         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
50167
50168 2000-11-22  Paul Eggert  <eggert@twinsun.com>
50169
50170         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
50171         size of (size_t) -1; it's not portable.
50172
50173 2000-11-17  Jim Meyering  <meyering@lucent.com>
50174
50175         * lib/strstr.c: Update from GNU libc.
50176
50177 2000-11-17  Akim Demaille  <akim@epita.fr>
50178
50179         * lib/obstack.h: Formatting changes.
50180         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
50181         prevent type checking.
50182         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
50183         cast the value to (void *): assigning a `foo *' to a `void *'
50184         variable is valid.
50185         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
50186
50187 2000-11-16  Jim Meyering  <meyering@lucent.com>
50188
50189         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
50190
50191 2000-11-11  Jim Meyering  <meyering@lucent.com>
50192
50193         * lib/error.c: Add a couple #includes, merging from GNU libc version.
50194
50195 2000-11-10  Jim Meyering  <meyering@lucent.com>
50196
50197         * lib/obstack.h: Update from GNU libc.
50198         * lib/obstack.c: Likewise.
50199
50200 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
50201
50202         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
50203
50204 2000-11-06  Paul Eggert  <eggert@twinsun.com>
50205
50206         * lib/getusershell.c (setusershell): Use rewind rather than
50207         fseek/fseeko, to avoid configuration hassles with fseeko.
50208         Don't bother opening SHELLS_FILE if shellstream is NULL;
50209         it's not necessary.
50210
50211 2000-11-05  Jim Meyering  <meyering@lucent.com>
50212
50213         * lib/makepath.h (make_dir): Declare.
50214         * lib/makepath.c (make_dir): Remove `static' attribute.
50215         Tweak a comment.
50216
50217 2000-11-04  Jim Meyering  <meyering@lucent.com>
50218
50219         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
50220
50221 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
50222
50223         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
50224         last one in a bucket, advance to the next bucket.
50225
50226 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
50227
50228         * lib/fnmatch.c: Do not comment out all the code if we are using
50229         the GNU C library, because in some cases we are replacing buggy
50230         code in the GNU C library itself.
50231
50232 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
50233
50234         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
50235         (regex_compile): Catch bogus \(\1\).
50236
50237 2000-10-30  Paul Eggert  <eggert@twinsun.com>
50238
50239         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
50240         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
50241         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
50242
50243 2000-10-30  Paul Eggert  <eggert@twinsun.com>
50244
50245         * lib/error.h, getline.h, modechange.h:
50246         Remove "2000" from Copyright line, as the file hasn't been
50247         changed this year other than in the copyright notice.
50248
50249         * lib/xalloc.h: Add "2000" to Copyright line, as this file
50250         was changed this year.
50251
50252 2000-10-29  Jim Meyering  <meyering@lucent.com>
50253
50254         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
50255         renaming.
50256         * m4/ls-mntd-fs.m4: Likewise
50257
50258 2000-10-29  Jim Meyering  <meyering@lucent.com>
50259
50260         * lib/xstat.in: Fix grammar in comment.
50261
50262 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
50263
50264         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
50265         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
50266         doesn't define __restrict_arr.
50267
50268 2000-10-28  Jim Meyering  <meyering@lucent.com>
50269
50270         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
50271         (jm_PREREQ_MEMCHR): New function.
50272
50273 2000-10-28  Jim Meyering  <meyering@lucent.com>
50274
50275         * lib/memchr.c: Update from libc.
50276         Adjust for portability:
50277         [HAVE_STDLIB_H]: Include stdlib.h.
50278         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
50279         Undef __memchr, too.
50280         [!weak_alias]: Define __memchr to memchr.
50281
50282         * lib/regex.c: Update from libc.
50283         * lib/regex.h: Likewise.
50284         * lib/getopt1.c: Likewise.
50285         * lib/memcmp.c: Likewise.
50286
50287         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
50288         Avoid using fseek, when possible -- it's broken by design.
50289         Patch by Ulrich Drepper.
50290
50291 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
50292
50293         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
50294         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
50295         Giving in to popular pressure to shut up the compiler with casts.
50296
50297 2000-10-26  Jim Meyering  <meyering@lucent.com>
50298
50299         * lib/strftime.c: Update from libc.
50300
50301 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
50302
50303         * regex.c: More `unsigned char' -> `re_char' changes.
50304         Also change several `int' into `re_wchar_t'.
50305         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
50306         (PUSH_FAILURE_POINTER): Don't cast any more.
50307         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
50308         We want GCC to complain, since this piece of code makes
50309         re_match non-reentrant, which *should* be fixed.
50310         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
50311         (EXTEND_BUFFER): Use RETALLOC.
50312         (SET_LIST_BIT): Don't cast.
50313         (re_wchar_t): New type.
50314         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
50315         that those two functions will always properly return.
50316         (IMMEDIATE_QUIT_CHECK): Cast to void.
50317         (analyse_first): Use recursion rather than an explicit stack.
50318         (re_compile_fastmap): Can't fail anymore.
50319         (re_search_2): Don't check re_compile_fastmap for failure.
50320         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
50321         Now also sets the new value (passed in a new argument).
50322         (re_match_2_internal): Use it.
50323         Also, use a new var `reg' of type size_t when looping through regs
50324         rather than reuse the inappropriate `mcnt'.
50325
50326 2000-10-25  Jim Meyering  <meyering@lucent.com>
50327
50328         * lib/obstack.c: Update from libc.
50329
50330 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
50331
50332         * regex.c (regex_compile): Change the way of handling a range from
50333         a char less than 256 to a char not less than 256.
50334
50335 2000-10-24  Andrew Innes  <andrewi@gnu.org>
50336
50337         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
50338         NT-Emacs only.
50339         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
50340         so that re_search functions only quit when callers expect them to.
50341
50342 2000-10-23  Jim Meyering  <meyering@lucent.com>
50343
50344         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
50345         wrong.  That set_locale call must not have any side effects.
50346         From Paul Eggert.
50347
50348 2000-10-22  Jim Meyering  <meyering@lucent.com>
50349
50350         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
50351         [CYCLIC]: Remove now-unused definition.
50352
50353         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
50354         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
50355         Suggestion from Ulrich Drepper.
50356
50357 2000-10-21  Jim Meyering  <meyering@lucent.com>
50358
50359         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
50360         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
50361         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
50362
50363 2000-10-21  Jim Meyering  <meyering@lucent.com>
50364
50365         * lib/dirname.c (memrchr): Declare if necessary.
50366         (dir_name): Remove the restriction that there be no
50367         trailing slashes.  Now, this code skips past them, effectively
50368         ignoring them.
50369         [TEST_DIRNAME] (main): New unit tests.
50370
50371         * lib/memrchr.c: New file from GNU libc.
50372         Undef __memrchr, too.
50373         [!weak_alias]: Define __memrchr to memrchr.
50374         Guard weak_alias use with `#ifdef weak_alias'.
50375
50376 2000-10-21  Jim Meyering  <meyering@lucent.com>
50377
50378         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
50379         (dir_name): Use dir_name_r.
50380         * lib/dirname.h (dir_name_r): Declare it.
50381
50382 2000-10-17  Jim Meyering  <meyering@lucent.com>
50383
50384         * lib/quote.h (PARAMS): Define and use.
50385         Reported by Akim Demaille.
50386
50387         * lib/getopt.c: Update from libc.
50388
50389 2000-10-16  Jim Meyering  <meyering@lucent.com>
50390
50391         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
50392         setlocale.
50393         From Jan Fedak.
50394
50395 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
50396
50397         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
50398
50399 2000-09-25  Jim Meyering  <meyering@lucent.com>
50400
50401         * lib/md5.h (rol): Define (from GnuPG).
50402
50403         * lib/sha.c: Give credit (GnuPG) where due.
50404         (M): Use rol rather than open-coding it.
50405         Add a FIXME comment.
50406
50407 2000-09-21  Jim Meyering  <meyering@lucent.com>
50408
50409         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
50410         Reported by Michael Stone.
50411
50412 2000-09-20  Jim Meyering  <meyering@lucent.com>
50413
50414         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
50415         (noinst_HEADERS): Add sha.h.
50416         Based on code from Scott G. Miller and from GnuPG.
50417
50418 2000-09-18  Jim Meyering  <meyering@lucent.com>
50419
50420         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
50421         LIBS. Otherwise, everyone ends up linking with -lelf for some
50422         configurations.
50423         Reported by Mike Stone.
50424
50425 2000-09-15  Jim Meyering  <meyering@lucent.com>
50426
50427         * lib/regex.c: Update from libc.
50428
50429 2000-09-10  Jim Meyering  <meyering@lucent.com>
50430
50431         * lib/getopt.c (_getopt_internal): Update from glibc.
50432
50433 2000-09-09  Jim Meyering  <meyering@lucent.com>
50434
50435         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
50436         think it should be used as a general replacement for isascii.
50437         * lib/fnmatch.c: Likewise.
50438         * lib/mbswidth.c: Likewise
50439         * lib/regex.c: Likewise.
50440
50441         Don't use atoi.
50442         * lib/userspec.c: Include sys/param.h and limits.h.
50443         Include xstrtol.h.
50444         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
50445         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
50446         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
50447         UID, GID.  Check range.
50448
50449 2000-09-06  Jim Meyering  <meyering@lucent.com>
50450
50451         * lib/getopt.c (_getopt_internal): Update from glibc.
50452
50453 2000-08-30  Jim Meyering  <meyering@lucent.com>
50454
50455         * lib/strftime.c: Merge in changes from GNU libc.
50456
50457 2000-08-26  Jim Meyering  <meyering@lucent.com>
50458
50459         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
50460         * m4/fpending.m4: New file.
50461
50462 2000-08-26  Jim Meyering  <meyering@lucent.com>
50463
50464         * lib/closeout.c: Include "__fpending.h".
50465         (close_stdout_status): Return right away if there's nothing to flush.
50466
50467         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
50468         * lib/__fpending.c: New file.
50469         * lib/__fpending.h: New file.
50470
50471 2000-08-20  Jim Meyering  <meyering@lucent.com>
50472
50473         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
50474         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
50475         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
50476
50477 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
50478
50479         Improve fileutils installation on systems where running
50480         programs (like install) can't be unlinked.
50481         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
50482         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
50483
50484 2000-08-07  Paul Eggert  <eggert@twinsun.com>
50485
50486         Standardize on "memory exhausted" instead of "Memory exhausted"
50487         or "virtual memory exhausted".
50488         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
50489         "virtual memory exhausted".
50490         * lib/same.c (same_name): Invoke xalloc_die instead of printing
50491         our own message.
50492         * lib/userspec.c (parse_user_spec): Likewise.
50493         * lib/bumpalloc.h: comment fix
50494         * lib/same.c, userspec.c: Include xalloc.h.
50495
50496         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
50497         not char *const and pointing to a constant array.
50498         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
50499         (xrealloc): Comment fix.
50500
50501         * lib/userspec.c (parse_user_spec):
50502         Don't translate a message until just before returning,
50503         to avoid unnecessary translation.
50504
50505 2000-08-07  Jim Meyering  <meyering@lucent.com>
50506
50507         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
50508         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
50509         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
50510         getgroups.c, gethostname.c, getopt.h, group-member.c,
50511         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
50512         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
50513         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
50514         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
50515         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
50516         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
50517         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
50518         yesno.c: Back out Copyright date changes for each file with no change
50519         this year.  This eases coordination with other programs using the same
50520         source code modules.  From Paul Eggert.
50521
50522 2000-08-06  Paul Eggert  <eggert@twinsun.com>
50523
50524         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
50525         not char, for compatibility with glibc 2.1.3 strftime.c.
50526
50527 2000-08-03  Greg McGary  <greg@mcgary.org>
50528
50529         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
50530         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
50531         (EXTEND_BUFFER): Use them.
50532
50533 2000-08-01  Jim Meyering  <meyering@lucent.com>
50534
50535         * lib/dirname.c (ISSLASH): Define.
50536         (BACKSLASH_IS_PATH_SEPARATOR): Define.
50537         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
50538         both `\' and `/' may be use as path separators.
50539         Based on a patch from Prashant TR.
50540
50541 2000-07-31  Paul Eggert  <eggert@twinsun.com>
50542
50543         * lib/quotearg.c (quotearg_n_options): Don't make the initial
50544         slot vector a constant, since it might get modified.
50545
50546 2000-07-31  Jim Meyering  <meyering@lucent.com>
50547
50548         * lib/xmalloc.c: Use `virtual memory exhausted', not
50549         `Memory exhausted'.
50550         * lib/obstack.c (print_and_abort): Likewise.
50551
50552 2000-07-30  Paul Eggert  <eggert@twinsun.com>
50553
50554         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
50555         buffer, so that the caller can always quote one small
50556         component of a "memory exhausted" message in slot 0.
50557         From a suggestion by Jim Meyering.
50558
50559 2000-07-30  Jim Meyering  <meyering@lucent.com>
50560
50561         * lib/makepath.c (make_path): Quote the other instance, too.
50562
50563         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
50564         (STATIC_BUF_SIZE): Define.
50565         (quotearg_n_options): Use only statically allocated storage when
50566         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
50567         than STATIC_BUF_SIZE.
50568
50569 2000-07-29  Jim Meyering  <meyering@lucent.com>
50570
50571         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
50572         * lib/dirname.c (dir_name): Likewise.
50573
50574         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
50575         `/'.
50576
50577         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
50578         (dir_name): Assert that there are no trailing slashes.
50579
50580 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
50581
50582         * lib/mbswidth.h (mbswidth): Add a flags argument.
50583         (mbswidth): New declaration.
50584         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
50585         * lib/mbswidth.c (mbswidth): Add a flags argument.
50586         (mbsnwidth): New function.
50587
50588 2000-07-24  Jim Meyering  <meyering@lucent.com>
50589
50590         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
50591
50592 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50593
50594         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
50595
50596 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50597
50598         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
50599         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
50600         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
50601         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
50602         invoke multibyte primitives.
50603
50604 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50605
50606         * lib/quotearg.c:
50607         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
50608         so that mbstate_t is always defined.
50609
50610         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
50611         be 1 in at least one GCC installation, and this configuration
50612         error is likely to be common.  Ignoring MB_LEN_MAX hurts
50613         performance on hosts that have mbrtowc but have only unibyte
50614         locales, but I assume these hosts are rare.
50615
50616 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50617
50618         * lib/mbswidth.c (_XOPEN_SOURCE):
50619         Don't define; this causes problems on Solaris 7.
50620         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
50621
50622 2000-07-23  Jim Meyering  <meyering@lucent.com>
50623
50624         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
50625         too: getgrgid, getpwuid, getuid.
50626
50627 2000-07-23  Jim Meyering  <meyering@lucent.com>
50628
50629         * lib/basename.c (base_name): Add an assertion.
50630
50631 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
50632
50633         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
50634         shadow its mbsinit function.
50635
50636 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
50637
50638         * lib/mbswidth.h: New file.
50639         * lib/mbswidth.c: New file.
50640         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
50641         (noinst_HEADERS): Add mbswidth.h.
50642
50643 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
50644
50645         * lib/config.charset: Add support for FreeBSD. Improve support for
50646         HP-UX and IRIX 6.
50647
50648 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
50649
50650         * m4/mbswidth.m4: New file.
50651         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
50652
50653 2000-07-15  Jim Meyering  <meyering@lucent.com>
50654
50655         * lib/makepath.c: Include quote.h.
50656         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
50657         corresponding argument in a `quote (...)' call.
50658         Give better diagnostics.
50659
50660         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
50661         (noinst_HEADERS): Add quote.h.
50662
50663         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
50664         from tar's src/misc.c.
50665         * lib/quote.h: New file.  Prototypes for same.
50666
50667 2000-07-14  Paul Eggert  <eggert@twinsun.com>
50668
50669         From a suggestion by Bruno Haible.
50670         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
50671         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
50672         to decide whether to define the BeOS workaround macro;
50673         this adjusts to the change to AC_MBSTATE_T.
50674
50675 2000-07-14  Jim Meyering  <meyering@lucent.com>
50676
50677         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
50678         jm_AC_TYPE_UINTMAX_T.
50679
50680 2000-07-13  Paul Eggert  <eggert@twinsun.com>
50681
50682         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
50683
50684         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
50685         quotearg_buffer_restyled): Add support for
50686         clocale_quoting_style.  Undo previous change to
50687         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
50688         and "{RIGHT QUOTATION MARK}" msgids.
50689
50690 2000-07-10  Paul Eggert  <eggert@twinsun.com>
50691
50692         From a suggestion by Bruno Haible.
50693         * m4/mbstate_t.m4 (AC_MBSTATE_T):
50694         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
50695         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
50696         and mbstate_t, to a single-part test that simply defines mbstate_t.
50697         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
50698         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
50699
50700 2000-07-10  Jim Meyering  <meyering@lucent.com>
50701
50702         * m4/strerror_r.m4: Mirror the correction made in autoconf.
50703
50704         * m4/gnu-source.m4: Output to confdefs.h directly.
50705         Suggestion from Akim Demaille.
50706
50707 2000-07-09  Paul Eggert  <eggert@twinsun.com>
50708
50709         The old behavior of quoting `like this' doesn't look good with
50710         newer, ISO-style fonts.  See:
50711         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
50712
50713         Instead, quote "like this" by default.  Let the translator
50714         tailor the locale-specific quoting behavior by providing
50715         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
50716
50717         * lib/quotearg.c (N_): New macro.
50718         (gettext_default): New function.
50719         (quotearg_buffer_restyled): Use
50720         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
50721         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
50722
50723 2000-07-09  Jim Meyering  <meyering@lucent.com>
50724
50725         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
50726         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
50727
50728         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
50729         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
50730
50731 2000-07-09  Jim Meyering  <meyering@lucent.com>
50732
50733         * lib/Most files: Update copyright dates to include 2000.
50734
50735 2000-07-08  Jim Meyering  <meyering@lucent.com>
50736
50737         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
50738         if not defined.
50739         (xgethostname): Remove now-unnecessary #ifdef.
50740         Move declaration of `err' into loop where it's used.
50741
50742 2000-07-05  Paul Eggert  <eggert@twinsun.com>
50743         and Bruno Haible  <haible@clisp.cons.org>
50744
50745         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
50746         only if the test for an object-type mbstate_t fails.  This
50747         prevents us from mistakenly reporting that mbstate_t is a
50748         system object type after we "#define mbstate_t int" to work
50749         around its lack.
50750
50751 2000-07-05  Paul Eggert  <eggert@twinsun.com>
50752         and Bruno Haible  <haible@clisp.cons.org>
50753
50754         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
50755
50756 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50757
50758         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
50759         to strerror_r.
50760         Include <ctype.h> for use of isalpha.
50761
50762 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50763
50764         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
50765         by allocating a larger buffer. Test the gethostname return value for
50766         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
50767         returns an error and ENAMETOOLONG isn't defined.
50768
50769 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50770
50771         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
50772         dimension.
50773
50774 2000-07-04  Jim Meyering  <meyering@lucent.com>
50775
50776         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
50777         of the deprecated AC_CHECKING.
50778
50779 2000-07-04  Jim Meyering  <meyering@lucent.com>
50780
50781         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
50782         Reported by Bruno Haible.
50783
50784 2000-07-04  Jim Meyering  <meyering@lucent.com>
50785
50786         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
50787         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
50788         lacks mbrtowc.
50789
50790 2000-07-03  Paul Eggert  <eggert@twinsun.com>
50791
50792         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
50793         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
50794
50795 2000-07-03  Paul Eggert  <eggert@twinsun.com>
50796         and Bruno Haible  <haible@clisp.cons.org>
50797
50798         * lib/quotearg.c (mbrtowc):
50799         Assign to *pwc, and return 1 only if result is nonzero.
50800         (iswprint): Use ISPRINT when substituting our own mbrtowc.
50801
50802 2000-07-03  Jim Meyering  <meyering@lucent.com>
50803
50804         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
50805
50806 2000-07-03  Jim Meyering  <meyering@lucent.com>
50807
50808         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
50809         This is necessary to get a definition of e.g., UTMP_FILE on
50810         HP-UX 10.20.
50811         From Bob Proulx.
50812
50813 2000-07-02  Jim Meyering  <meyering@lucent.com>
50814
50815         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
50816
50817         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
50818         AC_LIBOBJ(function_name).
50819         * m4/chown.m4: Likewise.
50820         * m4/fnmatch.m4: Likewise.
50821         * m4/ftruncate.m4: Likewise.
50822         * m4/getgroups.m4: Likewise.
50823         * m4/getline.m4: Likewise.
50824         * m4/group-member.m4: Likewise.
50825         * m4/jm-macros.m4: Likewise.
50826         * m4/lstat.m4: Likewise.
50827         * m4/malloc.m4: Likewise.
50828         * m4/memcmp.m4: Likewise.
50829         * m4/nanosleep.m4: Likewise.
50830         * m4/putenv.m4: Likewise.
50831         * m4/realloc.m4: Likewise.
50832         * m4/regex.m4: Likewise.
50833         * m4/stat.m4: Likewise.
50834         * m4/strftime.m4: Likewise.
50835
50836 2000-07-02  Jim Meyering  <meyering@lucent.com>
50837
50838         * lib/quotearg.c (mbstate_t): Don't define here.
50839
50840 2000-07-02  Jim Meyering  <meyering@lucent.com>
50841
50842         * lib/nanosleep.c (SIGCONT): Define if not already defined.
50843
50844 2000-07-01  Jim Meyering  <meyering@lucent.com>
50845
50846         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
50847
50848 2000-07-01  Jim Meyering  <meyering@lucent.com>
50849
50850         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
50851         problem.
50852
50853 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
50854
50855         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
50856         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
50857
50858 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
50859
50860         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
50861         per change in ../m4/ls-mntd-fs.m4.
50862         (read_filesystem_list): Ignore symbolic links.
50863
50864 2000-06-29  Jim Meyering  <meyering@lucent.com>
50865
50866         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
50867         for declaration of strcmp.
50868
50869         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
50870
50871         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
50872         Avoid warning by casting result to `char *' to remove `const'.
50873
50874 2000-06-28  Jim Meyering  <meyering@lucent.com>
50875
50876         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
50877         included by quotearg.c, for which we perform this test.  From
50878         Bruno Haible.
50879
50880 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
50881
50882         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
50883         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
50884         <utmpx.h> exists, put readutmp.o into LIBOBJS.
50885
50886 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
50887
50888         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
50889
50890 2000-06-26  Paul Eggert  <eggert@twinsun.com>
50891
50892         savedir now sets errno on failure and invokes xmalloc to get memory.
50893         Fix a couple of other minor bugs while we're at it.
50894
50895         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
50896         (NAMLEN): Remove macro.
50897         (malloc, realloc): Remove decls.
50898         (stpcpy): Likewise.
50899         ("xalloc.h"): Include.
50900         (NAME_SIZE_DEFAULT): New macro.
50901         (savedir): Use xmalloc / xrealloc to allocate memory.
50902         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
50903         Skip "" directory entries.
50904         Use strlen to calculate directory entry length, since the old method
50905         is rarely used these days and isn't worth supporting.
50906         Don't use a pointer after freeing it.
50907         Check for integer overflow when calculating allocation size.
50908         Use memcpy to copy entries, instead of stpcpy.
50909         Set errno properly when returning NULL.
50910         Check for readdir error.
50911
50912 2000-06-26  Jim Meyering  <meyering@lucent.com>
50913
50914         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
50915
50916 2000-06-25  Jim Meyering  <meyering@lucent.com>
50917
50918         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
50919         Linux header bug when _XOPEN_SOURCE is defined to 500.
50920
50921 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
50922
50923         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
50924         deficiency.
50925
50926 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
50927
50928         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
50929         Include xalloc.h.
50930         Don't include <stdlib.h>.  Don't declare malloc, realloc.
50931
50932 2000-06-24  Jim Meyering  <meyering@lucent.com>
50933
50934         * m4/strerror_r.m4: Revive this file -- to try out an experimental
50935         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
50936         for which strerror does return char*, but which lacks a conveniently
50937         accessible declaration of the function.  If the compile-test says
50938         strerror_r doesn't work, then resort to a `run'-test that works on
50939         BeOS and segfaults on DEC Unix.
50940
50941 2000-06-24  Jim Meyering  <meyering@lucent.com>
50942
50943         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
50944
50945 2000-06-23  Paul Eggert  <eggert@twinsun.com>
50946
50947         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
50948         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
50949
50950 2000-06-23  Paul Eggert  <eggert@twinsun.com>
50951
50952         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
50953         (mbrtowc, mbstate_t): Define substitutes if
50954         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
50955         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
50956         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
50957
50958 2000-06-23  Jim Meyering  <meyering@lucent.com>
50959
50960         * m4/afs.m4: Add missing AC_MSG_RESULT.
50961         Reported by Bruno Haible.
50962
50963         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
50964         Suggestion from Bruno Haible.
50965
50966 2000-06-23  Jim Meyering  <meyering@lucent.com>
50967
50968         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
50969
50970 2000-06-21  Jim Meyering  <meyering@lucent.com>
50971
50972         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
50973
50974 2000-06-21  Jim Meyering  <meyering@lucent.com>
50975
50976         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
50977         (noinst_HEADERS): Add getstr.h.
50978
50979         * lib/getline.c (getstr): Move into a separate file.
50980         * lib/getstr.c (getstr): New file, extracted from getline.c, with
50981         the following changes: new parameter, delim2; both delim[12]
50982         parameters have type `int', not `char'.  The latter would lose
50983         with 8-bit delimiters.
50984         * lib/getstr.h: New file.
50985
50986 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
50987
50988         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
50989         than 1024, return a memory chunk of least possible size, instead
50990         of size PATH_MAX + 2. In the loop, increment the size proportionally.
50991         Use free/xmalloc instead of xrealloc to avoid copying for very long
50992         paths.
50993
50994 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
50995
50996         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
50997         the empty string.
50998
50999 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
51000
51001         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
51002         address, not strdup.  Include <stdlib.h> and don't declare free().
51003
51004 2000-06-19  Jim Meyering  <meyering@lucent.com>
51005
51006         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
51007
51008 2000-06-18  Jim Meyering  <meyering@lucent.com>
51009
51010         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
51011
51012         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
51013         `checking whether...' message to be consistent with that of the
51014         lstat test.
51015
51016 2000-06-18  Jim Meyering  <meyering@lucent.com>
51017
51018         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
51019         Besides, these days every porting target provides a mkdir function.
51020
51021         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
51022         needed. (this snippet comes from src/system.h).
51023
51024 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
51025
51026         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
51027
51028 2000-06-15  Paul Eggert  <eggert@twinsun.com>
51029
51030         * lib/human.c (adjust_value): New function.
51031         (human_readable_inexact): Apply rounding style even when
51032         printing approximate values.
51033
51034 2000-06-14  Paul Eggert  <eggert@twinsun.com>
51035
51036         * lib/human.c (human_readable_inexact): Allow an input block
51037         size that is not a multiple of the output block size, and vice versa.
51038         Reported by Piergiorgio Sartor.
51039
51040 2000-06-14  Paul Eggert  <eggert@twinsun.com>
51041
51042         * lib/getdate.y (get_date): Apply relative times after time
51043         zone indicator, not before.  Reported by Todd A. Jacobs.
51044
51045 2000-06-13  Jim Meyering  <meyering@lucent.com>
51046
51047         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
51048
51049         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
51050
51051 2000-06-12  Paul Eggert  <eggert@twinsun.com>
51052
51053         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
51054
51055 2000-06-12  Jim Meyering  <meyering@lucent.com>
51056
51057         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
51058         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
51059         optional argument.
51060         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
51061         the optional argument, `lib'.
51062
51063 2000-06-08  Jim Meyering  <meyering@lucent.com>
51064
51065         * m4/largefile.m4: Remove file (now that it's part of autoconf).
51066
51067 2000-06-04  Paul Eggert  <eggert@twinsun.com>
51068
51069         Rewrite largefile configuration so that we don't need to run
51070         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
51071         AC_CANONICAL_HOST in configure.in -- jmm]
51072
51073         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
51074         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
51075         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
51076         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
51077         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
51078         All uses changed.
51079         Instead of inspecting the output of getconf, try to compile the
51080         test program without and with the macro definition.
51081         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
51082         for getconf.  Instead, check for the needed flags by compiling
51083         test programs.
51084
51085 2000-06-04  Paul Eggert  <eggert@twinsun.com>
51086
51087         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
51088
51089 2000-06-04  Jim Meyering  <meyering@lucent.com>
51090
51091         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
51092         SunOS 4.1.4 for which gid_t is an unsigned type.
51093
51094 2000-06-03  Jim Meyering  <meyering@lucent.com>
51095
51096         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
51097         now that autoconf requires that.
51098
51099         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
51100         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
51101         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
51102
51103 2000-06-03  Jim Meyering  <meyering@lucent.com>
51104
51105         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
51106
51107 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
51108
51109         * m4/glibc21.m4: New file.
51110         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
51111
51112 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
51113
51114         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
51115         newer, don't install charset.alias.
51116         * lib/config.charset: Change the Linux/glibc rules so they become empty
51117         on glibc-2.1 or newer.
51118
51119 2000-06-02  Jim Meyering  <meyering@lucent.com>
51120
51121         * lib/mountlist.c: Back out last change.  Instead, do this...
51122         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
51123         me_dummy member using the same `ignore'-testing code.
51124         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
51125         fs_type strings.
51126         From Mark D. Roth.
51127
51128 2000-05-29  Jim Meyering  <meyering@lucent.com>
51129
51130         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
51131         mounts with the `ignore' attribute.  Based on a patch from
51132         Mark D. Roth.
51133
51134 2000-05-28  Jim Meyering  <meyering@lucent.com>
51135
51136         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
51137         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51138         * m4/stat.m4: Likewise.
51139         * m4/lstat.m4: Likewise.
51140         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
51141
51142         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
51143         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
51144
51145 2000-05-26  Jim Meyering  <meyering@lucent.com>
51146
51147         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
51148
51149 2000-05-24  Jim Meyering  <meyering@lucent.com>
51150
51151         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
51152         autoconf requires that.
51153         * m4/lib-check.m4: Likewise.
51154         * m4/jm-macros.m4: Likewise.
51155         * m4/strftime.m4: Likewise.
51156
51157         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
51158         AC_CHECK_DECLS, now that autoconf requires that.
51159
51160 2000-05-22  Jim Meyering  <meyering@lucent.com>
51161
51162         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51163         * m4/lstat.m4: Likewise.
51164
51165 2000-05-22  Jim Meyering  <meyering@lucent.com>
51166
51167         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
51168
51169 2000-05-20  Jim Meyering  <meyering@lucent.com>
51170
51171         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
51172         (jm_PREREQ): Use it.
51173
51174 2000-05-18  Jim Meyering  <meyering@lucent.com>
51175
51176         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
51177         back, too, since it may have been modified by allocate_entry.
51178         (hash_delete): Rewrite to use neither the assignment operator
51179         nor the comma operator in an if-expression.
51180
51181 2000-05-15  Paul Eggert  <eggert@twinsun.com>
51182
51183         * lib/closeout.c:
51184         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
51185         Remove; no longer needed.
51186         "quotearg.h": Add include.
51187         (file_name): Do not bother to explicitly initialize to NULL; it's less
51188         efficient on some hosts.
51189         (close_stdout_status): Remove test as to whether stdout was already
51190         closed; it breaks for the case "echo x | sort >&-".
51191         Quote file name colons.
51192         Do not assume that _("write error") lacks format strings.
51193
51194 2000-05-15  Jim Meyering  <meyering@lucent.com>
51195
51196         * lib/version-etc.c (version_etc_copyright): Update the copyright
51197         string used in all --version output.
51198
51199 2000-05-14  Jim Meyering  <meyering@lucent.com>
51200
51201         * lib/closeout.c (close_stdout_set_file_name): New function.
51202         (close_stdout_status): Use new file-scoped global.
51203         Return right away if fstat says the stdout file descriptor is invalid.
51204         * lib/closeout.h (close_stdout_set_file_name): Declare.
51205
51206 2000-05-10  Jim Meyering  <meyering@lucent.com>
51207
51208         * lib/closeout.c [default_exit_status]: New file-scoped variable.
51209         (close_stdout_set_status): New function.
51210         * lib/closeout.h (close_stdout_set_status): Declare.
51211
51212 2000-05-09  Jim Meyering  <meyering@lucent.com>
51213
51214         * m4/gettext.m4: Rename this...
51215         * m4/libintl.m4: ...to this.
51216
51217 2000-05-08  Jim Meyering  <meyering@lucent.com>
51218
51219         * lib/long-options.c: Don't include closeout.h.
51220         (parse_long_options): Don't call close_stdout for --version.
51221
51222 2000-05-06  Paul Eggert  <eggert@twinsun.com>
51223
51224         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
51225         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
51226         2.1.3 bug.  This avoids a clash when files like regex.c define
51227         _GNU_SOURCE.
51228
51229 2000-05-06  Jim Meyering  <meyering@lucent.com>
51230
51231         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
51232         (AC_REPLACE_FUNCS): Add strnlen.
51233
51234         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
51235         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
51236
51237         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
51238         AC_SEARCH_LIBS call for nanosleep.
51239         (LIB_NANOSLEEP): Set and AC_SUBST.
51240
51241 2000-05-06  Jim Meyering  <meyering@lucent.com>
51242
51243         * lib/strnlen.c: Undefine __strnlen and strnlen.
51244         [!weak_alias]: Define __strnlen to strnlen.
51245
51246         * lib/atexit.c: New file, from libiberty.
51247
51248 2000-05-06  Jim Meyering  <meyering@lucent.com>
51249
51250         * lib/closeout.c (close_stdout_status): Also check for errors on the
51251         stderr stream.
51252
51253 2000-05-05  Jim Meyering  <meyering@lucent.com>
51254
51255         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
51256         AC_SEARCH_LIBS call for clock_gettime.
51257         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
51258
51259         * m4/search-libs.m4: Update from autoconf.
51260
51261         su doesn't work on Solaris 2.6.
51262         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
51263         <shadow.h>.  Reported by Dragos Harabor.
51264
51265 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
51266
51267         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
51268         memcpy instead of xmalloc, xrealloc, path_concat.
51269         (locale_charset): Treat empty environment variables as absent.
51270         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
51271
51272 2000-05-04  Jim Meyering  <meyering@lucent.com>
51273
51274         * lib/getopt.c: Update from glibc.
51275         * lib/obstack.c: Likewise.
51276         * lib/obstack.h: Likewise.
51277         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
51278         file
51279
51280         * lib/regex.h: Likewise.
51281         * lib/strndup.c: Likewise.
51282         * lib/strnlen.c: New file, from glibc.
51283
51284 2000-05-03  Jim Meyering  <meyering@lucent.com>
51285
51286         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
51287
51288 2000-05-02  Paul Eggert  <eggert@twinsun.com>
51289
51290         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
51291         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
51292         compile-time test, rather than inspecting host and OS, to
51293         decide whether to define _LARGEFILE_SOURCE.
51294
51295 2000-05-01  Jim Meyering  <meyering@lucent.com>
51296
51297         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
51298
51299         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
51300         Based on a patch from Bruno Haible.
51301
51302 2000-05-01  Jim Meyering  <meyering@lucent.com>
51303
51304         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
51305
51306 2000-04-29  Jim Meyering  <meyering@lucent.com>
51307
51308         * lib/path-concat.c: Declare strdup only if it's not defined.
51309         * lib/canon-host.c: Likewise.
51310
51311 2000-04-28  Jim Meyering  <meyering@lucent.com>
51312
51313         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
51314         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
51315         is included first, then limits.h is included by locale.h by libintl.h.
51316         From John David Anglin.
51317
51318 2000-04-25  Jim Meyering  <meyering@lucent.com>
51319
51320         * lib/makepath.c (S_IRWXUGO): Define.
51321         (make_path): Always perform explicit chmod if MODE specifies any
51322         of the `special' permission bits.  Prompted by a bug report against
51323         install from Mate Wierdl and Joost van Baal.
51324
51325 2000-04-18  Jim Meyering  <meyering@lucent.com>
51326
51327         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
51328         (jm_PREREQ): Use it.
51329
51330 2000-04-18  Jim Meyering  <meyering@lucent.com>
51331
51332         * lib/README: New file.
51333
51334         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
51335         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
51336
51337 2000-04-17  Jim Meyering  <meyering@lucent.com>
51338
51339         Get it right :-)
51340         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
51341         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
51342         Suggestion from Akim Demaille.
51343
51344 2000-04-17  Jim Meyering  <meyering@lucent.com>
51345
51346         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
51347         the definition of it to rpl_strftime also defined-away the system's
51348         declaration.
51349
51350 2000-04-15  Jim Meyering  <meyering@lucent.com>
51351
51352         Use `C' to denote so-called `contiguous' files, the same way
51353         that tar does.
51354         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
51355         (ftypelet): Use S_ISCTG.
51356         From Michael Deutschmann.
51357
51358 2000-04-14  Jim Meyering  <meyering@lucent.com>
51359
51360         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
51361         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
51362         clobbered.
51363
51364 2000-04-14  Jim Meyering  <meyering@lucent.com>
51365
51366         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
51367
51368 2000-04-13  Jim Meyering  <meyering@lucent.com>
51369
51370         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
51371         AH_VERBATIM to insert required #ifndef into config.h.in.
51372         Suggestion from Akim Demaille.
51373
51374 2000-04-12  Jim Meyering  <meyering@lucent.com>
51375
51376         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
51377         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
51378         Christian Krackowizer.
51379
51380         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
51381         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
51382         (AC_SYS_LARGEFILE): Require.
51383         (AM_C_PROTOTYPES): Require.
51384
51385 2000-04-08  Jim Meyering  <meyering@lucent.com>
51386
51387         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
51388         names don't conflict.  Reported by Eli Zaretskii.
51389
51390 2000-04-07  Jim Meyering  <meyering@lucent.com>
51391
51392         * lib/putenv.c: Move inclusion of errno.h so it follows that of
51393         sys/types.h, to work around system header problems on AIX 3.2.5.
51394         From Bruno Haible.
51395
51396 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
51397
51398         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
51399         bug.  Deal with the different error behavior of Irix iconv.
51400
51401 2000-04-05  Paul Eggert  <eggert@twinsun.com>
51402
51403         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
51404         IRIX if the installer said otherwise.
51405
51406 2000-04-05  Jim Meyering  <meyering@lucent.com>
51407
51408         Portability tweaks required for ultrix4.3.
51409         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
51410         (jm_CHECK_DECLS): Add getutent to the list of functions.
51411         (_jm_DECL_HEADERS): Add utmpx.h.
51412         From John David Anglin.
51413
51414         * m4/strftime.m4: Back out the 2000-04-02 change.
51415         Instead of that change, simply undefine putenv in the test program.
51416
51417 2000-04-05  Jim Meyering  <meyering@lucent.com>
51418
51419         Portability tweaks required for ultrix4.3.
51420         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
51421         getutent.
51422         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
51423         * lib/canon-host.c: Declare strdup.
51424         * lib/path-concat.c: Likewise.
51425         From John David Anglin.
51426
51427 2000-04-04  Jim Meyering  <meyering@lucent.com>
51428
51429         Be more DOS 8.3-friendly.
51430         * lib/ref-add.sin: Renamed from ref-add.sed.in.
51431         * lib/ref-del.sin: Renamed from ref-del.sed.in.
51432         * lib/Makefile.am: Reflect renaming.
51433         Reported by Eli Zaretskii.
51434
51435         Use a temporary file name that won't clash with `charset.alias'
51436         in the DOS 8.3 name space.
51437         * lib/Makefile.am (charset_tmp): Define.
51438         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
51439         (uninstall-local): Likewise.
51440         Reported by Eli Zaretskii.
51441
51442 2000-04-03  Jim Meyering  <meyering@lucent.com>
51443
51444         * m4/gettext.m4: Fix typo in comment.
51445
51446         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
51447         textutils/configure.in).  Suggestion from Paul Eggert.
51448         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
51449
51450 2000-04-02  Paul Eggert  <eggert@twinsun.com>
51451
51452         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
51453         variable in the shell rather than using putenv, which isn't
51454         portable.  This avoids the configure-time inter-test dependency
51455         on the potentially-renamed putenv function.
51456
51457 2000-03-30  Paul Eggert  <eggert@twinsun.com>
51458
51459         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
51460         before checking struct stat.st_blksize, so that
51461         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
51462
51463 2000-03-29  Paul Eggert  <eggert@twinsun.com>
51464
51465         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
51466         since strftime.c uses HAVE_STRFTIME to decide whether to use
51467         the underlying strftime.
51468
51469 2000-03-29  Paul Eggert  <eggert@twinsun.com>
51470
51471         * lib/time/strftime.c (my_strftime): Make sure we call the system
51472         strftime, not ourselves, when invoking the underlying strftime.
51473
51474 2000-03-24  Jim Meyering  <meyering@lucent.com>
51475
51476         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
51477         (charset_alias): Define.
51478         (install-exec-local): Factor out common code.
51479         (uninstall-local): Split lines longer than 80.
51480         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
51481         (SUFFIXES): Define.
51482         (.sed.in.sed): New rule.  Don't redirect directly to $@.
51483         (CLEANFILES): Add ref-add.sed and ref-del.sed.
51484
51485 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
51486
51487         * lib/config.charset: Output a line containing "Packages using this
51488         file".
51489         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
51490         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
51491         ref-del.sed): New rules.
51492
51493 2000-03-17  Jim Meyering  <meyering@lucent.com>
51494
51495         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
51496         Otherwise, include <strings.h>
51497
51498 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
51499
51500         * lib/unicodeio.c (utf8_wctomb): New function.
51501         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
51502         format instead of in UCS-4 with platform dependent endianness.
51503
51504 2000-03-10  Jim Meyering  <meyering@lucent.com>
51505
51506         * m4/lib-check.m4: Look for getspnam in -lgen, too.
51507         From Marco Franzen.
51508
51509 2000-03-07  Paul Eggert  <eggert@twinsun.com>
51510
51511         * lib/savedir.c (savedir): Work even if directory size is
51512         negative; this can happen with some screwy NFS configurations.
51513
51514 2000-03-06  Jim Meyering  <meyering@lucent.com>
51515
51516         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
51517         if it's NULL (because we ran out of memory).  From Bruno Haible.
51518
51519 2000-03-05  Jim Meyering  <meyering@lucent.com>
51520
51521         * lib/localcharset.c ("path-concat.h"): Include.
51522         (get_charset_aliases): Use path_concat instead of ANSI string
51523         concatenation.
51524
51525         * lib/unicodeio.h (PARAMS): Define.
51526         Use it to guard prototype.
51527
51528 2000-03-04  Jim Meyering  <meyering@lucent.com>
51529
51530         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
51531         for lib/localcharset.c.
51532
51533 2000-03-04  Jim Meyering  <meyering@lucent.com>
51534
51535         * lib/Makefile.am (install-exec-local): Create $(libdir) before
51536         installing into it.
51537         (uninstall-local): Uncomment this rule so `make distcheck' works
51538         once again.
51539
51540         * lib/unicodeio.c (<errno.h>): Include it.
51541         (errno): Declare if not defined.
51542
51543         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
51544
51545         * lib/config.charset: New version, incorporating remarks from a linux
51546         i18n mailing list.  From Bruno Haible.
51547
51548 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
51549
51550         * m4/codeset.m4: New file.
51551         * m4/iconv.m4: New file.
51552         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
51553
51554 2000-03-03  Jim Meyering  <meyering@lucent.com>
51555
51556         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
51557
51558 2000-03-02  Jim Meyering  <meyering@lucent.com>
51559
51560         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
51561         the messages come out on separate lines.
51562
51563         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
51564         rather than jm_CHECK_DECLARATIONS.
51565         * m4/decl.m4: Remove now-unused file.
51566
51567         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
51568         geteuid.
51569
51570 2000-03-02  Jim Meyering  <meyering@lucent.com>
51571
51572         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
51573
51574 2000-03-01  Jim Meyering  <meyering@lucent.com>
51575
51576         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
51577         * lib/unicodeio.c: Likewise.
51578
51579 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
51580
51581         * lib/config.charset: New file.
51582         * lib/localcharset.c: New file.
51583         * lib/unicodeio.h, lib/unicodeio.c: New files.
51584         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
51585         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
51586         (noinst_HEADERS): Add unicodeio.h.
51587         (all-local, install-exec-local, charset.alias): New targets.
51588
51589 2000-02-28  Paul Eggert  <eggert@twinsun.com>
51590
51591         * lib/quotearg.c (ALERT_CHAR): New macro.
51592         (quotearg_buffer_restyled): Use it.
51593
51594 2000-02-27  Jim Meyering  <meyering@lucent.com>
51595
51596         * m4/check-decl.m4: Add getenv to the list.
51597
51598 2000-02-27  Jim Meyering  <meyering@lucent.com>
51599
51600         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
51601         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
51602
51603         * lib/backupfile.c: Guard inclusion of stdlib.h with
51604         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
51605         Declare malloc if needed.
51606
51607         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
51608         `#ifndef HAVE_DECL..'
51609         now that autoconf always defines the HAVE_DECL_ symbols.
51610         * lib/human.c: Likewise.
51611         * lib/same.c: Likewise.
51612         * lib/strtoumax.c: Likewise.
51613
51614         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
51615         declaration check was not run.
51616         * lib/hash.c: Likewise.
51617         * lib/human.c: Likewise.
51618         * lib/same.c: Likewise.
51619         * lib/strtoumax.c: Likewise.
51620
51621         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
51622         `.', then first look up the entire `.'-containing string as a login
51623         name.
51624
51625 2000-02-23  Jim Meyering  <meyering@lucent.com>
51626
51627         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
51628         in place of my hack.
51629
51630 2000-02-18  Paul Eggert  <eggert@twinsun.com>
51631
51632         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
51633         (textint): New typedef.
51634         (parser_control): Member year changed from int to textint.
51635         All uses changed.
51636         (YYSTYPE): Removed; replaced by %union with int and textint members.
51637         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
51638         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
51639         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
51640         (tSNUMBER, tUNUMBER): Now of type <textintval>.
51641         (date, number, to_year): Use width of number in digits, not its value,
51642         to determine whether it's a 2-digit year, or a 2-digit time.
51643         (yylex): Store number of digits of numeric tokens.
51644         Reported by John Kendall.
51645
51646         (parser_control): Changed from struct parser_control to typedef (for
51647         consistency).  All uses changed.
51648
51649         (tID): Removed; not used.
51650         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
51651
51652 2000-02-14  Paul Eggert  <eggert@twinsun.com>
51653
51654         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
51655         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
51656
51657 2000-02-12  Jim Meyering  <meyering@lucent.com>
51658
51659         * lib/userspec.c (ISDIGIT): Define it.
51660         (isdigit): Remove definition.
51661         (is_number): Use ISDIGIT, not isdigit.
51662         <libintl.h>: Include.
51663         (_ and N_): Define.
51664         (parse_user_spec): Mark translatable strings.
51665
51666 2000-02-10  Jim Meyering  <meyering@lucent.com>
51667
51668         With these changes, nanosleep.[ch] are finally enough like the other
51669         lib/* replacement files to compile on a few more losing systems.
51670
51671         * lib/nanosleep.h: Don't include config.h.
51672         Remove prototype from declaration of nanosleep.
51673         (PARAMS): Remove now-unneeded definition.
51674         * lib/nanosleep.c: #undef nanosleep.
51675         (rpl_nanosleep): Rename from nanosleep.
51676
51677 2000-02-10  Jim Meyering  <meyering@lucent.com>
51678
51679         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
51680         gnu_nanosleep to rpl_nanosleep.
51681
51682 2000-02-09  Jim Meyering  <meyering@lucent.com>
51683
51684         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
51685         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
51686
51687 2000-02-08  Akim Demaille  <akim@epita.fr>
51688
51689         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
51690         `[' and `]' and remove uses of `changequote'.
51691         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
51692         (AC_SYS_LARGEFILE): Likewise.
51693         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
51694         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
51695         of changequote.
51696         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
51697         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
51698         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
51699         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
51700
51701 2000-02-05  Jim Meyering  <meyering@lucent.com>
51702
51703         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
51704         Remove explicit use of AC_HEADER_TIME.  It is required by
51705         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
51706         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
51707         in autoconf whereby the expansion of the latter ended up preceding
51708         the expansion of its prerequisite, AC_HEADER_TIME.
51709         Reported by Volker Borchert.
51710
51711 2000-02-03  Jim Meyering  <meyering@lucent.com>
51712
51713         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
51714
51715 2000-02-03  Jim Meyering  <meyering@lucent.com>
51716
51717         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
51718         rather than with `#if HAVE_UTMPNAME'.
51719
51720 2000-02-02  Jim Meyering  <meyering@lucent.com>
51721
51722         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
51723         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
51724         Reported by Eli Zaretskii.
51725
51726 2000-02-01  Jim Meyering  <meyering@lucent.com>
51727
51728         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
51729
51730 2000-01-31  Jim Meyering  <meyering@lucent.com>
51731
51732         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
51733         functions.  Add the time.h and sys/time.h headers along with the
51734         AC_REQUIRE'ment of AC_HEADER_TIME.
51735
51736 2000-01-31  Jim Meyering  <meyering@lucent.com>
51737
51738         * lib/nanosleep.h (nanosleep): Guard declaration with
51739         `#if ! HAVE_DECL_NANOSLEEP'.
51740         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
51741         the declaration in that vendor's sys/timers.h.
51742         Reported by Christian Krackowizer.
51743
51744         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
51745         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
51746         (ISPRINT): Likewise.
51747         Reported by Tom Tromey.
51748
51749 2000-01-30  Jim Meyering  <meyering@lucent.com>
51750
51751         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
51752
51753         * m4/prereq.m4 (utmp_includes): Define.
51754         Check for ut_user and ut_name members in both struct utmpx
51755         and struct utmp.
51756
51757 2000-01-30  Jim Meyering  <meyering@lucent.com>
51758
51759         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
51760         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
51761         header files where only utmpx.ut_user is declared.
51762
51763         * lib/readutmp.h (UT_USER): Define.
51764
51765 2000-01-29  Jim Meyering  <meyering@lucent.com>
51766
51767         * m4/lib-check.m4: New file containing library-related checks from
51768         fileutils and sh-utils (textutils had none).
51769
51770 2000-01-28  Jim Meyering  <meyering@lucent.com>
51771
51772         * m4/perl.m4: Change format of warning message to look more like that
51773         from the missing script.  Suggestion from François Pinard.
51774
51775 2000-01-25  Jim Meyering  <meyering@lucent.com>
51776
51777         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
51778         well as time.h in the compile check.
51779         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
51780         Fix typo in cross-compiling case: s/yes/no/.
51781
51782 2000-01-23  Jim Meyering  <meyering@lucent.com>
51783
51784         * m4/jm-macros.m4: Move df-related tests here from
51785         fileutils/configure.in
51786
51787         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
51788         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
51789
51790         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
51791         s/space/ac_fsusage_space/.
51792         (jm_FILE_SYSTEM_USAGE): Take two parameters.
51793
51794         * m4/ftruncate.m4: New file (derived from part of
51795         fileutils/configure.in).
51796         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
51797         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
51798
51799         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
51800         AC_SUBST these here, rather than just in sh-util/configure.in, so
51801         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
51802         all the same.
51803         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
51804         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
51805         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
51806         (AC_SUBST(POW_LIBM)): Likewise.
51807         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
51808
51809 2000-01-23  Jim Meyering  <meyering@lucent.com>
51810
51811         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
51812         obstack.c.
51813
51814 2000-01-22  Jim Meyering  <meyering@lucent.com>
51815
51816         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
51817
51818         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
51819
51820         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
51821         configure.in
51822         (AC_CHECK_HEADERS): Likewise for sh-utils.
51823         (AC_CHECK_HEADERS): Likewise for textutils.
51824         Merge the three lists of headers.
51825
51826         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
51827         from fileutils' configure.in.
51828
51829         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
51830         code. Moved tests into their own function (_jm_DECL_HEADERS) in
51831         check-decl.m4.
51832
51833         * m4/check-decl.m4: Use #if rather than #ifdef.
51834         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
51835         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
51836         (_jm_DECL_HEADERS): Define new function.
51837         (jm_CHECK_DECLARATIONS): Require it.
51838
51839 2000-01-22  Jim Meyering  <meyering@lucent.com>
51840
51841         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
51842         [! HAVE_DECL_STRTOULL]: Declare strtoull.
51843         Required for some AIX systems.  Reported by Christian Krackowizer.
51844         [TESTING] (main): New function.
51845
51846         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
51847         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
51848         letters.
51849
51850         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
51851         iswprint.
51852
51853         * lib/strverscmp.c (ISDIGIT): Define.
51854         (strverscmp): Use ISDIGIT, not isdigit.
51855
51856 2000-01-19  Jim Meyering  <meyering@lucent.com>
51857
51858         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
51859         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
51860         defines `struct timespec' in <sys/time.h>
51861
51862         * m4/c-bs-a.m4: Remove uses of changequote altogether.
51863         Thanks to Akim for explaining.
51864
51865 2000-01-17  Paul Eggert  <eggert@twinsun.com>
51866
51867         * lib/nanosleep.c (nanosleep):
51868         Don't use SA_INTERRUPT to decide whether to call sigaction, as
51869         POSIX.1 doesn't require SA_INTERRUPT and some systems
51870         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
51871         it's been part of POSIX.1 since day 1 (in 1988).
51872
51873 2000-01-17  Jim Meyering  <meyering@lucent.com>
51874
51875         * lib/interlock: Remove unused file.  Reported by François Pinard.
51876
51877 2000-01-16  Paul Eggert  <eggert@twinsun.com>
51878
51879         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
51880         alert, backslash, formfeed, and vertical tab unnecessarily in
51881         shell quoting style.
51882
51883 2000-01-16  Jim Meyering  <meyering@lucent.com>
51884
51885         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
51886         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
51887         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
51888         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
51889
51890 2000-01-16  Jim Meyering  <meyering@lucent.com>
51891
51892         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
51893         because the latter didn't work.
51894
51895 2000-01-15  Jim Meyering  <meyering@lucent.com>
51896
51897         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
51898         (AC_REPLACE_FUNCS): Add memcpy and memset.
51899         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
51900         Add strpbrk.
51901         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
51902
51903 2000-01-12  Jim Meyering  <meyering@lucent.com>
51904
51905         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
51906         (jm_PREREQ): Use it.
51907         (jm_PREREQ_READUTMP): New macro.
51908         (jm_PREREQ): Use it.
51909
51910 2000-01-11  Paul Eggert  <eggert@twinsun.com>
51911
51912         Quote multibyte characters correctly.
51913         * m4/c-bs-a.m4: New file.
51914         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
51915         (jm_PREREQ): Use it.
51916
51917 2000-01-11  Paul Eggert  <eggert@twinsun.com>
51918
51919         * m4/uintmax_t.m4: Port to autoconf 2.13.
51920
51921 2000-01-08  Jim Meyering  <meyering@ascend.com>
51922
51923         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
51924         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
51925
51926 2000-01-04  Jim Meyering  <meyering@ascend.com>
51927
51928         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
51929         jm_STRUCT_DIRENT_D_TYPE.
51930         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
51931         jm_STRUCT_DIRENT_D_INO.
51932         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
51933         jm_STRUCT_UTIMBUF.
51934         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
51935         renamings.
51936         * m4/utime.m4: Likewise.
51937
51938         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
51939         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
51940
51941 2000-01-03  Paul Eggert  <eggert@twinsun.com>
51942
51943         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
51944         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
51945
51946 2000-01-02  Jim Meyering  <meyering@ascend.com>
51947
51948         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
51949         remember if this is necessary.
51950
51951 1999-12-26  Jim Meyering  <meyering@ascend.com>
51952
51953         * m4/jm-macros.m4: Use it here.
51954         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
51955
51956 1999-12-23  Jim Meyering  <meyering@ascend.com>
51957
51958         * m4/jm-macros.m4: Check for clock_gettime (moved from
51959         fileutils/configure.in)
51960         Check for gettimeofday.
51961
51962 1999-12-20  Jim Meyering  <meyering@ascend.com>
51963
51964         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
51965         autoconf-2.14a-1999-12-20.
51966
51967 1999-12-19  Jim Meyering  <meyering@ascend.com>
51968
51969         * m4/lstat-slash.m4: New file.
51970         * m4/jm-macros.m4: Use the new macro:
51971         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51972
51973 1999-12-07  Jim Meyering  <meyering@ascend.com>
51974
51975         * m4/perl.m4: Require that File::Compare be available, too.
51976         Too many systems seem to lack it.
51977
51978         * m4/strftime.m4: Add checks for most of the cpp macros tested in
51979         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
51980
51981 1999-11-18  Paul Eggert  <eggert@twinsun.com>
51982
51983         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
51984         problem with the QNX 4.25 shell, which doesn't propagate exit
51985         status of failed commands inside shell assignments.
51986
51987 1999-11-17  Jim Meyering  <meyering@ascend.com>
51988
51989         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
51990
51991 1999-11-07  Jim Meyering  <meyering@ascend.com>
51992
51993         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
51994
51995 1999-11-06  Jim Meyering  <meyering@ascend.com>
51996
51997         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
51998         * m4/jm-macros.m4 (jm_MACROS): Use it here.
51999
52000 1999-11-05  Jim Meyering  <meyering@ascend.com>
52001
52002         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
52003         configure.in of textutils, fileutils, and sh-utils into this one
52004         (shared between those packages) file.
52005         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
52006         AC_STRUCT_ST_BLKSIZE.
52007
52008 1999-11-03  Jim Meyering  <meyering@ascend.com>
52009
52010         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
52011         of AC_CHECK_TYPE checks includes unistd.h.
52012         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
52013         Suggestion from Akim Demaille.
52014
52015 1999-10-30  Jim Meyering  <meyering@ascend.com>
52016
52017         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
52018         m4-quoted string.
52019         * m4/ls-mntd-fs.m4: Likewise.
52020         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
52021         * m4/jm-winsz1.m4: Likewise.
52022
52023         * m4/const.m4: Remove file, since the fix made it into the experimental
52024         version of autoconf.
52025         * m4/mktime.m4: Likewise.
52026
52027         * m4/check-type.m4: Remove file, now that the latest version of
52028         AC_CHECK_TYPE takes a third arg to specify additional #includes.
52029
52030         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
52031         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
52032         AC_CHECK_TYPE.
52033
52034 1999-10-04  Jim Meyering  <meyering@ascend.com>
52035
52036         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
52037
52038 1999-09-22  Paul Eggert  <eggert@twinsun.com>
52039
52040         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
52041         2.95.1 bug with HP-UX 10.20.
52042
52043 1999-09-17  Jim Meyering  <meyering@ascend.com>
52044
52045         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
52046         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
52047         due to missing strdup (against sh-utils-2.0).
52048
52049 1999-08-29  Jim Meyering  <meyering@ascend.com>
52050
52051         * m4/jm-macros.m4: Require jm_BISON.
52052         * m4/bison.m4: New file.
52053
52054 1999-08-17  Paul Eggert  <eggert@twinsun.com>
52055
52056         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
52057         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
52058
52059 1999-08-05  Jim Meyering  <meyering@ascend.com>
52060
52061         * m4/getline.m4: Rename test file from conftestdata to conftest.data
52062         to avoid conflicts with `conftest' on 8+3 filesystems.
52063         Suggestion from Eli Zaretskii.
52064
52065 1999-08-04  Jim Meyering  <meyering@ascend.com>
52066
52067         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
52068         fileutils and sh-utils (textutils's getline test was inadequate).
52069         (AM_FUNC_GETLINE): Run this test.
52070         (AC_CHECK_FUNCS): Check for getdelim.
52071         Reported by Bob Proulx.
52072
52073 1999-08-02  Jim Meyering  <meyering@ascend.com>
52074
52075         * m4/jm-macros.m4: Add a comment.
52076
52077 1999-08-01  Paul Eggert  <eggert@twinsun.com>
52078
52079         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
52080         <inttypes.h> defines strtoumax as a macro (and not as a
52081         function).
52082
52083 1999-08-01  Paul Eggert  <eggert@twinsun.com>
52084
52085         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
52086         that we can shift, multiply and divide unsigned long long
52087         values; Ultrix cc can't do it.
52088
52089 1999-08-01  Paul Eggert  <eggert@twinsun.com>
52090
52091         * m4/mktime.m4: New file, which is a preview of what should appear
52092         in the next public autoconf release.
52093
52094 1999-08-01  Paul Eggert  <eggert@twinsun.com>
52095
52096         * m4/lfs.m4: Remove this file.
52097         * m4/largefile.m4: New file.  It contains the old contents of
52098         lfs.m4, except that all names with prefix AC_LFS have been
52099         changed to use the prefix AC_SYS_LARGEFILE instead, to be
52100         compatible with future autoconf versions.  Also, some minor m4
52101         quoting problems have been fixed.
52102
52103 1999-08-01  Paul Eggert  <eggert@twinsun.com>
52104
52105         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
52106         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
52107         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
52108         and simplify the shell code.
52109
52110 1999-08-01  Jim Meyering  <meyering@ascend.com>
52111
52112         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
52113         m4.
52114
52115 1999-07-20  Jim Meyering  <meyering@ascend.com>
52116
52117         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
52118
52119 1999-07-15  Jim Meyering  <meyering@ascend.com>
52120
52121         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
52122
52123 1999-05-22  Jim Meyering  <meyering@ascend.com>
52124
52125         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
52126
52127 1999-05-20  Jim Meyering  <meyering@ascend.com>
52128
52129         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
52130         Add a colon after each `then' in case $4 is empty.
52131
52132 1999-05-16  Jim Meyering  <meyering@ascend.com>
52133
52134         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
52135
52136 1999-05-10  Jim Meyering  <meyering@ascend.com>
52137
52138         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
52139
52140         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
52141         AC_FUNC_MKTIME.
52142
52143 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
52144
52145         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
52146
52147 1999-05-04  Paul Eggert  <eggert@twinsun.com>
52148
52149         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
52150         not CPPFLAGS, so that linking works correctly in IRIX.
52151
52152 1999-04-30  Paul Eggert  <eggert@twinsun.com>
52153
52154         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
52155
52156 1999-04-20  Paul Eggert  <eggert@twinsun.com>
52157
52158         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
52159         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
52160         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
52161         jm_AC_TYPE_UNSIGNED_LONG_LONG.
52162         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
52163
52164         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
52165
52166 1999-04-20  Jim Meyering  <meyering@ascend.com>
52167
52168         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
52169         AC_REPLACE xstroull if necessary.  From Paul Eggert.
52170         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
52171
52172 1999-04-18  Jim Meyering  <meyering@ascend.com>
52173
52174         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
52175         * m4/jm-macros.m4: Use it.
52176
52177 1999-04-06  Jim Meyering  <meyering@ascend.com>
52178
52179         * m4/strftime.m4: Remove test for %f.
52180
52181 1999-03-29  Jim Meyering  <meyering@ascend.com>
52182
52183         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
52184         superset of the AC_TYPE_* checks in the textutils, fileutils,
52185         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
52186         AC_TYPE_PID_T.
52187
52188 1999-03-28  Jim Meyering  <meyering@ascend.com>
52189
52190         * m4/jm-macros.m4: Define GNU_PACKAGE here.
52191         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
52192         replaced e.g., in the *.sh files of the sh-utils.
52193
52194 1999-03-20  Jim Meyering  <meyering@ascend.com>
52195
52196         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
52197         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
52198         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
52199
52200 1999-03-19  Jim Meyering  <meyering@ascend.com>
52201
52202         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
52203
52204 1999-03-12  Jim Meyering  <meyering@ascend.com>
52205
52206         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
52207
52208 1999-03-07  Jim Meyering  <meyering@ascend.com>
52209
52210         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
52211         declared.
52212
52213 1999-02-17  Jim Meyering  <meyering@ascend.com>
52214
52215         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
52216         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
52217
52218 1999-02-07  Jim Meyering  <meyering@ascend.com>
52219
52220         * m4/group-member.m4: New file -- extracted from sh-utils'
52221         configure.in.
52222
52223         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
52224         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
52225
52226 1999-02-06  Jim Meyering  <meyering@ascend.com>
52227
52228         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
52229         * m4/fnmatch.m4: Likewise.
52230         * m4/getgroups.m4: Likewise.
52231         * m4/lstat.m4: Likewise.
52232         * m4/malloc.m4: Likewise.
52233         * m4/putenv.m4: Likewise.
52234         * m4/realloc.m4: Likewise.
52235         * m4/regex.m4: Likewise.
52236         * m4/stat.m4: Likewise.
52237         * m4/strftime.m4: Likewise.
52238         Suggestion from Alain Magloire.
52239
52240         * m4/chown.m4: Use `.$ac_objext', not `.o'.
52241         * m4/fnmatch.m4: Likewise.
52242         * m4/getgroups.m4: Likewise.
52243         * m4/getline.m4: Likewise.
52244         * m4/lstat.m4: Likewise.
52245         * m4/malloc.m4: Likewise.
52246         * m4/memcmp.m4: Likewise.
52247         * m4/putenv.m4: Likewise.
52248         * m4/realloc.m4: Likewise.
52249         * m4/regex.m4: Likewise.
52250         * m4/stat.m4: Likewise.
52251         * m4/strftime.m4: Likewise.
52252         Suggestion from Alain Magloire.
52253
52254         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
52255         an argument.
52256
52257         * m4/regex.m4: Add a run-time Test for proper operation of
52258         re_compile_pattern.
52259
52260 1999-01-31  Jim Meyering  <meyering@ascend.com>
52261
52262         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
52263
52264 1999-01-30  Jim Meyering  <meyering@ascend.com>
52265
52266         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
52267
52268         * m4/jm-mktime.m4: Make this a wrapper around the official
52269         AM_FUNC_MKTIME rather than my private copy, now that the official one
52270         is up to date.
52271         * m4/mktime.m4: Remove file.
52272
52273         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
52274         * m4/uptime.m4: Likewise.
52275         * m4/uintmax_t.m4: Likewise.
52276
52277 1999-01-28  Jim Meyering  <meyering@ascend.com>
52278
52279         * m4/jm-macros.m4: Use jm_AFS.
52280         * m4/afs.m4: New file (from fileutils' configure.in).
52281
52282         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
52283         * m4/chown.m4: Likewise.
52284         * m4/d-ino.m4: Likewise.
52285         * m4/d-type.m4: Likewise.
52286         * m4/fnmatch.m4: Likewise.
52287         * m4/getgroups.m4: Likewise.
52288         * m4/gettext.m4: Likewise.
52289         * m4/jm-mktime.m4: Likewise.
52290         * m4/jm-winsz2.m4: Likewise.
52291         * m4/lcmessage.m4: Likewise.
52292         * m4/ls-mntd-fs.m4: Likewise.
52293         * m4/malloc.m4: Likewise.
52294         * m4/memcmp.m4: Likewise.
52295         * m4/putenv.m4: Likewise.
52296         * m4/realloc.m4: Likewise.
52297         * m4/st_mtim.m4: Likewise.
52298         * m4/strftime.m4: Likewise.
52299
52300 1999-01-16  Jim Meyering  <meyering@ascend.com>
52301
52302         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
52303         (ARGMATCH_DIE_DECL): Define.
52304
52305 1999-01-12  Jim Meyering  <meyering@ascend.com>
52306
52307         * m4/Makefile.am.in: Rewrite to avoid using fmt.
52308         Reported by Lars Hecking.
52309
52310 1999-01-10  Jim Meyering  <meyering@ascend.com>
52311
52312         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
52313         gross kludge.
52314         * m4/inttypes_h.m4: Likewise.
52315         * m4/lstat.m4: Likewise.
52316         * m4/malloc.m4: Likewise.
52317         * m4/readdir.m4: Likewise.
52318         * m4/realloc.m4: Likewise.
52319         * m4/st_dm_mode.m4: Likewise.
52320         * m4/stat.m4: Likewise.
52321         * m4/utimbuf.m4: Likewise.
52322         * m4/utimes.m4: Likewise.
52323
52324         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
52325         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
52326         comments in config.h.in are meaningful.
52327
52328         * m4/jm-macros.m4: Require autoconf-2.13 here.
52329
52330         * m4/regex.m4: By default, don't use the included regex.c on systems
52331         with glibc 2.  Suggestion from Uli Drepper.
52332
52333 1999-01-02  Jim Meyering  <meyering@ascend.com>
52334
52335         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
52336
52337 1998-12-18  Jim Meyering  <meyering@ascend.com>
52338
52339         * m4/Makefile.am.in (Makefile.am): Simplify rule.
52340         Based on a suggestion from Lars Hecking.
52341
52342 1998-11-16  Paul Eggert  <eggert@twinsun.com>
52343
52344         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
52345
52346 1998-11-16  Jim Meyering  <meyering@ascend.com>
52347
52348         * m4/lfs.m4: Double-quote the `uname...` expression.
52349
52350 1998-11-14  Jim Meyering  <meyering@ascend.com>
52351
52352         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
52353         * m4/stat.m4: Likewise.
52354
52355 1998-11-03  Jim Meyering  <meyering@ascend.com>
52356
52357         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
52358         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
52359
52360 1998-10-18  Jim Meyering  <meyering@ascend.com>
52361
52362         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
52363
52364 1998-10-17  Jim Meyering  <meyering@ascend.com>
52365
52366         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
52367         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
52368         calls for those previously hard-coded headers.  Instead, take a new
52369         parameter.
52370         (jm_CHECK_DECLARATIONS): Reflect interface change.
52371         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
52372         (jm_CHECK_DECL_LOCALTIME_R): New macro.
52373
52374         * m4/mktime.m4: Test for spring-forward gap before long-running test.
52375
52376 1998-10-14  Jim Meyering  <meyering@ascend.com>
52377
52378         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
52379         instead of "TZ=America/Vancouver".  From Paul Eggert.
52380
52381 1998-10-11  Jim Meyering  <meyering@ascend.com>
52382
52383         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
52384         This adds a test for a recently added compatibility fix for mktime.c.
52385         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
52386
52387 1998-09-27  Jim Meyering  <meyering@ascend.com>
52388
52389         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
52390
52391         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
52392         ../configure.in, including a change from Gordon Matzigkeit to allow
52393         cross-compiling for the Hurd.
52394
52395         * m4/glibc.m4: New file/macro to test for the GNU C Library
52396         versions 1 and 2.  From Gordon Matzigkeit.
52397         Indent.
52398
52399 1998-09-21  Jim Meyering  <meyering@ascend.com>
52400
52401         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
52402
52403 1998-08-18  Paul Eggert  <eggert@twinsun.com>
52404
52405         Port nanosecond-resolution times to UnixWare 2.1.2 and
52406         pedantic Solaris 2.6.
52407
52408         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
52409         AC_STRUCT_ST_MTIM.
52410         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
52411         Generate name of ns member, instead of just 1 or undef.
52412         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
52413
52414 1998-08-15  Jim Meyering  <meyering@ascend.com>
52415
52416         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
52417         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
52418         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
52419         instead of jm_TYPE_SSIZE_T.
52420
52421 1998-08-12  Jim Meyering  <meyering@ascend.com>
52422
52423         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
52424
52425 1998-08-02  Jim Meyering  <meyering@ascend.com>
52426
52427         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
52428         in acconfig.h manually.
52429
52430 1998-07-31  Paul Eggert  <eggert@twinsun.com>
52431
52432         * m4/st_mtim.m4: New file.
52433
52434 1998-07-28  Jim Meyering  <meyering@ascend.com>
52435
52436         * m4/utimes.m4: Undef stat.
52437
52438 1998-07-25  Jim Meyering  <meyering@ascend.com>
52439
52440         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
52441         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
52442
52443 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
52444
52445         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
52446         uid and gid actually remain unchanged.
52447
52448 1998-07-07  Jim Meyering  <meyering@ascend.com>
52449
52450         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
52451
52452 1998-07-04  Jim Meyering  <meyering@ascend.com>
52453
52454         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
52455         to prove that this macro can be used in packages without regex.c.
52456
52457 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
52458
52459         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
52460         is to be used.
52461
52462 1998-07-03  Jim Meyering  <meyering@ascend.com>
52463
52464         * m4/gettext.m4: Add -lintl if it's found to be necessary.
52465
52466         * m4/gettext.m4: New file -- from gettext-0.10.35.
52467         * m4/lcmessage.m4: Likewise.
52468         * m4/progtest.m4: Likewise.
52469
52470         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
52471         * m4/jm-macros.m4: Require the new macro.
52472
52473 1998-06-29  Jim Meyering  <meyering@ascend.com>
52474
52475         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
52476         for the definition of NGROUPS (used in a system header included
52477         by sys/mount.h).
52478
52479 1998-06-28  Jim Meyering  <meyering@ascend.com>
52480
52481         * m4/ls-mntd-fs.m4: New file.
52482         * m4/fstypename.m4: New file.
52483
52484         * m4/jm-macros.m4: Require the new macro.
52485         * m4/jm-glibc-io.m4: New file.
52486
52487 1998-05-19  Jim Meyering  <meyering@ascend.com>
52488
52489         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
52490         * m4/lchown.m4: New file.
52491
52492         * m4/Makefile.am.in: New file.
52493         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
52494
52495 1998-05-14  Jim Meyering  <meyering@ascend.com>
52496
52497         * m4/Makefile.am (EXTRA_DIST): Add them.
52498         * m4/jm-macros.m4: New file.
52499         * m4/utimbuf.m4: New file.
52500
52501 1998-05-12  Jim Meyering  <meyering@ascend.com>
52502
52503         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
52504
52505 1998-05-11  Jim Meyering  <meyering@ascend.com>
52506
52507         * m4/isc-posix.m4: New file.
52508
52509 1998-05-10  Jim Meyering  <meyering@ascend.com>
52510
52511         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
52512
52513 1998-05-09  Jim Meyering  <meyering@ascend.com>
52514
52515         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
52516         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
52517         with automake.
52518
52519         * m4/ssize_t.m4: New file.
52520         * m4/mktime.m4: Remove file -- the new automake has this now.
52521
52522 1998-04-26  Jim Meyering  <meyering@ascend.com>
52523
52524         * m4/assert.m4: New file.
52525         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
52526
52527 1998-04-05  Jim Meyering  <meyering@ascend.com>
52528
52529         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
52530         (jm_PREREQ): Use it here.
52531
52532 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
52533
52534         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
52535         in acconfig.h.
52536
52537 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
52538
52539         * m4/prereq.m4: New file.
52540         * m4/error.m4: New file.
52541         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
52542
52543 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
52544
52545         * m4/getline.m4: Don't set am_cv_func_working_getline before the
52546         cache-check for the same variable -- that defeated the purpose of
52547         the test; the test program was never run.  This was a problem only
52548         on systems with losing getline functions -- HP-UX 10.20 is one.
52549         Reported by Bjorn Helgaas.
52550
52551 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
52552
52553         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
52554
52555 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
52556
52557         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
52558
52559         * m4/const.m4: New file.  Use an initializer in this declaration
52560         typedef int charset[2]; const charset x;
52561         Reported by Bob Glickstein.
52562
52563 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
52564
52565         * m4/chown.m4: Fix reversed types on -1 args to chown.
52566         From Kaveh Ghazi.
52567
52568 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
52569
52570         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
52571         Add lseek and memchr.
52572
52573         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
52574         T.E.Dickey <dickey@clark.net> said that some older preprocessors
52575         have a 20-character limit on names.
52576
52577 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
52578
52579         * m4/inttypes_h.m4: New file.
52580         * m4/uintmax_t.m4: New file.
52581         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
52582
52583
52584         -----
52585
52586         Local Variables:
52587         coding: utf-8
52588         End:
52589
52590         Copyright (C) 1997-2009 Free Software Foundation, Inc.
52591
52592         Copying and distribution of this file, with or without
52593         modification, are permitted provided the copyright notice
52594         and this notice are preserved.