280c7ca098bc83fbfaf8512c59ed285d2bdc1f72
[gnulib.git] / ChangeLog
1 2007-12-19  Eric Blake  <ebb9@byu.net>
2
3         Fix memmem to avoid O(n^2) worst-case complexity.
4         * lib/memmem.c (knuth_morris_pratt): New function.
5         (memmem): Use it if first few naive iterations fail.
6         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
7         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
8         * modules/memchr (License): Likewise.
9         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
10         malloca.
11         * tests/test-memmem.c: Rewrite, borrowing ideas from
12         test-mbsstr1.c; the old version wouldn't even compile!
13         * modules/memmem-tests: New file.
14         * lib/string.in.h (rpl_memmem): Add declaration.
15         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
16         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
17         REPLACE_MEMMEM.
18
19 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
20
21         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
22         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
23         before any system include files, and undef after them all.  This
24         should fix a problem on VMS reported by John E. Malmberg in
25         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
26
27 2007-12-17  Eric Blake  <ebb9@byu.net>
28
29         Revert addition of verify, for BSD/OS.
30         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
31         can't handle large files, for the sake of obsolete platforms.
32         * modules/fseeko (Depends-on): Remove verify.
33         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
34         * doc/functions/ftello.texi (ftello): Likewise.
35         * doc/functions/fgetpos.texi (fgetpos): Likewise.
36         Reported by Larry Jones.
37
38 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
39
40         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
41         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
42
43 2007-12-17  Jim Meyering  <meyering@redhat.com>
44
45         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
46         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
47         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
48         * modules/getcwd (Depends-on): Add openat.
49         Reported by Petr Salinger.
50
51 2007-12-17  Bruno Haible  <bruno@clisp.org>
52
53         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
54         avoid a segmentation fault of the configure test on x86_64 systems.
55
56 2007-12-15  Jim Meyering  <meyering@redhat.com>
57
58         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
59
60 2007-12-13  Eric Blake  <ebb9@byu.net>
61
62         Another fseek test.
63         * tests/test-fseek.c (main): Also test ungetc handling.
64         * tests/test-fseeko.c (main): Likewise.
65         * modules/fseeko (Depends-on): Add verify.
66         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
67         large.
68         Reported by Larry Jones.
69
70         Fix fseeko on mingw.
71         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
72         seek.
73
74         Beef up fseek tests.
75         * tests/test-fseek.c (main): Also test eof handling.
76         * tests/test-fseeko.c (main): Likewise.
77         Reported by Larry Jones.
78
79 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
80
81         Fix fseeko on BSD-based platforms.
82         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
83         successful seek.
84
85 2007-12-12  Eric Blake  <ebb9@byu.net>
86
87         Allow circular dependency of separate libtests.a
88         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
89         when use_libtests.
90
91 2007-12-11  Eric Blake  <ebb9@byu.net>
92
93         Fix bug with -0.0L in previous patch.
94         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
95         * tests/test-isnan.c (main): Also test on zeroes.
96         * tests/test-isnanf.c (main): Likewise.
97         * tests/test-isnanl.h (main): Likewise.
98
99         Detect pseudo-denormals on x86 even when cross-compiling.
100         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
101         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
102         invalid bit patterns that happen to satisfy ==.
103
104         Avoid link failures with separate libtests.a.
105         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
106         last, to satisfy circular dependencies.
107
108 2007-12-11  Eric Blake  <ebb9@byu.net>
109         and Bruno Haible  <bruno@clisp.org>
110
111         Fix OpenBSD 4.0 <float.h> handling of long double.
112         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
113         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
114         * doc/headers/float.texi (float.h): Document OpenBSD bug.
115
116 2007-12-11  Jim Meyering  <meyering@redhat.com>
117
118         * users.txt: Add libvirt.
119
120         Support versions of autoconf prior to 2.59c.
121         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
122         if it is not already defined.
123
124 2007-12-09  Bruno Haible  <bruno@clisp.org>
125
126         Let 'gnulib-tool --import' collect sources needed for the tests in
127         tests/ rather than in lib/.
128         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
129         argument. If true, add rules to generate libtests.a, and put libtests.a
130         into $(LDADD). Consider source files in subdirectories and set
131         uses_subdirs.
132         (func_emit_initmacro_start, func_emit_initmacro_end,
133         func_emit_initmacro_done): Pass all arguments explicitly.
134         (func_import): Determine two module lists main_modules,
135         testsrelated_modules. Determine use_libtests. Determine two variables
136         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
137         instead of just sed_transform_lib_file. Determine two variables
138         main_files and testsrelated_files. Compute 'files' as the union of
139         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
140         func_add_or_update. In the generated gnulib-comp.m4, collect the
141         object files for tests/ in different variables than those for lib/.
142         Substitute LIBTESTS_LIBDEPS.
143         (func_create_testdir): Combine the uses_subdirs results from
144         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
145
146 2007-12-09  Bruno Haible  <bruno@clisp.org>
147
148         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
149         the build-aux directory.
150
151 2007-12-09  Bruno Haible  <bruno@clisp.org>
152
153         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
154         introduced on 2006-09-09.
155
156 2007-12-07  Jim Meyering  <meyering@redhat.com>
157
158         Let these macros work also with autoconf-2.59.
159         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
160         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
161         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
162
163 2007-12-06  Jim Meyering  <meyering@redhat.com>
164
165         Avoid a configure-time syntax error in gl_FUNC_ACL.
166         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
167         function in each branch, before testing the cache variable.
168
169 2007-12-04  Eric Blake  <ebb9@byu.net>
170
171         Make scripts executable.
172         * build-aux/config.guess: Add execute permissions.
173         * build-aux/config.sub: Likewise.
174         * build-aux/gendocs.sh: Likewise.
175
176         Fix frexp on mingw.
177         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
178         cross-compiling.
179         * doc/functions/frexp.texi (frexp): Document the bug.
180
181         Make cygwin fseeko check more reliable.
182         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
183         version numbers, rather than unrelated feature check.
184         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
185         * doc/functions/ftello.texi (ftello): Likewise.
186         Reported by Bruno Haible.
187
188         * m4/strerror.m4: Bump version number.
189
190 2007-12-03  Bruno Haible  <bruno@clisp.org>
191
192         * doc/functions/mprotect.texi: Mention the mingw problem.
193
194 2007-12-03  Eric Blake  <ebb9@byu.net>
195
196         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
197         REPLACE_STRERROR is initialized before this macro.
198
199 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
200
201         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
202         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
203         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
204         put -lsec in even for programs other than 'ls'.  This fixes a problem
205         for gettext reported by Bruno Haible in
206         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
207         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
208         Add support for Solaris 10.  This isn't efficient, but should get the
209         job done for now.
210
211 2007-12-03  James Youngman  <jay@gnu.org>
212
213         * doc/regexprops-generic.texi: change "an close-group" to "a
214         close-group" and "illegal" to "not allowed".
215
216 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
217
218         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
219         pr_byname.h. Needed for the rare case when the maintainer has done
220         "make maintainer-clean" in the source directory and then attempts a
221         build outside the source directory.
222         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
223         scripts_byname.h.
224
225 2007-12-02  Martin Lambers <marlam@marlam.de>
226             Bruno Haible  <bruno@clisp.org>
227
228         * lib/getpagesize.h: Remove file.
229         * lib/unistd.in.h: Include declaration of getpagesize here.
230         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
231         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
232         HAVE_SYS_PARAM_H.
233         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
234         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
235         * modules/getpagesize (Files): Remove lib/getpagesize.h.
236         (Depends-on): Add unistd.
237         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
238         (Include): Use <unistd.h> instead of getpagesize.h.
239         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
240         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
241         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
242         gl_GETPAGESIZE invocation, already handled by module dependency.
243         * lib/pagealign_alloc.c: Don't include getpagesize.h.
244
245 2007-12-02  Bruno Haible  <bruno@clisp.org>
246
247         * modules/strings-tests: New file.
248         * tests/test-strings.c: New file.
249
250         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
251         * lib/strings.in.h: New file.
252         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
253         * m4/strings_h.m4: New file.
254         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
255         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
256         * modules/strings: New file.
257         * modules/string (Makefile.am): Update.
258         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
259         Reported by Karl Berry.
260
261 2007-12-01  Eric Blake  <ebb9@byu.net>
262
263         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
264         accomodate fix in cygwin 1.5.25.
265
266 2007-12-01  Jim Meyering  <meyering@redhat.com>
267
268         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
269         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
270         that would inhibit utf8-optimization of a regexp containing line-
271         or buffer-anchors, e.g., `^', `$'.
272
273 2007-11-30  Bruno Haible  <bruno@clisp.org>
274
275         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
276         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
277         glthread_recursive_lock_init.
278         * lib/lock.c (glthread_recursive_lock_init)
279         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
280         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
281
282 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
283
284         New function qset_acl, like set_acl but with syscall semantics.
285         * lib/acl.h (qset_acl): New decl.
286         * lib/acl.c (qset_acl): New function.
287         (set_acl): Use new function.  Use more-consistent diagnostics.
288
289 2007-11-28  Jim Meyering  <meyering@redhat.com>
290
291         * modules/physmem (License): Change from GPL to LGPLv2+.
292
293 2007-11-26  Bruno Haible  <bruno@clisp.org>
294
295         * lib/vasnprintf.c (decode_long_double): Don't abort if the
296         'long double' type has excess precision.
297         Reported by Jim Meyering in
298         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
299
300 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
301
302         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
303         Sync from <http://gnu.org/licenses>.
304         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
305         with license text from same location.
306         * doc/maintain.texi, doc/standards.texi:  Sync from
307         <http://savannah.gnu.org/projects/gnustandards>.
308
309 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
310         and Jim Meyering  <meyering@redhat.com>
311
312         Adjust getdate' grammar to accept a slightly more regular language.
313         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
314         Before, the former was rejected.
315         * lib/getdate.y (digits_to_date_time): New function, factored
316         out of ...
317         (number): ...here.  Just call digits_to_date_time.
318         (hybrid): New non-terminal to handle an <unsigned number,
319         signed relative offset> sequence consistently.
320
321 2007-11-18  Jim Meyering  <meyering@redhat.com>
322
323         Pull my changes from coreutils:
324         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
325         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
326         use of $gnulib_tool_option_extras, so that it's separated from the
327         preceding argument.
328
329         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
330         * build-aux/bootstrap (cp_mark_as_generated): Create any required
331         parent destination directories before copying a file into place.
332
333 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
334
335         bootstrap: work also with 4-argument variant of AC_INIT
336         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
337
338 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
339
340         Port test-getaddrinfo to Solaris.
341         Problem reported by Bruno Haible in
342         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
343         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
344         explanation of setting 'hints'.
345         Don't reject an implementation merely because it returns EAI_SERVICE.
346         (EAI_SERVICE): Define to 0 if not defined.
347
348 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
349
350         The license of gnu-make and posix-shell is now "GPLed build tool".
351         * modules/gnu-make (License): Likewise.
352         * modules/posix-shell (License): Likewise.
353
354         New module posix-shell, for determining a POSIX shell
355         or perhaps something that is close enough to a POSIX shell.
356         * m4/posix-shell.m4: New file.
357         * modules/posix-shell: New file.
358
359         * MODULES.html.sh: Mention new module.
360
361         New module gnu-make, for determining whether we're using GNU Make.
362         * m4/gnu-make.m4: New file.
363         * modules/gnu-make: New file.
364         * MODULES.html.sh: Mention new module.
365
366 2007-11-14  Jim Meyering  <meyering@redhat.com>
367
368         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
369         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
370         use this macro to create a function _definition_.
371         Remove useless "#undef ARGMATCH_DIE".
372
373 2007-11-14  Bruno Haible  <bruno@clisp.org>
374
375         * lib/config.charset: Update for OpenBSD 4.1.
376         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
377
378 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
379
380         Document 64-bit #if problems in stdint.texi.
381         * doc/headers/stdint.texi (stdint.h): Mention problems with
382         64-bit-#if, and how to work around them.
383
384         Don't insist on 'long long int' support in the preprocessor.  It
385         breaks too many things.  For example, PRIdMAX still uses a 'long
386         long int' format with the latest Sun compiler, even though
387         HAVE_LONG_LONG_INT isn't defined due to that compiler's
388         preprocessor problem.  This causes the latest coreutils to dump
389         core on Solaris 10 sparc with the Sun C compiler.
390         Instead, fix the 2007-10-16 problem in a different way, by evaluating
391         the troublesome expressions at configure-time, not at #if-time.
392         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
393         preprocessor.
394         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
395         compile-time C checks, done at 'configure'-time.
396         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
397         * modules/inttypes (Makefile): Substitute the new symbols that
398         gl_INTTYPES_H now generates.
399         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
400
401 2007-11-12  Bruno Haible  <bruno@clisp.org>
402
403         Tests for Unicode character classification functions.
404
405         * modules/unictype/bidicategory-byname-tests: New file.
406         * modules/unictype/bidicategory-name-tests: New file.
407         * modules/unictype/bidicategory-of-tests: New file.
408         * modules/unictype/bidicategory-test-tests: New file.
409         * modules/unictype/block-list-tests: New file.
410         * modules/unictype/block-of-tests: New file.
411         * modules/unictype/block-test-tests: New file.
412         * modules/unictype/category-C-tests: New file.
413         * modules/unictype/category-Cc-tests: New file.
414         * modules/unictype/category-Cf-tests: New file.
415         * modules/unictype/category-Cn-tests: New file.
416         * modules/unictype/category-Co-tests: New file.
417         * modules/unictype/category-Cs-tests: New file.
418         * modules/unictype/category-L-tests: New file.
419         * modules/unictype/category-Ll-tests: New file.
420         * modules/unictype/category-Lm-tests: New file.
421         * modules/unictype/category-Lo-tests: New file.
422         * modules/unictype/category-Lt-tests: New file.
423         * modules/unictype/category-Lu-tests: New file.
424         * modules/unictype/category-M-tests: New file.
425         * modules/unictype/category-Mc-tests: New file.
426         * modules/unictype/category-Me-tests: New file.
427         * modules/unictype/category-Mn-tests: New file.
428         * modules/unictype/category-N-tests: New file.
429         * modules/unictype/category-Nd-tests: New file.
430         * modules/unictype/category-Nl-tests: New file.
431         * modules/unictype/category-No-tests: New file.
432         * modules/unictype/category-P-tests: New file.
433         * modules/unictype/category-Pc-tests: New file.
434         * modules/unictype/category-Pd-tests: New file.
435         * modules/unictype/category-Pe-tests: New file.
436         * modules/unictype/category-Pf-tests: New file.
437         * modules/unictype/category-Pi-tests: New file.
438         * modules/unictype/category-Po-tests: New file.
439         * modules/unictype/category-Ps-tests: New file.
440         * modules/unictype/category-S-tests: New file.
441         * modules/unictype/category-Sc-tests: New file.
442         * modules/unictype/category-Sk-tests: New file.
443         * modules/unictype/category-Sm-tests: New file.
444         * modules/unictype/category-So-tests: New file.
445         * modules/unictype/category-Z-tests: New file.
446         * modules/unictype/category-Zl-tests: New file.
447         * modules/unictype/category-Zp-tests: New file.
448         * modules/unictype/category-Zs-tests: New file.
449         * modules/unictype/category-and-not-tests: New file.
450         * modules/unictype/category-and-tests: New file.
451         * modules/unictype/category-byname-tests: New file.
452         * modules/unictype/category-name-tests: New file.
453         * modules/unictype/category-none-tests: New file.
454         * modules/unictype/category-of-tests: New file.
455         * modules/unictype/category-or-tests: New file.
456         * modules/unictype/category-test-withtable-tests: New file.
457         * modules/unictype/combining-class-tests: New file.
458         * modules/unictype/ctype-alnum-tests: New file.
459         * modules/unictype/ctype-alpha-tests: New file.
460         * modules/unictype/ctype-blank-tests: New file.
461         * modules/unictype/ctype-cntrl-tests: New file.
462         * modules/unictype/ctype-digit-tests: New file.
463         * modules/unictype/ctype-graph-tests: New file.
464         * modules/unictype/ctype-lower-tests: New file.
465         * modules/unictype/ctype-print-tests: New file.
466         * modules/unictype/ctype-punct-tests: New file.
467         * modules/unictype/ctype-space-tests: New file.
468         * modules/unictype/ctype-upper-tests: New file.
469         * modules/unictype/ctype-xdigit-tests: New file.
470         * modules/unictype/decimal-digit-tests: New file.
471         * modules/unictype/digit-tests: New file.
472         * modules/unictype/mirror-tests: New file.
473         * modules/unictype/numeric-tests: New file.
474         * modules/unictype/property-alphabetic-tests: New file.
475         * modules/unictype/property-ascii-hex-digit-tests: New file.
476         * modules/unictype/property-bidi-arabic-digit-tests: New file.
477         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
478         * modules/unictype/property-bidi-block-separator-tests: New file.
479         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
480         * modules/unictype/property-bidi-common-separator-tests: New file.
481         * modules/unictype/property-bidi-control-tests: New file.
482         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
483         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
484         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
485         * modules/unictype/property-bidi-european-digit-tests: New file.
486         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
487         * modules/unictype/property-bidi-left-to-right-tests: New file.
488         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
489         * modules/unictype/property-bidi-other-neutral-tests: New file.
490         * modules/unictype/property-bidi-pdf-tests: New file.
491         * modules/unictype/property-bidi-segment-separator-tests: New file.
492         * modules/unictype/property-bidi-whitespace-tests: New file.
493         * modules/unictype/property-byname-tests: New file.
494         * modules/unictype/property-combining-tests: New file.
495         * modules/unictype/property-composite-tests: New file.
496         * modules/unictype/property-currency-symbol-tests: New file.
497         * modules/unictype/property-dash-tests: New file.
498         * modules/unictype/property-decimal-digit-tests: New file.
499         * modules/unictype/property-default-ignorable-code-point-tests: New file.
500         * modules/unictype/property-deprecated-tests: New file.
501         * modules/unictype/property-diacritic-tests: New file.
502         * modules/unictype/property-extender-tests: New file.
503         * modules/unictype/property-format-control-tests: New file.
504         * modules/unictype/property-grapheme-base-tests: New file.
505         * modules/unictype/property-grapheme-extend-tests: New file.
506         * modules/unictype/property-grapheme-link-tests: New file.
507         * modules/unictype/property-hex-digit-tests: New file.
508         * modules/unictype/property-hyphen-tests: New file.
509         * modules/unictype/property-id-continue-tests: New file.
510         * modules/unictype/property-id-start-tests: New file.
511         * modules/unictype/property-ideographic-tests: New file.
512         * modules/unictype/property-ids-binary-operator-tests: New file.
513         * modules/unictype/property-ids-trinary-operator-tests: New file.
514         * modules/unictype/property-ignorable-control-tests: New file.
515         * modules/unictype/property-iso-control-tests: New file.
516         * modules/unictype/property-join-control-tests: New file.
517         * modules/unictype/property-left-of-pair-tests: New file.
518         * modules/unictype/property-line-separator-tests: New file.
519         * modules/unictype/property-logical-order-exception-tests: New file.
520         * modules/unictype/property-lowercase-tests: New file.
521         * modules/unictype/property-math-tests: New file.
522         * modules/unictype/property-non-break-tests: New file.
523         * modules/unictype/property-not-a-character-tests: New file.
524         * modules/unictype/property-numeric-tests: New file.
525         * modules/unictype/property-other-alphabetic-tests: New file.
526         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
527         * modules/unictype/property-other-grapheme-extend-tests: New file.
528         * modules/unictype/property-other-id-continue-tests: New file.
529         * modules/unictype/property-other-id-start-tests: New file.
530         * modules/unictype/property-other-lowercase-tests: New file.
531         * modules/unictype/property-other-math-tests: New file.
532         * modules/unictype/property-other-uppercase-tests: New file.
533         * modules/unictype/property-paired-punctuation-tests: New file.
534         * modules/unictype/property-paragraph-separator-tests: New file.
535         * modules/unictype/property-pattern-syntax-tests: New file.
536         * modules/unictype/property-pattern-white-space-tests: New file.
537         * modules/unictype/property-private-use-tests: New file.
538         * modules/unictype/property-punctuation-tests: New file.
539         * modules/unictype/property-quotation-mark-tests: New file.
540         * modules/unictype/property-radical-tests: New file.
541         * modules/unictype/property-sentence-terminal-tests: New file.
542         * modules/unictype/property-soft-dotted-tests: New file.
543         * modules/unictype/property-space-tests: New file.
544         * modules/unictype/property-terminal-punctuation-tests: New file.
545         * modules/unictype/property-test-tests: New file.
546         * modules/unictype/property-titlecase-tests: New file.
547         * modules/unictype/property-unassigned-code-value-tests: New file.
548         * modules/unictype/property-unified-ideograph-tests: New file.
549         * modules/unictype/property-uppercase-tests: New file.
550         * modules/unictype/property-variation-selector-tests: New file.
551         * modules/unictype/property-white-space-tests: New file.
552         * modules/unictype/property-xid-continue-tests: New file.
553         * modules/unictype/property-xid-start-tests: New file.
554         * modules/unictype/property-zero-width-tests: New file.
555         * modules/unictype/scripts-tests: New file.
556         * modules/unictype/syntax-c-ident-tests: New file.
557         * modules/unictype/syntax-c-whitespace-tests: New file.
558         * modules/unictype/syntax-java-ident-tests: New file.
559         * modules/unictype/syntax-java-whitespace-tests: New file.
560         * tests/unictype/test-bidi_byname.c: New file.
561         * tests/unictype/test-bidi_name.c: New file.
562         * tests/unictype/test-bidi_of.c: New file.
563         * tests/unictype/test-bidi_test.c: New file.
564         * tests/unictype/test-block_list.c: New file.
565         * tests/unictype/test-block_of.c: New file.
566         * tests/unictype/test-block_test.c: New file.
567         * tests/unictype/test-categ_and.c: New file.
568         * tests/unictype/test-categ_and_not.c: New file.
569         * tests/unictype/test-categ_byname.c: New file.
570         * tests/unictype/test-categ_name.c: New file.
571         * tests/unictype/test-categ_none.c: New file.
572         * tests/unictype/test-categ_of.c: New file.
573         * tests/unictype/test-categ_or.c: New file.
574         * tests/unictype/test-categ_test_withtable.c: New file.
575         * tests/unictype/test-combining.c: New file.
576         * tests/unictype/test-decdigit.c: New file.
577         * tests/unictype/test-digit.c: New file.
578         * tests/unictype/test-mirror.c: New file.
579         * tests/unictype/test-numeric.c: New file.
580         * tests/unictype/test-pr_byname.c: New file.
581         * tests/unictype/test-pr_test.c: New file.
582         * tests/unictype/test-predicate-part1.h: New file.
583         * tests/unictype/test-predicate-part2.h: New file.
584         * tests/unictype/test-scripts.c: New file.
585         * tests/unictype/test-sy_c_ident.c: New file.
586         * tests/unictype/test-sy_java_ident.c: New file.
587
588         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
589         for Unicode 5.0.0.
590         * tests/unictype/test-categ_Cc.c: Likewise.
591         * tests/unictype/test-categ_Cf.c: Likewise.
592         * tests/unictype/test-categ_Cn.c: Likewise.
593         * tests/unictype/test-categ_Co.c: Likewise.
594         * tests/unictype/test-categ_Cs.c: Likewise.
595         * tests/unictype/test-categ_L.c: Likewise.
596         * tests/unictype/test-categ_Ll.c: Likewise.
597         * tests/unictype/test-categ_Lm.c: Likewise.
598         * tests/unictype/test-categ_Lo.c: Likewise.
599         * tests/unictype/test-categ_Lt.c: Likewise.
600         * tests/unictype/test-categ_Lu.c: Likewise.
601         * tests/unictype/test-categ_M.c: Likewise.
602         * tests/unictype/test-categ_Mc.c: Likewise.
603         * tests/unictype/test-categ_Me.c: Likewise.
604         * tests/unictype/test-categ_Mn.c: Likewise.
605         * tests/unictype/test-categ_N.c: Likewise.
606         * tests/unictype/test-categ_Nd.c: Likewise.
607         * tests/unictype/test-categ_Nl.c: Likewise.
608         * tests/unictype/test-categ_No.c: Likewise.
609         * tests/unictype/test-categ_P.c: Likewise.
610         * tests/unictype/test-categ_Pc.c: Likewise.
611         * tests/unictype/test-categ_Pd.c: Likewise.
612         * tests/unictype/test-categ_Pe.c: Likewise.
613         * tests/unictype/test-categ_Pf.c: Likewise.
614         * tests/unictype/test-categ_Pi.c: Likewise.
615         * tests/unictype/test-categ_Po.c: Likewise.
616         * tests/unictype/test-categ_Ps.c: Likewise.
617         * tests/unictype/test-categ_S.c: Likewise.
618         * tests/unictype/test-categ_Sc.c: Likewise.
619         * tests/unictype/test-categ_Sk.c: Likewise.
620         * tests/unictype/test-categ_Sm.c: Likewise.
621         * tests/unictype/test-categ_So.c: Likewise.
622         * tests/unictype/test-categ_Z.c: Likewise.
623         * tests/unictype/test-categ_Zl.c: Likewise.
624         * tests/unictype/test-categ_Zp.c: Likewise.
625         * tests/unictype/test-categ_Zs.c: Likewise.
626         * tests/unictype/test-ctype_alnum.c: Likewise.
627         * tests/unictype/test-ctype_alpha.c: Likewise.
628         * tests/unictype/test-ctype_blank.c: Likewise.
629         * tests/unictype/test-ctype_cntrl.c: Likewise.
630         * tests/unictype/test-ctype_digit.c: Likewise.
631         * tests/unictype/test-ctype_graph.c: Likewise.
632         * tests/unictype/test-ctype_lower.c: Likewise.
633         * tests/unictype/test-ctype_print.c: Likewise.
634         * tests/unictype/test-ctype_punct.c: Likewise.
635         * tests/unictype/test-ctype_space.c: Likewise.
636         * tests/unictype/test-ctype_upper.c: Likewise.
637         * tests/unictype/test-ctype_xdigit.c: Likewise.
638         * tests/unictype/test-decdigit.h: Likewise.
639         * tests/unictype/test-digit.h: Likewise.
640         * tests/unictype/test-numeric.h: Likewise.
641         * tests/unictype/test-pr_alphabetic.c: Likewise.
642         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
643         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
644         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
645         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
646         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
647         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
648         * tests/unictype/test-pr_bidi_control.c: Likewise.
649         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
650         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
651         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
652         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
653         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
654         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
655         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
656         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
657         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
658         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
659         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
660         * tests/unictype/test-pr_combining.c: Likewise.
661         * tests/unictype/test-pr_composite.c: Likewise.
662         * tests/unictype/test-pr_currency_symbol.c: Likewise.
663         * tests/unictype/test-pr_dash.c: Likewise.
664         * tests/unictype/test-pr_decimal_digit.c: Likewise.
665         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
666         * tests/unictype/test-pr_deprecated.c: Likewise.
667         * tests/unictype/test-pr_diacritic.c: Likewise.
668         * tests/unictype/test-pr_extender.c: Likewise.
669         * tests/unictype/test-pr_format_control.c: Likewise.
670         * tests/unictype/test-pr_grapheme_base.c: Likewise.
671         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
672         * tests/unictype/test-pr_grapheme_link.c: Likewise.
673         * tests/unictype/test-pr_hex_digit.c: Likewise.
674         * tests/unictype/test-pr_hyphen.c: Likewise.
675         * tests/unictype/test-pr_id_continue.c: Likewise.
676         * tests/unictype/test-pr_id_start.c: Likewise.
677         * tests/unictype/test-pr_ideographic.c: Likewise.
678         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
679         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
680         * tests/unictype/test-pr_ignorable_control.c: Likewise.
681         * tests/unictype/test-pr_iso_control.c: Likewise.
682         * tests/unictype/test-pr_join_control.c: Likewise.
683         * tests/unictype/test-pr_left_of_pair.c: Likewise.
684         * tests/unictype/test-pr_line_separator.c: Likewise.
685         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
686         * tests/unictype/test-pr_lowercase.c: Likewise.
687         * tests/unictype/test-pr_math.c: Likewise.
688         * tests/unictype/test-pr_non_break.c: Likewise.
689         * tests/unictype/test-pr_not_a_character.c: Likewise.
690         * tests/unictype/test-pr_numeric.c: Likewise.
691         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
692         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
693         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
694         * tests/unictype/test-pr_other_id_continue.c: Likewise.
695         * tests/unictype/test-pr_other_id_start.c: Likewise.
696         * tests/unictype/test-pr_other_lowercase.c: Likewise.
697         * tests/unictype/test-pr_other_math.c: Likewise.
698         * tests/unictype/test-pr_other_uppercase.c: Likewise.
699         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
700         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
701         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
702         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
703         * tests/unictype/test-pr_private_use.c: Likewise.
704         * tests/unictype/test-pr_punctuation.c: Likewise.
705         * tests/unictype/test-pr_quotation_mark.c: Likewise.
706         * tests/unictype/test-pr_radical.c: Likewise.
707         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
708         * tests/unictype/test-pr_soft_dotted.c: Likewise.
709         * tests/unictype/test-pr_space.c: Likewise.
710         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
711         * tests/unictype/test-pr_titlecase.c: Likewise.
712         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
713         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
714         * tests/unictype/test-pr_uppercase.c: Likewise.
715         * tests/unictype/test-pr_variation_selector.c: Likewise.
716         * tests/unictype/test-pr_white_space.c: Likewise.
717         * tests/unictype/test-pr_xid_continue.c: Likewise.
718         * tests/unictype/test-pr_xid_start.c: Likewise.
719         * tests/unictype/test-pr_zero_width.c: Likewise.
720         * tests/unictype/test-sy_c_whitespace.c: Likewise.
721         * tests/unictype/test-sy_java_whitespace.c: Likewise.
722
723 2007-11-12  Bruno Haible  <bruno@clisp.org>
724
725         Unicode character classification functions.
726         * lib/unictype.h: New file.
727         * modules/unictype/base: New file.
728         * modules/unictype/category-L: New file.
729         * modules/unictype/category-Lu: New file.
730         * modules/unictype/category-Ll: New file.
731         * modules/unictype/category-Lt: New file.
732         * modules/unictype/category-Lm: New file.
733         * modules/unictype/category-Lo: New file.
734         * modules/unictype/category-M: New file.
735         * modules/unictype/category-Mn: New file.
736         * modules/unictype/category-Mc: New file.
737         * modules/unictype/category-Me: New file.
738         * modules/unictype/category-N: New file.
739         * modules/unictype/category-Nd: New file.
740         * modules/unictype/category-Nl: New file.
741         * modules/unictype/category-No: New file.
742         * modules/unictype/category-P: New file.
743         * modules/unictype/category-Pc: New file.
744         * modules/unictype/category-Pd: New file.
745         * modules/unictype/category-Ps: New file.
746         * modules/unictype/category-Pe: New file.
747         * modules/unictype/category-Pi: New file.
748         * modules/unictype/category-Pf: New file.
749         * modules/unictype/category-Po: New file.
750         * modules/unictype/category-S: New file.
751         * modules/unictype/category-Sm: New file.
752         * modules/unictype/category-Sc: New file.
753         * modules/unictype/category-Sk: New file.
754         * modules/unictype/category-So: New file.
755         * modules/unictype/category-Z: New file.
756         * modules/unictype/category-Zs: New file.
757         * modules/unictype/category-Zl: New file.
758         * modules/unictype/category-Zp: New file.
759         * modules/unictype/category-C: New file.
760         * modules/unictype/category-Cc: New file.
761         * modules/unictype/category-Cf: New file.
762         * modules/unictype/category-Cs: New file.
763         * modules/unictype/category-Co: New file.
764         * modules/unictype/category-Cn: New file.
765         * modules/unictype/category-or: New file.
766         * modules/unictype/category-of: New file.
767         * modules/unictype/category-test: New file.
768         * modules/unictype/category-test-withtable: New file.
769         * modules/unictype/category-byname: New file.
770         * modules/unictype/category-none: New file.
771         * modules/unictype/category-and: New file.
772         * modules/unictype/category-and-not: New file.
773         * modules/unictype/category-name: New file.
774         * modules/unictype/combining-class: New file.
775         * modules/unictype/category-all: New file.
776         * modules/unictype/bidicategory-all: New file.
777         * modules/unictype/bidicategory-byname: New file.
778         * modules/unictype/bidicategory-name: New file.
779         * modules/unictype/bidicategory-of: New file.
780         * modules/unictype/bidicategory-test: New file.
781         * modules/unictype/decimal-digit: New file.
782         * modules/unictype/digit: New file.
783         * modules/unictype/numeric: New file.
784         * modules/unictype/mirror: New file.
785         * modules/unictype/property-white-space: New file.
786         * modules/unictype/property-alphabetic: New file.
787         * modules/unictype/property-other-alphabetic: New file.
788         * modules/unictype/property-not-a-character: New file.
789         * modules/unictype/property-default-ignorable-code-point: New file.
790         * modules/unictype/property-other-default-ignorable-code-point: New
791         file.
792         * modules/unictype/property-deprecated: New file.
793         * modules/unictype/property-logical-order-exception: New file.
794         * modules/unictype/property-variation-selector: New file.
795         * modules/unictype/property-private-use: New file.
796         * modules/unictype/property-unassigned-code-value: New file.
797         * modules/unictype/property-uppercase: New file.
798         * modules/unictype/property-other-uppercase: New file.
799         * modules/unictype/property-lowercase: New file.
800         * modules/unictype/property-other-lowercase: New file.
801         * modules/unictype/property-titlecase: New file.
802         * modules/unictype/property-soft-dotted: New file.
803         * modules/unictype/property-id-start: New file.
804         * modules/unictype/property-other-id-start: New file.
805         * modules/unictype/property-id-continue: New file.
806         * modules/unictype/property-other-id-continue: New file.
807         * modules/unictype/property-xid-start: New file.
808         * modules/unictype/property-xid-continue: New file.
809         * modules/unictype/property-pattern-white-space: New file.
810         * modules/unictype/property-pattern-syntax: New file.
811         * modules/unictype/property-join-control: New file.
812         * modules/unictype/property-grapheme-base: New file.
813         * modules/unictype/property-grapheme-extend: New file.
814         * modules/unictype/property-other-grapheme-extend: New file.
815         * modules/unictype/property-grapheme-link: New file.
816         * modules/unictype/property-bidi-control: New file.
817         * modules/unictype/property-bidi-left-to-right: New file.
818         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
819         * modules/unictype/property-bidi-arabic-right-to-left: New file.
820         * modules/unictype/property-bidi-european-digit: New file.
821         * modules/unictype/property-bidi-eur-num-separator: New file.
822         * modules/unictype/property-bidi-eur-num-terminator: New file.
823         * modules/unictype/property-bidi-arabic-digit: New file.
824         * modules/unictype/property-bidi-common-separator: New file.
825         * modules/unictype/property-bidi-block-separator: New file.
826         * modules/unictype/property-bidi-segment-separator: New file.
827         * modules/unictype/property-bidi-whitespace: New file.
828         * modules/unictype/property-bidi-non-spacing-mark: New file.
829         * modules/unictype/property-bidi-boundary-neutral: New file.
830         * modules/unictype/property-bidi-pdf: New file.
831         * modules/unictype/property-bidi-embedding-or-override: New file.
832         * modules/unictype/property-bidi-other-neutral: New file.
833         * modules/unictype/property-hex-digit: New file.
834         * modules/unictype/property-ascii-hex-digit: New file.
835         * modules/unictype/property-ideographic: New file.
836         * modules/unictype/property-unified-ideograph: New file.
837         * modules/unictype/property-radical: New file.
838         * modules/unictype/property-ids-binary-operator: New file.
839         * modules/unictype/property-ids-trinary-operator: New file.
840         * modules/unictype/property-zero-width: New file.
841         * modules/unictype/property-space: New file.
842         * modules/unictype/property-non-break: New file.
843         * modules/unictype/property-iso-control: New file.
844         * modules/unictype/property-format-control: New file.
845         * modules/unictype/property-dash: New file.
846         * modules/unictype/property-hyphen: New file.
847         * modules/unictype/property-punctuation: New file.
848         * modules/unictype/property-line-separator: New file.
849         * modules/unictype/property-paragraph-separator: New file.
850         * modules/unictype/property-quotation-mark: New file.
851         * modules/unictype/property-sentence-terminal: New file.
852         * modules/unictype/property-terminal-punctuation: New file.
853         * modules/unictype/property-currency-symbol: New file.
854         * modules/unictype/property-math: New file.
855         * modules/unictype/property-other-math: New file.
856         * modules/unictype/property-paired-punctuation: New file.
857         * modules/unictype/property-left-of-pair: New file.
858         * modules/unictype/property-combining: New file.
859         * modules/unictype/property-composite: New file.
860         * modules/unictype/property-decimal-digit: New file.
861         * modules/unictype/property-numeric: New file.
862         * modules/unictype/property-diacritic: New file.
863         * modules/unictype/property-extender: New file.
864         * modules/unictype/property-ignorable-control: New file.
865         * modules/unictype/property-test: New file.
866         * modules/unictype/property-byname: New file.
867         * modules/unictype/property-all: New file.
868         * modules/unictype/scripts: New file.
869         * modules/unictype/scripts-all: New file.
870         * modules/unictype/block-of: New file.
871         * modules/unictype/block-test: New file.
872         * modules/unictype/block-list: New file.
873         * modules/unictype/block-all: New file.
874         * modules/unictype/syntax-c-whitespace: New file.
875         * modules/unictype/syntax-java-whitespace: New file.
876         * modules/unictype/syntax-c-ident: New file.
877         * modules/unictype/syntax-java-ident: New file.
878         * modules/unictype/ctype-alnum: New file.
879         * modules/unictype/ctype-alpha: New file.
880         * modules/unictype/ctype-cntrl: New file.
881         * modules/unictype/ctype-digit: New file.
882         * modules/unictype/ctype-graph: New file.
883         * modules/unictype/ctype-lower: New file.
884         * modules/unictype/ctype-print: New file.
885         * modules/unictype/ctype-punct: New file.
886         * modules/unictype/ctype-space: New file.
887         * modules/unictype/ctype-upper: New file.
888         * modules/unictype/ctype-xdigit: New file.
889         * modules/unictype/ctype-blank: New file.
890         * lib/unictype/bidi_byname.c: New file.
891         * lib/unictype/bidi_name.c: New file.
892         * lib/unictype/bidi_of.c: New file.
893         * lib/unictype/bidi_test.c: New file.
894         * lib/unictype/bitmap.h: New file.
895         * lib/unictype/block_test.c: New file.
896         * lib/unictype/blocks.c: New file.
897         * lib/unictype/categ_C.c: New file.
898         * lib/unictype/categ_Cc.c: New file.
899         * lib/unictype/categ_Cf.c: New file.
900         * lib/unictype/categ_Cn.c: New file.
901         * lib/unictype/categ_Co.c: New file.
902         * lib/unictype/categ_Cs.c: New file.
903         * lib/unictype/categ_L.c: New file.
904         * lib/unictype/categ_Ll.c: New file.
905         * lib/unictype/categ_Lm.c: New file.
906         * lib/unictype/categ_Lo.c: New file.
907         * lib/unictype/categ_Lt.c: New file.
908         * lib/unictype/categ_Lu.c: New file.
909         * lib/unictype/categ_M.c: New file.
910         * lib/unictype/categ_Mc.c: New file.
911         * lib/unictype/categ_Me.c: New file.
912         * lib/unictype/categ_Mn.c: New file.
913         * lib/unictype/categ_N.c: New file.
914         * lib/unictype/categ_Nd.c: New file.
915         * lib/unictype/categ_Nl.c: New file.
916         * lib/unictype/categ_No.c: New file.
917         * lib/unictype/categ_P.c: New file.
918         * lib/unictype/categ_Pc.c: New file.
919         * lib/unictype/categ_Pd.c: New file.
920         * lib/unictype/categ_Pe.c: New file.
921         * lib/unictype/categ_Pf.c: New file.
922         * lib/unictype/categ_Pi.c: New file.
923         * lib/unictype/categ_Po.c: New file.
924         * lib/unictype/categ_Ps.c: New file.
925         * lib/unictype/categ_S.c: New file.
926         * lib/unictype/categ_Sc.c: New file.
927         * lib/unictype/categ_Sk.c: New file.
928         * lib/unictype/categ_Sm.c: New file.
929         * lib/unictype/categ_So.c: New file.
930         * lib/unictype/categ_Z.c: New file.
931         * lib/unictype/categ_Zl.c: New file.
932         * lib/unictype/categ_Zp.c: New file.
933         * lib/unictype/categ_Zs.c: New file.
934         * lib/unictype/categ_and.c: New file.
935         * lib/unictype/categ_and_not.c: New file.
936         * lib/unictype/categ_byname.c: New file.
937         * lib/unictype/categ_name.c: New file.
938         * lib/unictype/categ_none.c: New file.
939         * lib/unictype/categ_of.c: New file.
940         * lib/unictype/categ_or.c: New file.
941         * lib/unictype/categ_test.c: New file.
942         * lib/unictype/combining.c: New file.
943         * lib/unictype/ctype_alnum.c: New file.
944         * lib/unictype/ctype_alpha.c: New file.
945         * lib/unictype/ctype_blank.c: New file.
946         * lib/unictype/ctype_cntrl.c: New file.
947         * lib/unictype/ctype_digit.c: New file.
948         * lib/unictype/ctype_graph.c: New file.
949         * lib/unictype/ctype_lower.c: New file.
950         * lib/unictype/ctype_print.c: New file.
951         * lib/unictype/ctype_punct.c: New file.
952         * lib/unictype/ctype_space.c: New file.
953         * lib/unictype/ctype_upper.c: New file.
954         * lib/unictype/ctype_xdigit.c: New file.
955         * lib/unictype/decdigit.c: New file.
956         * lib/unictype/digit.c: New file.
957         * lib/unictype/identsyntaxmap.h: New file.
958         * lib/unictype/mirror.c: New file.
959         * lib/unictype/numeric.c: New file.
960         * lib/unictype/pr_alphabetic.c: New file.
961         * lib/unictype/pr_ascii_hex_digit.c: New file.
962         * lib/unictype/pr_bidi_arabic_digit.c: New file.
963         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
964         * lib/unictype/pr_bidi_block_separator.c: New file.
965         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
966         * lib/unictype/pr_bidi_common_separator.c: New file.
967         * lib/unictype/pr_bidi_control.c: New file.
968         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
969         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
970         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
971         * lib/unictype/pr_bidi_european_digit.c: New file.
972         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
973         * lib/unictype/pr_bidi_left_to_right.c: New file.
974         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
975         * lib/unictype/pr_bidi_other_neutral.c: New file.
976         * lib/unictype/pr_bidi_pdf.c: New file.
977         * lib/unictype/pr_bidi_segment_separator.c: New file.
978         * lib/unictype/pr_bidi_whitespace.c: New file.
979         * lib/unictype/pr_byname.c: New file.
980         * lib/unictype/pr_byname.gperf: New file.
981         * lib/unictype/pr_combining.c: New file.
982         * lib/unictype/pr_composite.c: New file.
983         * lib/unictype/pr_currency_symbol.c: New file.
984         * lib/unictype/pr_dash.c: New file.
985         * lib/unictype/pr_decimal_digit.c: New file.
986         * lib/unictype/pr_default_ignorable_code_point.c: New file.
987         * lib/unictype/pr_deprecated.c: New file.
988         * lib/unictype/pr_diacritic.c: New file.
989         * lib/unictype/pr_extender.c: New file.
990         * lib/unictype/pr_format_control.c: New file.
991         * lib/unictype/pr_grapheme_base.c: New file.
992         * lib/unictype/pr_grapheme_extend.c: New file.
993         * lib/unictype/pr_grapheme_link.c: New file.
994         * lib/unictype/pr_hex_digit.c: New file.
995         * lib/unictype/pr_hyphen.c: New file.
996         * lib/unictype/pr_id_continue.c: New file.
997         * lib/unictype/pr_id_start.c: New file.
998         * lib/unictype/pr_ideographic.c: New file.
999         * lib/unictype/pr_ids_binary_operator.c: New file.
1000         * lib/unictype/pr_ids_trinary_operator.c: New file.
1001         * lib/unictype/pr_ignorable_control.c: New file.
1002         * lib/unictype/pr_iso_control.c: New file.
1003         * lib/unictype/pr_join_control.c: New file.
1004         * lib/unictype/pr_left_of_pair.c: New file.
1005         * lib/unictype/pr_line_separator.c: New file.
1006         * lib/unictype/pr_logical_order_exception.c: New file.
1007         * lib/unictype/pr_lowercase.c: New file.
1008         * lib/unictype/pr_math.c: New file.
1009         * lib/unictype/pr_non_break.c: New file.
1010         * lib/unictype/pr_not_a_character.c: New file.
1011         * lib/unictype/pr_numeric.c: New file.
1012         * lib/unictype/pr_other_alphabetic.c: New file.
1013         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
1014         * lib/unictype/pr_other_grapheme_extend.c: New file.
1015         * lib/unictype/pr_other_id_continue.c: New file.
1016         * lib/unictype/pr_other_id_start.c: New file.
1017         * lib/unictype/pr_other_lowercase.c: New file.
1018         * lib/unictype/pr_other_math.c: New file.
1019         * lib/unictype/pr_other_uppercase.c: New file.
1020         * lib/unictype/pr_paired_punctuation.c: New file.
1021         * lib/unictype/pr_paragraph_separator.c: New file.
1022         * lib/unictype/pr_pattern_syntax.c: New file.
1023         * lib/unictype/pr_pattern_white_space.c: New file.
1024         * lib/unictype/pr_private_use.c: New file.
1025         * lib/unictype/pr_punctuation.c: New file.
1026         * lib/unictype/pr_quotation_mark.c: New file.
1027         * lib/unictype/pr_radical.c: New file.
1028         * lib/unictype/pr_sentence_terminal.c: New file.
1029         * lib/unictype/pr_soft_dotted.c: New file.
1030         * lib/unictype/pr_space.c: New file.
1031         * lib/unictype/pr_terminal_punctuation.c: New file.
1032         * lib/unictype/pr_test.c: New file.
1033         * lib/unictype/pr_titlecase.c: New file.
1034         * lib/unictype/pr_unassigned_code_value.c: New file.
1035         * lib/unictype/pr_unified_ideograph.c: New file.
1036         * lib/unictype/pr_uppercase.c: New file.
1037         * lib/unictype/pr_variation_selector.c: New file.
1038         * lib/unictype/pr_white_space.c: New file.
1039         * lib/unictype/pr_xid_continue.c: New file.
1040         * lib/unictype/pr_xid_start.c: New file.
1041         * lib/unictype/pr_zero_width.c: New file.
1042         * lib/unictype/scripts.c: New file.
1043         * lib/unictype/sy_c_ident.c: New file.
1044         * lib/unictype/sy_c_whitespace.c: New file.
1045         * lib/unictype/sy_java_ident.c: New file.
1046         * lib/unictype/sy_java_whitespace.c: New file.
1047
1048         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
1049         Unicode 5.0.0.
1050         * lib/unictype/blocks.h: Likewise.
1051         * lib/unictype/categ_C.h: Likewise.
1052         * lib/unictype/categ_Cc.h: Likewise.
1053         * lib/unictype/categ_Cf.h: Likewise.
1054         * lib/unictype/categ_Cn.h: Likewise.
1055         * lib/unictype/categ_Co.h: Likewise.
1056         * lib/unictype/categ_Cs.h: Likewise.
1057         * lib/unictype/categ_L.h: Likewise.
1058         * lib/unictype/categ_Ll.h: Likewise.
1059         * lib/unictype/categ_Lm.h: Likewise.
1060         * lib/unictype/categ_Lo.h: Likewise.
1061         * lib/unictype/categ_Lt.h: Likewise.
1062         * lib/unictype/categ_Lu.h: Likewise.
1063         * lib/unictype/categ_M.h: Likewise.
1064         * lib/unictype/categ_Mc.h: Likewise.
1065         * lib/unictype/categ_Me.h: Likewise.
1066         * lib/unictype/categ_Mn.h: Likewise.
1067         * lib/unictype/categ_N.h: Likewise.
1068         * lib/unictype/categ_Nd.h: Likewise.
1069         * lib/unictype/categ_Nl.h: Likewise.
1070         * lib/unictype/categ_No.h: Likewise.
1071         * lib/unictype/categ_P.h: Likewise.
1072         * lib/unictype/categ_Pc.h: Likewise.
1073         * lib/unictype/categ_Pd.h: Likewise.
1074         * lib/unictype/categ_Pe.h: Likewise.
1075         * lib/unictype/categ_Pf.h: Likewise.
1076         * lib/unictype/categ_Pi.h: Likewise.
1077         * lib/unictype/categ_Po.h: Likewise.
1078         * lib/unictype/categ_Ps.h: Likewise.
1079         * lib/unictype/categ_S.h: Likewise.
1080         * lib/unictype/categ_Sc.h: Likewise.
1081         * lib/unictype/categ_Sk.h: Likewise.
1082         * lib/unictype/categ_Sm.h: Likewise.
1083         * lib/unictype/categ_So.h: Likewise.
1084         * lib/unictype/categ_Z.h: Likewise.
1085         * lib/unictype/categ_Zl.h: Likewise.
1086         * lib/unictype/categ_Zp.h: Likewise.
1087         * lib/unictype/categ_Zs.h: Likewise.
1088         * lib/unictype/categ_of.h: Likewise.
1089         * lib/unictype/combining.h: Likewise.
1090         * lib/unictype/ctype_alnum.h: Likewise.
1091         * lib/unictype/ctype_alpha.h: Likewise.
1092         * lib/unictype/ctype_blank.h: Likewise.
1093         * lib/unictype/ctype_cntrl.h: Likewise.
1094         * lib/unictype/ctype_digit.h: Likewise.
1095         * lib/unictype/ctype_graph.h: Likewise.
1096         * lib/unictype/ctype_lower.h: Likewise.
1097         * lib/unictype/ctype_print.h: Likewise.
1098         * lib/unictype/ctype_punct.h: Likewise.
1099         * lib/unictype/ctype_space.h: Likewise.
1100         * lib/unictype/ctype_upper.h: Likewise.
1101         * lib/unictype/ctype_xdigit.h: Likewise.
1102         * lib/unictype/decdigit.h: Likewise.
1103         * lib/unictype/digit.h: Likewise.
1104         * lib/unictype/mirror.h: Likewise.
1105         * lib/unictype/numeric.h: Likewise.
1106         * lib/unictype/pr_alphabetic.h: Likewise.
1107         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
1108         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
1109         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
1110         * lib/unictype/pr_bidi_block_separator.h: Likewise.
1111         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
1112         * lib/unictype/pr_bidi_common_separator.h: Likewise.
1113         * lib/unictype/pr_bidi_control.h: Likewise.
1114         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
1115         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
1116         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
1117         * lib/unictype/pr_bidi_european_digit.h: Likewise.
1118         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
1119         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
1120         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
1121         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
1122         * lib/unictype/pr_bidi_pdf.h: Likewise.
1123         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
1124         * lib/unictype/pr_bidi_whitespace.h: Likewise.
1125         * lib/unictype/pr_combining.h: Likewise.
1126         * lib/unictype/pr_composite.h: Likewise.
1127         * lib/unictype/pr_currency_symbol.h: Likewise.
1128         * lib/unictype/pr_dash.h: Likewise.
1129         * lib/unictype/pr_decimal_digit.h: Likewise.
1130         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
1131         * lib/unictype/pr_deprecated.h: Likewise.
1132         * lib/unictype/pr_diacritic.h: Likewise.
1133         * lib/unictype/pr_extender.h: Likewise.
1134         * lib/unictype/pr_format_control.h: Likewise.
1135         * lib/unictype/pr_grapheme_base.h: Likewise.
1136         * lib/unictype/pr_grapheme_extend.h: Likewise.
1137         * lib/unictype/pr_grapheme_link.h: Likewise.
1138         * lib/unictype/pr_hex_digit.h: Likewise.
1139         * lib/unictype/pr_hyphen.h: Likewise.
1140         * lib/unictype/pr_id_continue.h: Likewise.
1141         * lib/unictype/pr_id_start.h: Likewise.
1142         * lib/unictype/pr_ideographic.h: Likewise.
1143         * lib/unictype/pr_ids_binary_operator.h: Likewise.
1144         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
1145         * lib/unictype/pr_ignorable_control.h: Likewise.
1146         * lib/unictype/pr_iso_control.h: Likewise.
1147         * lib/unictype/pr_join_control.h: Likewise.
1148         * lib/unictype/pr_left_of_pair.h: Likewise.
1149         * lib/unictype/pr_line_separator.h: Likewise.
1150         * lib/unictype/pr_logical_order_exception.h: Likewise.
1151         * lib/unictype/pr_lowercase.h: Likewise.
1152         * lib/unictype/pr_math.h: Likewise.
1153         * lib/unictype/pr_non_break.h: Likewise.
1154         * lib/unictype/pr_not_a_character.h: Likewise.
1155         * lib/unictype/pr_numeric.h: Likewise.
1156         * lib/unictype/pr_other_alphabetic.h: Likewise.
1157         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
1158         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
1159         * lib/unictype/pr_other_id_continue.h: Likewise.
1160         * lib/unictype/pr_other_id_start.h: Likewise.
1161         * lib/unictype/pr_other_lowercase.h: Likewise.
1162         * lib/unictype/pr_other_math.h: Likewise.
1163         * lib/unictype/pr_other_uppercase.h: Likewise.
1164         * lib/unictype/pr_paired_punctuation.h: Likewise.
1165         * lib/unictype/pr_paragraph_separator.h: Likewise.
1166         * lib/unictype/pr_pattern_syntax.h: Likewise.
1167         * lib/unictype/pr_pattern_white_space.h: Likewise.
1168         * lib/unictype/pr_private_use.h: Likewise.
1169         * lib/unictype/pr_punctuation.h: Likewise.
1170         * lib/unictype/pr_quotation_mark.h: Likewise.
1171         * lib/unictype/pr_radical.h: Likewise.
1172         * lib/unictype/pr_sentence_terminal.h: Likewise.
1173         * lib/unictype/pr_soft_dotted.h: Likewise.
1174         * lib/unictype/pr_space.h: Likewise.
1175         * lib/unictype/pr_terminal_punctuation.h: Likewise.
1176         * lib/unictype/pr_titlecase.h: Likewise.
1177         * lib/unictype/pr_unassigned_code_value.h: Likewise.
1178         * lib/unictype/pr_unified_ideograph.h: Likewise.
1179         * lib/unictype/pr_uppercase.h: Likewise.
1180         * lib/unictype/pr_variation_selector.h: Likewise.
1181         * lib/unictype/pr_white_space.h: Likewise.
1182         * lib/unictype/pr_xid_continue.h: Likewise.
1183         * lib/unictype/pr_xid_start.h: Likewise.
1184         * lib/unictype/pr_zero_width.h: Likewise.
1185         * lib/unictype/scripts.h: Likewise.
1186         * lib/unictype/scripts_byname.gperf: Likewise.
1187         * lib/unictype/sy_c_ident.h: Likewise.
1188         * lib/unictype/sy_c_whitespace.h: Likewise.
1189         * lib/unictype/sy_java_ident.h: Likewise.
1190         * lib/unictype/sy_java_whitespace.h: Likewise.
1191
1192         * lib/unictype/Makefile: New file.
1193         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
1194         glibc.
1195         * lib/unictype/3level.h: New file, copied from glibc.
1196         * lib/unictype/3levelbit.h: New file.
1197
1198 2007-11-11  Bruno Haible  <bruno@clisp.org>
1199
1200         * modules/gperf: New file.
1201         * modules/iconv_open (Depends-on): Add it.
1202         (Makefile.am): Remove the GPERF definition.
1203
1204 2007-11-11  Bruno Haible  <bruno@clisp.org>
1205
1206         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
1207         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
1208
1209 2007-11-11  Bruno Haible  <bruno@clisp.org>
1210
1211         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
1212         (usage): Remove function.
1213
1214 2007-11-11  Bruno Haible  <bruno@clisp.org>
1215
1216         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
1217         gl_FUNC_CEILF_LIBS.
1218         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
1219         gl_FUNC_CEIL_LIBS.
1220         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
1221         gl_FUNC_CEILL_LIBS.
1222         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
1223         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
1224         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
1225
1226 2007-11-11  Bruno Haible  <bruno@clisp.org>
1227
1228         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
1229         roundf were declared but do not exist on functions.
1230         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
1231         roundl were declared but do not exist on functions.
1232         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
1233         HAVE_FLOORL_AND_CEILL, respectively.
1234         Needed for Sun C on Solaris 10.
1235
1236 2007-11-11  Bruno Haible  <bruno@clisp.org>
1237
1238         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
1239         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
1240         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
1241         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
1242         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
1243         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
1244         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
1245         HAVE_DECL_ROUNDF.
1246         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
1247         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
1248         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
1249         of HAVE_DECL_ROUND*.
1250         * modules/math (Makefile.am): Update.
1251
1252 2007-11-10  Bruno Haible  <bruno@clisp.org>
1253
1254         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
1255         ptrdiff_t as m4/intl.m4.
1256
1257 2007-11-10  Jim Meyering  <meyering@redhat.com>
1258
1259         Avoid link failure for the argmatch test.
1260         * tests/test-argmatch.c (usage): Define function to avoid a link
1261         failure: argmatch_die requires a usage function.
1262
1263 2007-11-09  Bruno Haible  <bruno@clisp.org>
1264
1265         * doc/functions/snprintf.texi: Mention BeOS deficiency.
1266         * doc/functions/vsnprintf.texi: Likewise.
1267         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
1268         with a size argument < 2.
1269
1270 2007-11-09  Bruno Haible  <bruno@clisp.org>
1271
1272         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
1273         buffer. Fixes an inefficiency introduced on 2007-11-03.
1274
1275 2007-11-09  Bruno Haible  <bruno@clisp.org>
1276
1277         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
1278         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
1279
1280 2007-11-08  Jim Meyering  <meyering@redhat.com>
1281
1282         Change cache variable name prefix "jm_" to "gl_" everywhere.
1283         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
1284         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
1285         * m4/uptime.m4: s/gl_/jm_/
1286
1287 2007-11-07  Bruno Haible  <bruno@clisp.org>
1288
1289         Update to GNU gettext 0.17.
1290         * m4/intl.m4: Update to GNU gettext 0.17.
1291         * m4/po.m4: Likewise.
1292         * modules/gettext (Files): Remove m4/ulonglong.m4.
1293         (configure.ac): Require gettext infrastructure from version 0.17.
1294
1295 2007-11-06  Bruno Haible  <bruno@clisp.org>
1296
1297         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
1298         symbolic values are not defined in a public header.
1299         * lib/freadable.c (freadable) [QNX]: Likewise.
1300         * lib/freadahead.c (freadahead) [QNX]: Likewise.
1301         * lib/freading.c (freading) [QNX]: Likewise.
1302         * lib/fseterr.c (fseterr) [QNX]: Likewise.
1303         * lib/fwritable.c (fwritable) [QNX]: Likewise.
1304         * lib/fwriting.c (fwriting) [QNX]: Likewise.
1305         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
1306         Reported by Alain Magloire.
1307
1308         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
1309
1310 2007-11-05  Bruno Haible  <bruno@clisp.org>
1311
1312         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
1313         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
1314         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
1315         Reported by Eric Blake.
1316
1317 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1318             Bruno Haible  <bruno@clisp.org>
1319
1320         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
1321         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
1322         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
1323         (malloc): Undefine also before including <stdlib.h>.
1324         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
1325         Needed on OSF/1 4.0.
1326
1327 2007-11-05  Jim Meyering  <meyering@redhat.com>
1328
1329         git-version-gen: sync from coreutils.
1330         * build-aux/git-version-gen: Add comments.
1331         Change the first '-' to '.' in the snapshot version string,
1332         e.g., 6.9-377-08144 -> 6.9.377-08144
1333         Remove first parameter.
1334         Don't declare a version "-dirty" merely because a time
1335         stamp has changed.
1336
1337 2007-11-04  Bruno Haible  <bruno@clisp.org>
1338
1339         * lib/lock.h: Protect all macro definitions containing an 'if'
1340         statement through a "do { ... } while (0)".
1341         * lib/tls.h: Likewise.
1342
1343 2007-11-04  Bruno Haible  <bruno@clisp.org>
1344
1345         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
1346
1347 2007-11-04  Bruno Haible  <bruno@clisp.org>
1348
1349         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
1350         * modules/fprintf-posix (Depends-on): Add nocrash.
1351         * modules/snprintf-posix (Depends-on): Likewise.
1352         * modules/sprintf-posix (Depends-on): Likewise.
1353         * modules/vasnprintf-posix (Depends-on): Likewise.
1354         * modules/vasprintf-posix (Depends-on): Likewise.
1355         * modules/vfprintf-posix (Depends-on): Likewise.
1356         * modules/vsnprintf-posix (Depends-on): Likewise.
1357         * modules/vsprintf-posix (Depends-on): Likewise.
1358         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
1359         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
1360         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
1361         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
1362         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
1363         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
1364         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
1365
1366 2007-11-04  Bruno Haible  <bruno@clisp.org>
1367
1368         * modules/nocrash: New file.
1369         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
1370         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
1371
1372 2007-11-04  Bruno Haible  <bruno@clisp.org>
1373
1374         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
1375         precision handling.
1376         * tests/test-vasprintf-posix.c (test_function): Likewise.
1377         * tests/test-snprintf-posix.h (test_function): Likewise.
1378         * tests/test-sprintf-posix.h (test_function): Likewise.
1379
1380         Fix *printf behaviour for large precisions on mingw and BeOS.
1381         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
1382         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
1383         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
1384         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
1385         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1386         gl_PRINTF_PRECISION and test its result. Invoke
1387         gl_PREREQ_VASNPRINTF_PRECISION.
1388         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1389         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1390         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1391         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1392         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1393         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1394         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1395         * doc/functions/fprintf.texi: Update.
1396         * doc/functions/printf.texi: Update.
1397         * doc/functions/snprintf.texi: Update.
1398         * doc/functions/sprintf.texi: Update.
1399         * doc/functions/vfprintf.texi: Update.
1400         * doc/functions/vprintf.texi: Update.
1401         * doc/functions/vsnprintf.texi: Update.
1402         * doc/functions/vsprintf.texi: Update.
1403
1404 2007-11-04  Bruno Haible  <bruno@clisp.org>
1405
1406         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
1407
1408 2007-11-04  Bruno Haible  <bruno@clisp.org>
1409
1410         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
1411         Reported by Sylvain Beucler <beuc@gnu.org>.
1412
1413 2007-11-03  Bruno Haible  <bruno@clisp.org>
1414
1415         * tests/test-fprintf-posix2.sh: New file.
1416         * tests/test-fprintf-posix2.c: New file.
1417         * modules/fprintf-posix-tests (Files): Add them.
1418         (TESTS): Add test-fprintf-posix2.sh.
1419         (configure.ac): Check for getrlimit and setrlimit.
1420         (check_PROGRAMS): Add test-fprintf-posix2.
1421
1422         * tests/test-printf-posix2.sh: New file.
1423         * tests/test-printf-posix2.c: New file.
1424         * modules/printf-posix-tests (Files): Add them.
1425         (TESTS): Add test-printf-posix2.sh.
1426         (configure.ac): Check for getrlimit and setrlimit.
1427         (check_PROGRAMS): Add test-printf-posix2.
1428
1429         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
1430         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
1431         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
1432         (decode_double): New function, copied from decode_long_double.
1433         (scale10_round_decimal_decoded): New function, extracted from
1434         scale10_round_decimal_long_double.
1435         (scale10_round_decimal_long_double): Use it.
1436         (scale10_round_decimal_double): New function.
1437         (floorlog10): New function.
1438         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
1439         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
1440         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
1441         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1442         gl_PRINTF_ENOMEM and test its result. Invoke
1443         gl_PREREQ_VASNPRINTF_ENOMEM.
1444         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1445         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1446         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1447         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1448         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1449         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1450         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1451         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
1452         * modules/snprintf-posix (Depends-on): Likewise.
1453         * modules/sprintf-posix (Depends-on): Likewise.
1454         * modules/vasnprintf-posix (Depends-on): Likewise.
1455         * modules/vasprintf-posix (Depends-on): Likewise.
1456         * modules/vfprintf-posix (Depends-on): Likewise.
1457         * modules/vsnprintf-posix (Depends-on): Likewise.
1458         * modules/vsprintf-posix (Depends-on): Likewise.
1459         * doc/functions/fprintf.texi: Update.
1460         * doc/functions/printf.texi: Update.
1461         * doc/functions/snprintf.texi: Update.
1462         * doc/functions/sprintf.texi: Update.
1463         * doc/functions/vfprintf.texi: Update.
1464         * doc/functions/vprintf.texi: Update.
1465         * doc/functions/vsnprintf.texi: Update.
1466         * doc/functions/vsprintf.texi: Update.
1467
1468 2007-11-03  Bruno Haible  <bruno@clisp.org>
1469
1470         * modules/frexp-nolibm-tests: New file.
1471
1472         * modules/frexp-nolibm: New file.
1473         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
1474
1475 2007-11-03  Bruno Haible  <bruno@clisp.org>
1476
1477         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
1478         value is C99 compliant.
1479         Needed for OSF/1 5.1.
1480
1481 2007-11-03  Bruno Haible  <bruno@clisp.org>
1482
1483         Fix out-of-memory handling of vasnprintf.
1484         * lib/printf-parse.c: Include <errno.h>.
1485         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
1486         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
1487         is already set.
1488
1489 2007-11-02  Eric Blake  <ebb9@byu.net>
1490
1491         Fix tests on cygwin.
1492         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
1493
1494 2007-11-01  Bruno Haible  <bruno@clisp.org>
1495
1496         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
1497         warning.
1498         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
1499         needed for POSIX compatibility.
1500
1501 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
1502
1503         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
1504         for compatibility with GNU.
1505
1506 2007-11-01  Bruno Haible  <bruno@clisp.org>
1507
1508         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
1509         (putenv): Renamed from rpl_putenv. Change argument type from
1510         'const char *' to 'char *'.
1511         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
1512         of defining putenv in config.h, just set REPLACE_PUTENV.
1513         * modules/putenv (Depends-on): Add stdlib.
1514         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
1515         (Include): Use <stdlib.h>.
1516         * lib/stdlib.in.h (putenv): New declaration.
1517         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
1518         REPLACE_PUTENV.
1519         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
1520         REPLACE_PUTENV.
1521         Needed for MacOS X 10.5.0.
1522         Reported by Peter O'Gorman <peter@pogma.com>.
1523
1524 2007-11-01  Jim Meyering  <meyering@redhat.com>
1525
1526         Treat an empty date string exactly like "0".
1527         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
1528         if the remaining date string (to be parsed) is empty, use "0".
1529         Reported by Mischa Molhoek and discussed in this thread:
1530         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
1531
1532 2007-10-31  Bruno Haible  <bruno@clisp.org>
1533
1534         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
1535         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
1536         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
1537         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
1538         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
1539         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
1540
1541 2007-10-31  Bruno Haible  <bruno@clisp.org>
1542
1543         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
1544         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
1545         (AC_TYPE_LONG_LONG_INT): Use it.
1546         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
1547         it as well.
1548         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
1549         to m4/longlong.m4.
1550         * modules/stdint (Files): Remove m4/ulonglong.m4.
1551         * modules/strtoull (Files): Use m4/longlong.m4 instead of
1552         m4/ulonglong.m4.
1553         * modules/strtoumax (Files): Likewise.
1554
1555 2007-10-30  Bruno Haible  <bruno@clisp.org>
1556
1557         * modules/xvasprintf-posix: New file.
1558         Suggested by Eric Blake.
1559
1560 2007-10-30  Bruno Haible  <bruno@clisp.org>
1561
1562         * modules/xprintf-posix-tests: New file.
1563         * tests/test-xprintf-posix.sh: New file.
1564         * tests/test-xprintf-posix.c: New file.
1565         * tests/test-xfprintf-posix.c: New file.
1566
1567         * modules/xprintf-posix: New file.
1568
1569 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1570
1571         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
1572         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
1573         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
1574
1575 2007-10-29  Bruno Haible  <bruno@clisp.org>
1576
1577         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
1578         contain the special marker '_cv_'.
1579         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
1580         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
1581         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
1582         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
1583         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
1584         Reported by Ralf Wildenhues.
1585
1586 2007-10-29  Bruno Haible  <bruno@clisp.org>
1587
1588         * gnulib-tool (func_import): When --lgpl is not specified, set
1589         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
1590         GPLv3.
1591         Reported by Simon Josefsson.
1592
1593 2007-10-28  Bruno Haible  <bruno@clisp.org>
1594
1595         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
1596         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
1597         HAVE_DECL_ISFINITE.
1598         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
1599         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
1600         HAVE_DECL_ISFINITE.
1601
1602 2007-10-28  Bruno Haible  <bruno@clisp.org>
1603
1604         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
1605         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
1606
1607 2007-10-28  Bruno Haible  <bruno@clisp.org>
1608
1609         Fix link errors with Sun C 5.0 on Solaris 10.
1610         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
1611         function is declared but not present in the compiler's libm.
1612         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
1613         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
1614         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
1615         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
1616         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
1617         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
1618         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
1619         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
1620         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
1621         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
1622         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
1623         HAVE_DECL_FLOORL.
1624
1625 2007-10-28  Bruno Haible  <bruno@clisp.org>
1626
1627         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
1628         gl_FUNC_FLOORL. Cache the result.
1629         (gl_FUNC_FLOORL): Use it.
1630         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
1631         gl_FUNC_CEILL. Cache the result.
1632         (gl_FUNC_CEILL): Use it.
1633
1634         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
1635         gl_FUNC_FLOOR. Cache the result.
1636         (gl_FUNC_FLOOR): Use it.
1637         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
1638         gl_FUNC_CEIL. Cache the result.
1639         (gl_FUNC_CEIL): Use it.
1640
1641         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
1642         gl_FUNC_FLOORF. Cache the result.
1643         (gl_FUNC_FLOORF): Use it.
1644         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
1645         gl_FUNC_CEILF. Cache the result.
1646         (gl_FUNC_CEILF): Use it.
1647
1648 2007-10-28  Bruno Haible  <bruno@clisp.org>
1649
1650         * gnulib-tool: Allow specifying the LGPL version number through
1651         --lgpl=2 or --lgpl=3.
1652         (func_usage): Document --lgpl with argument.
1653         Handle --lgpl=... arguments.
1654         (func_import): Recognize also gl_LGPL calls with an argument. When
1655         --lgpl=2 is used and the module's license is just LGPL, report an
1656         error. Set sed_transform_lib_file according to the lgpl variable. In
1657         the generated files, use --lgpl or gl_LGPL invocations with argument,
1658         if necessary.
1659         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
1660         an LGPv2+ license.
1661         * doc/gnulib-tool.texi (Modified imports): Update explanation of
1662         gl_LGPL macro.
1663
1664 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1665             Bruno Haible  <bruno@clisp.org>
1666
1667         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
1668         (u16_uctomb_aux): Likewise.
1669         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
1670         !HAVE_INLINE.
1671         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
1672
1673 2007-10-28  Bruno Haible  <bruno@clisp.org>
1674
1675         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
1676         Invoke AM_GETTEXT_OPTION if it exists.
1677         * modules/vasprintf: Likewise.
1678         * modules/verror: Likewise.
1679         * modules/xprintf: Likewise.
1680         * modules/xvasprintf: Likewise.
1681
1682 2007-10-27  Ben Pfaff  <blp@gnu.org>
1683
1684         * lib/math.in.h: Define isfinite macro and prototypes for
1685         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
1686         implementations.
1687         * m4/math_h.m4: New substitutions for isfinite module.
1688         * lib/isfinite.c: New file.
1689         * m4/isfinite.m4: New file.
1690         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
1691         * modules/isfinite: New file.
1692         * modules/isfinite-tests: New file.
1693         * tests/tests-isfinite.c: New file.
1694         * doc/functions/isfinite.texi: Mention isfinite module.
1695         * MODULES.html.sh: Mention new module.
1696
1697 2007-10-27  Ben Pfaff  <blp@gnu.org>
1698
1699         Ralf Wildenhues reported that Tru64 4.0D declares the round
1700         functions but does not have definitions.
1701         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
1702         cannot be found in any library, set the output variable to
1703         "missing" instead of "".
1704         * m4/round.m4: Also use our substitute if we cannot find round in
1705         any library, even if it is declared.
1706         * m4/roundf.m4: Likewise for roundf.
1707         * m4/roundl.m4: Likewise for roundl.
1708         * lib/math.in.h: Undefine roundf, round, roundl before defining
1709         their replacements, to allow for hypothetical systems where these
1710         may be defined as macros but not available in libraries.
1711
1712 2007-10-27  Bruno Haible  <bruno@clisp.org>
1713
1714         * doc/gnulib.texi: Invoke @firstparagraphindent.
1715         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
1716         changes in gnulib.
1717         (Source changes): New section.
1718
1719 2007-10-26  Bruno Haible  <bruno@clisp.org>
1720
1721         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
1722         borrowed from autoconf.
1723
1724 2007-10-26  Bruno Haible  <bruno@clisp.org>
1725
1726         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
1727         strerror returned the empty string. Needed on HP-UX 11.00.
1728
1729 2007-10-24  Micah Cowan  <micah@cowan.name>
1730
1731         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
1732         * build-aux/bootstrap: Remove support for now-unnecessary option,
1733         --cvs-user, and envvars CVS_USER, CVS_RSH.
1734
1735 2007-10-24  Jim Meyering  <meyering@redhat.com>
1736
1737         Avoid diagnostics from sha1sum when there is no cached checksum.
1738         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
1739         if the po.s1 file hasn't been created yet.
1740
1741         * build-aux/bootstrap: Sync from coreutils:
1742         2007-10-24  Jim Meyering  <meyering@redhat.com>
1743         Get gnulib from the git repository, not from an obsolete cvs one.
1744         * build-aux/bootstrap: Suggestion from Micah Cowan.
1745         2007-10-04  Jim Meyering  <jim@meyering.net>
1746         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
1747         (update_po_files): Work also when there are no .po files in po/.
1748
1749 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1750
1751         * README: Append ".git" to git and cg examples.
1752         Problem reported by Benoit Sigoure.
1753
1754 2007-10-23  Micah Cowan  <micah@cowan.name>
1755
1756         * users.txt: Add wget.
1757
1758 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1759
1760         Fix linking of some unistdio tests on FreeBSD.
1761         * modules/unistdio/u16-vsnprintf-tests
1762         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
1763         * modules/unistdio/u16-vsprintf-tests
1764         (test_u16_vsnprintf1_LDADD): Likewise.
1765         * modules/unistdio/u32-vsnprintf-tests
1766         (test_u32_vsnprintf1_LDADD): Likewise.
1767         * modules/unistdio/u32-vsprintf-tests
1768         (test_u32_vsprintf1_LDADD): Likewise.
1769         * modules/unistdio/u8-vsnprintf-tests
1770         (test_u8_vsnprintf1_LDADD): Likewise.
1771         * modules/unistdio/u8-vsprintf-tests
1772         (test_u8_vsprintf1_LDADD): Likewise.
1773         * modules/unistdio/ulc-vsnprintf-tests
1774         (test_ulc_vsnprintf1_LDADD): Likewise.
1775         * modules/unistdio/ulc-vsprintf-tests
1776         (test_ulc_vsprintf1_LDADD): Likewise.
1777
1778         Fix linking of some uniconv tests on FreeBSD.
1779         * modules/uniconv/u16-conv-from-enc-tests
1780         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
1781         * modules/uniconv/u16-conv-to-enc-tests
1782         (test_u16_conv_to_enc_LDADD): Likewise.
1783         * modules/uniconv/u16-strconv-from-enc-tests
1784         (test_u16_strconv_from_enc_LDADD): Likewise.
1785         * modules/uniconv/u16-strconv-to-enc-tests
1786         (test_u16_strconv_to_enc_LDADD): Likewise.
1787         * modules/uniconv/u32-conv-from-enc-tests
1788         (test_u32_conv_from_enc_LDADD): Likewise.
1789         * modules/uniconv/u32-conv-to-enc-tests
1790         (test_u32_conv_to_enc_LDADD): Likewise.
1791         * modules/uniconv/u32-strconv-from-enc-tests
1792         (test_u32_strconv_from_enc_LDADD): Likewise.
1793         * modules/uniconv/u32-strconv-to-enc-tests
1794         (test_u32_strconv_to_enc_LDADD): Likewise.
1795         * modules/uniconv/u8-conv-from-enc-tests
1796         (test_u8_conv_from_enc_LDADD): Likewise.
1797         * modules/uniconv/u8-conv-to-enc-tests
1798         (test_u8_conv_to_enc_LDADD): Likewise.
1799         * modules/uniconv/u8-strconv-from-enc-tests
1800         (test_u8_strconv_from_enc_LDADD): Likewise.
1801         * modules/uniconv/u8-strconv-to-enc-tests
1802         (test_u8_strconv_to_enc_LDADD): Likewise.
1803
1804 2007-10-22  Bruno Haible  <bruno@clisp.org>
1805
1806         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
1807         size.
1808
1809 2007-10-22  Eric Blake  <ebb9@byu.net>
1810
1811         Tweak x*printf documentation.
1812         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
1813         variable name and comments.
1814         Suggested by Bruno Haible.
1815
1816 2007-10-22  Bruno Haible  <bruno@clisp.org>
1817
1818         * lib/acl.c (copy_acl): Fix file name in comment.
1819
1820 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1821
1822         Fix Tru64 problem with stdbool.h.
1823         * lib/stdbool.in.h (false, true):
1824         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
1825         Don't declare as an enum in this situation; it runs afoul of Tru64.
1826         Problem reported by Steven M. Schweda in
1827         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
1828
1829 2007-10-22  Eric Blake  <ebb9@byu.net>
1830
1831         Also wrap vf?printf.
1832         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
1833         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
1834         (xvprintf, xvfprintf): New functions.
1835
1836 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1837
1838         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
1839         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
1840
1841         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
1842         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
1843
1844 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1845
1846         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
1847         by Bruno Haible.
1848
1849 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1850
1851         * lib/getloadavg.c
1852         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
1853         Undef `sys' after including sys/table.h, for Tru64 4.0D.
1854
1855         * tests/test-i-ring.c: Work for C89.
1856
1857 2007-10-22  Bruno Haible  <bruno@clisp.org>
1858
1859         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
1860         -1u, in preprocessor expression, so that we don't test for the bug
1861         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
1862         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
1863
1864 2007-10-22  Eric Blake  <ebb9@byu.net>
1865
1866         * tests/test-yesno.sh: Silence stderr during test.
1867
1868 2007-10-22  Simon Josefsson  <simon@josefsson.org>
1869
1870         * modules/crypto/gc-camellia: New file.
1871
1872         * m4/gc-camellia.m4: New file.
1873
1874         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
1875
1876         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
1877
1878 2007-10-22  Simon Josefsson  <simon@josefsson.org>
1879
1880         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
1881         --help to stdout.  Reported by sms@antinode.org (Steven
1882         M. Schweda).
1883
1884 2007-10-22  Simon Josefsson  <simon@josefsson.org>
1885
1886         * users.txt: Fix link to libksba.
1887
1888 2007-10-21  Ben Pfaff  <blp@gnu.org>
1889
1890         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
1891         round.c roundf implementation that depends on floorf and ceilf to
1892         be tested unconditionally.
1893
1894 2007-10-21  Ben Pfaff  <blp@gnu.org>
1895
1896         * m4/check-libm-func.m4: Removed.
1897         * m4/check-math-lib.m4: New file.
1898         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
1899         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
1900         definition and lack of AC_LIBOBJ([roundf]).
1901         * m4/roundl.m4: Ditto, and similarly for roundl.
1902         * modules/round: Reference new m4 file.
1903         * modules/roundf: Ditto.
1904         * modules/roundl: Ditto.
1905         * tests/test-round2.c (main): Use ROUND instead of round.
1906         Bug report from Bruno Haible.
1907
1908 2007-10-21  Bruno Haible  <bruno@clisp.org>
1909
1910         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
1911         context.
1912
1913 2007-10-21  Bruno Haible  <bruno@clisp.org>
1914
1915         * tests/test-wcwidth.c (main): Allow negative result for some control
1916         characters.
1917
1918         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
1919         Needed on OSF/1 5.1.
1920
1921 2007-10-21  Bruno Haible  <bruno@clisp.org>
1922
1923         * tests/test-floorf1.c: Include isnanf.h.
1924         (main): Use isnanf() instead of isnan().
1925         * tests/test-ceilf1.c: Include isnanf.h.
1926         (main): Use isnanf() instead of isnan().
1927         * tests/test-truncf1.c: Include isnanf.h.
1928         (main): Use isnanf() instead of isnan().
1929         * tests/test-roundf1.c: Include isnanf.h.
1930         (main): Use isnanf() instead of isnan().
1931
1932 2007-10-21  Eric Blake  <ebb9@byu.net>
1933
1934         * users.txt: Update URL for m4.
1935
1936 2007-10-21  Bruno Haible  <bruno@clisp.org>
1937
1938         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
1939
1940 2007-10-21  Bruno Haible  <bruno@clisp.org>
1941
1942         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
1943         Git's management files if the CVS files are not present.
1944
1945 2007-10-20  Bruno Haible  <bruno@clisp.org>
1946
1947         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
1948         gcc-3.4.x.
1949
1950 2007-10-20  Ben Pfaff  <blp@gnu.org>
1951
1952         * lib/math.in.h: Declare round, roundf, roundl if we are providing
1953         implementations.
1954         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
1955         * lib/round.c: New file.
1956         * lib/roundf.c: New file.
1957         * lib/roundl.c: New file.
1958         * m4/round.m4: New file.
1959         * m4/roundf.m4: New file.
1960         * m4/roundl.m4: New file.
1961         * m4/check-libm-func-m4: New file.
1962         * modules/math: Replace round, roundf, roundl related @VARS@ in
1963         math.in.h.
1964         * modules/round: New file.
1965         * modules/round-tests: New file.
1966         * modules/roundf: New file.
1967         * modules/roundf-tests: New file.
1968         * modules/roundl: New file.
1969         * modules/roundl-tests: New file.
1970         * tests/test-round1.c: New file.
1971         * tests/test-round2.c: New file.
1972         * tests/test-roundf1.c: New file.
1973         * tests/test-roundf2.c: New file.
1974         * tests/test-roundl.c: New file.
1975         * doc/functions/round.texi: Mention round module.
1976         * doc/functions/roundf.texi: Mention roundf module.
1977         * doc/functions/roundl.texi: Mention roundl module.
1978         * MODULES.html.sh: Mention new modules.
1979         Thanks to Bruno Haible for suggestions.
1980
1981 2007-10-20  Jim Meyering  <meyering@redhat.com>
1982
1983         * lib/xprintf.c: Include <config.h> unconditionally.
1984
1985         Change xprintf's license to GPL.
1986         * modules/xprintf (License): s/LGPL/GPL/, since this module
1987         depends on modules (exit and exitfail) which are GPL.
1988         Suggestion from Bruno Haible.
1989
1990         xprintf fixes.
1991         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
1992         Use a clearer diagnostic.
1993         Patch from Bruno Haible.
1994
1995 2007-10-20  Bruno Haible  <bruno@clisp.org>
1996
1997         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
1998         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
1999         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2000
2001 2007-10-20  Bruno Haible  <bruno@clisp.org>
2002
2003         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
2004         precision in the comparison result > x - 1 or similar.
2005         * tests/test-ceilf2.c (correct_result_p): Likewise.
2006         * tests/test-truncf2.c (correct_result_p): Likewise.
2007         * tests/test-trunc2.c (correct_result_p): Likewise.
2008         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2009
2010 2007-10-20  Bruno Haible  <bruno@clisp.org>
2011
2012         * modules/ceil: New file.
2013         * m4/ceil.m4: New file.
2014         * doc/functions/ceil.texi: Mention the 'ceil' module.
2015
2016 2007-10-20  Bruno Haible  <bruno@clisp.org>
2017
2018         * modules/floor: New file.
2019         * m4/floor.m4: New file.
2020         * doc/functions/floor.texi: Mention the 'floor' module.
2021
2022 2007-10-20  Bruno Haible  <bruno@clisp.org>
2023
2024         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
2025         of %a.
2026         * modules/floorf-tests (Depends-on): Likewise.
2027         * modules/truncf-tests (Depends-on): Likewise.
2028         * modules/trunc-tests (Depends-on): Likewise.
2029         Reported by Ben Pfaff.
2030
2031 2007-10-19  Jim Meyering  <meyering@redhat.com>
2032
2033         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
2034         Don't bother testing specific errno values.  Just test ferror.
2035
2036         New module: xprintf
2037         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
2038
2039 2007-10-19  Bruno Haible  <bruno@clisp.org>
2040
2041         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
2042         syntax.
2043         * modules/javaexec (Makefile.am): Likewise.
2044         * modules/relocatable-prog (Makefile.am): Likewise.
2045         Suggested by Jim Meyering.
2046
2047 2007-10-18  Bruno Haible  <bruno@clisp.org>
2048
2049         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
2050         Reported by Jim Meyering.
2051
2052 2007-10-18  Eric Blake  <ebb9@byu.net>
2053
2054         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
2055
2056 2007-10-18  Bruno Haible  <bruno@clisp.org>
2057
2058         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
2059         the format string into writable memory. Needed in Fortify conditions.
2060
2061 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
2062             Bruno Haible  <bruno@clisp.org>
2063
2064         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
2065         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
2066         * modules/trim (Depends-on): Add mbchar.
2067         (configure.ac): Add gl_FUNC_MBRTOWC.
2068         (Makefile.am): Augment lib_SOURCES.
2069
2070 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
2071
2072         Modify glob.c to use fstatat and dirfd, to simplify it.
2073         Suggested by Eric Blake.
2074         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
2075         Don't include <stdbool.h>; not used.
2076         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
2077         (link_exists_p): Simplify implementation, since we can now assume
2078         dirfd and fstatat.
2079         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
2080
2081 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2082
2083         * gnulib-tool (func_get_dependencies): Fix sed script to
2084         match only tests.
2085
2086 2007-10-17  Bruno Haible  <bruno@clisp.org>
2087
2088         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
2089         allow locale names without encoding suffix.
2090         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
2091         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
2092
2093 2007-10-16  Bruno Haible  <bruno@clisp.org>
2094
2095         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
2096         * lib/getgroups.c (getgroups): Likewise.
2097         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
2098
2099 2007-10-16  Bruno Haible  <bruno@clisp.org>
2100
2101         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
2102         * modules/malloc-posix (License): Likewise.
2103         * modules/realloc-posix (License): Likewise.
2104         * modules/calloc-posix (License): Likewise.
2105         * modules/intprops (License): Change from GPL to LGPL, with
2106         Paul Eggert's approval.
2107
2108 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2109
2110         Merge glibc changes into lib/glob.c.
2111
2112         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
2113         2007-10-15 04:59:03 UTC.  Here are the changes:
2114
2115         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
2116
2117         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
2118
2119         * lib/glob.c: Add some branch prediction throughout.
2120
2121         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
2122
2123         [BZ #5103]
2124         * lib/glob.c (glob): Recognize patterns starting \/.
2125
2126         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
2127
2128         [BZ #3996]
2129         * lib/glob.c (attribute_hidden): Define if not defined.
2130         (glob): Unescape dirname, filename or username when needed and not
2131         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
2132         is NULL.  Handle unescaped [ in pattern without closing ].
2133         Don't pass GLOB_CHECK down to recursive glob for directories.
2134         (__glob_pattern_type): New function.
2135         (__glob_pattern_p): Implement using __glob_pattern_type.
2136         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
2137         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
2138         Remove unreachable code.
2139
2140         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
2141
2142         * lib/glob.c (glob_in_dir): Add some comments and asserts to
2143         explain why there are no leaks.
2144
2145         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
2146
2147         [BZ #3253]
2148         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
2149         time, rather allocate increasingly bigger arrays of pointers, if
2150         possible with alloca, if too large with malloc.
2151
2152 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2153
2154         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
2155         Problem reported by H.Merijn Brand in
2156         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
2157         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
2158         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
2159
2160 2007-10-15  Bruno Haible  <bruno@clisp.org>
2161
2162         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
2163         with explicit rpl_ prefix.
2164         * lib/fopen.c (fopen): Likewise.
2165         * lib/freopen.c (freopen): Likewise.
2166         * lib/iconv.c (iconv): Likewise.
2167         * lib/iconv_close.c (iconv_close): Likewise.
2168
2169 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2170
2171         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
2172
2173 2007-10-15  Bruno Haible  <bruno@clisp.org>
2174
2175         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
2176         <stddef.h> instead of <stdlib.h> since we only need NULL.
2177         Reported by Ben Pfaff <blp@cs.stanford.edu>.
2178
2179 2007-10-15  Bruno Haible  <bruno@clisp.org>
2180
2181         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
2182         Replace paragraph talking about LIBOBJS.
2183         Reported by Colin Watson <cjwatson@debian.org>.
2184
2185 2007-10-15  Bruno Haible  <bruno@clisp.org>
2186
2187         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
2188         <stdlib.h> before using NULL.
2189
2190 2007-10-15  Simon Josefsson  <simon@josefsson.org>
2191
2192         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
2193         Reported by Albert Chin <china@thewrittenword.com>.
2194
2195 2007-10-14  Bruno Haible  <bruno@clisp.org>
2196
2197         * modules/iconv_open-utf-tests: New file.
2198         * tests/test-iconv-utf.c: New file.
2199
2200         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
2201         * modules/iconv_open-utf: New file.
2202         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
2203         (iconv, iconv_close): New declarations.
2204         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
2205         be defined.
2206         (iconv_open): Add special handling of conversion between UTF-8 and
2207         UTF-{16,32}{BE,LE}.
2208         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
2209         * lib/iconv_close.c: New file.
2210         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
2211         gl_FUNC_ICONV_OPEN.
2212         (gl_FUNC_ICONV_OPEN): Use it.
2213         (gl_FUNC_ICONV_OPEN_UTF): New macro.
2214         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
2215         and REPLACE_ICONV_UTF.
2216         * modules/iconv_open (Depends-on): Add c-strcase.
2217         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
2218         ICONV_CONST.
2219         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
2220
2221 2007-10-13  Albert Chin  <china@thewrittenword.com>
2222             Bruno Haible  <bruno@clisp.org>
2223
2224         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
2225         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
2226
2227 2007-10-13  Bruno Haible  <bruno@clisp.org>
2228
2229         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
2230         defined, use the ISO C99 inline semantics.
2231         * lib/argp.h (ARGP_EI): Likewise.
2232
2233 2007-10-13  Bruno Haible  <bruno@clisp.org>
2234
2235         Handle 'inline' change in gcc 4.3.0.
2236         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
2237         argp_fmtstream_write, argp_fmtstream_set_lmargin,
2238         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
2239         argp_fmtstream_point): Disable 'extern' declaration if the function
2240         definition is going to be provided inline.
2241         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
2242         semantics, not the ISO C99 inline semantics.
2243         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
2244         'extern' declaration if the function definition is going to be provided
2245         inline.
2246         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
2247         the GNU C inline semantics, not the ISO C99 inline semantics. With
2248         GCC 4.2, avoid a warning.
2249
2250 2007-10-13  Bruno Haible  <bruno@clisp.org>
2251
2252         * lib/freading.h (freading): Enable the use of __freading for
2253         glibc >= 2.7.
2254         * lib/freading.c (freading): Likewise.
2255
2256 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2257
2258         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
2259         "warning: C99 inline functions are not supported; using GNU89".
2260
2261 2007-10-12  Bruno Haible  <bruno@clisp.org>
2262
2263         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
2264         of 2.
2265         * tests/test-ceilf2.c: New file.
2266         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
2267
2268         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
2269         * modules/ceilf-tests: Update.
2270
2271 2007-10-12  Bruno Haible  <bruno@clisp.org>
2272
2273         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
2274         of 2.
2275         * tests/test-floorf2.c: New file.
2276         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
2277
2278         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
2279         * modules/floorf-tests: Update.
2280
2281 2007-10-12  Bruno Haible  <bruno@clisp.org>
2282
2283         * tests/test-trunc2.c: New file.
2284         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
2285
2286         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
2287         * modules/trunc-tests: Update.
2288
2289 2007-10-12  Bruno Haible  <bruno@clisp.org>
2290
2291         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
2292         of 2.
2293         * tests/test-truncf2.c: New file.
2294         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
2295
2296         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
2297         * modules/truncf-tests: Update.
2298
2299 2007-10-11  Eric Blake  <ebb9@byu.net>
2300
2301         Don't claim strerror is broken on Interix.
2302         * doc/functions/strerror.texi (strerror): Known broken systems are
2303         now Solaris 8, and not Interix.
2304         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
2305         Interix on cross-compile.
2306         Reported by Martin Koeppe in
2307         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
2308
2309 2007-10-11  Bruno Haible  <bruno@clisp.org>
2310
2311         * modules/i-ring-tests: New file.
2312         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
2313         instead of assert.
2314
2315 2007-10-11  Bruno Haible  <bruno@clisp.org>
2316
2317         * modules/filenamecat-tests: New file.
2318         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
2319         * lib/filenamecat.c: Remove test code.
2320
2321 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2322
2323         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
2324
2325         * lib/strerror.c: Include <string.h> always, to test interface,
2326         and to remove the need for the dummy.
2327         Include intprops.h to compute width instead of doing it ourselves
2328         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
2329         (strerror): Define it to return NULL if there's no system strerror.
2330         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
2331         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
2332         ancient pre-strerror Unix systems well any more.  Saying "unknown
2333         system error" is enough.
2334         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
2335         simpler strerror.c implementation.
2336         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
2337         Simplify the tests to reflect the simpler strerror implementation.
2338         * modules/strerror (Depends-on): Add intprops.
2339
2340 2007-10-09  Eric Blake  <ebb9@byu.net>
2341
2342         Silence test-fpending.
2343         * modules/fpending-tests (Files): Add wrapper script.
2344         * tests/test-fpending.sh: New file.
2345
2346 2007-10-09  Bruno Haible  <bruno@clisp.org>
2347
2348         * MODULES.html.sh (func_module): Don't create a hyperlink for
2349         function names like 'printf_frexp'.
2350         (Misc): Add crc, memxor.
2351         (Characteristics of floating types): New section.
2352         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
2353         isnanf-nolibm, signbit, trunc, truncf, truncl.
2354         (Enhancements for ISO C 99 functions): New subsection Input/output.
2355         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
2356         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
2357         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
2358         (Compatibility checks for POSIX:2001 functions): Add clock-time.
2359         (Enhancements for POSIX:2001 functions): Add chdir-long.
2360         (File system functions): Add areadlink, chdir-safer, read-file.
2361         Remove cycle-check.
2362         (File system as inode set): New section.
2363         (Date and time): Add gethrxtime.
2364         (Multithreading): Add openmp.
2365         (Internationalization functions): Add localename.
2366         (Unicode string functions): Add unistr/u*-mbsnlen.
2367         (Support for maintaining and releasing projects): Add git-version-gen.
2368         (Lone files): Remove directories.
2369
2370 2007-10-08  Ben Pfaff  <blp@gnu.org>
2371
2372         * lib/xmalloca.h: Fix typo in comment.
2373
2374 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2375
2376         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
2377         when avoiding problems with integer overflow.  Use a portable test
2378         instead.
2379
2380 2007-10-08  Simon Josefsson  <simon@josefsson.org>
2381
2382         * modules/dummy (License): Change to LGPLv2+.
2383         * modules/float (License): Likewise
2384         * modules/realloc (License): Likewise
2385         * modules/stdlib (License): Likewise
2386
2387 2007-10-07  Bruno Haible  <bruno@clisp.org>
2388
2389         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
2390         * floor.c (TWO_MANT_DIG): Likewise.
2391         * ceil.c (TWO_MANT_DIG): Likewise.
2392         Reported by Ben Pfaff.
2393
2394 2007-10-07  Bruno Haible  <bruno@clisp.org>
2395
2396         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
2397         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
2398         * lib/frexp.c (FUNC): Likewise.
2399         * lib/printf-frexp.h (printf_frexp): Likewise.
2400         * lib/printf-frexpl.h (printf_frexpl): Likewise.
2401         * lib/printf-frexp.c (FUNC): Likewise.
2402         Suggested by Jim Meyering.
2403
2404 2007-10-07  Jim Meyering  <meyering@redhat.com>
2405
2406         Make xnanosleep's integer overflow test more robust.
2407         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
2408         so that gcc-4.3.0 doesn't optimize away this test for overflow.
2409
2410 2007-10-07  Bruno Haible  <bruno@clisp.org>
2411
2412         * NEWS: Mention the license change.
2413
2414         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
2415         abbreviations in the modules files.
2416
2417         Change copyright notice from GPLv2+ to GPLv3+.
2418         * README: Change copyright notice.
2419         * MODULES.html.sh: Likewise.
2420         * build-aux/bootstrap.conf: Likewise.
2421         * build-aux/config.libpath: Likewise.
2422         * build-aux/csharpcomp.sh.in: Likewise.
2423         * build-aux/csharpexec.sh.in: Likewise.
2424         * build-aux/install-reloc: Likewise.
2425         * build-aux/javacomp.sh.in: Likewise.
2426         * build-aux/javaexec.sh.in: Likewise.
2427         * build-aux/ldd.sh.in: Likewise.
2428         * build-aux/reloc-ldflags: Likewise.
2429         * build-aux/relocatable.sh.in: Likewise.
2430         * build-aux/x-to-1.in: Likewise.
2431         * check-module: Likewise.
2432         * config/srclistvars.sh: Likewise.
2433         * gnulib-tool: Likewise.
2434         * lib/acl-internal.h: Likewise.
2435         * lib/acl.c: Likewise.
2436         * lib/acl.h: Likewise.
2437         * lib/acl_entries.c: Likewise.
2438         * lib/areadlink-with-size.c: Likewise.
2439         * lib/areadlink.c: Likewise.
2440         * lib/areadlink.h: Likewise.
2441         * lib/argmatch.c: Likewise.
2442         * lib/argmatch.h: Likewise.
2443         * lib/argp-ba.c: Likewise.
2444         * lib/argp-eexst.c: Likewise.
2445         * lib/argp-fmtstream.c: Likewise.
2446         * lib/argp-fmtstream.h: Likewise.
2447         * lib/argp-fs-xinl.c: Likewise.
2448         * lib/argp-help.c: Likewise.
2449         * lib/argp-namefrob.h: Likewise.
2450         * lib/argp-parse.c: Likewise.
2451         * lib/argp-pin.c: Likewise.
2452         * lib/argp-pv.c: Likewise.
2453         * lib/argp-pvh.c: Likewise.
2454         * lib/argp-xinl.c: Likewise.
2455         * lib/argp.h: Likewise.
2456         * lib/at-func.c: Likewise.
2457         * lib/atanl.c: Likewise.
2458         * lib/backupfile.c: Likewise.
2459         * lib/backupfile.h: Likewise.
2460         * lib/basename.c: Likewise.
2461         * lib/binary-io.h: Likewise.
2462         * lib/byteswap.in.h: Likewise.
2463         * lib/c-stack.c: Likewise.
2464         * lib/c-stack.h: Likewise.
2465         * lib/c-strcasestr.c: Likewise.
2466         * lib/c-strcasestr.h: Likewise.
2467         * lib/c-strstr.c: Likewise.
2468         * lib/c-strstr.h: Likewise.
2469         * lib/c-strtod.c: Likewise.
2470         * lib/calloc.c: Likewise.
2471         * lib/canon-host.c: Likewise.
2472         * lib/canon-host.h: Likewise.
2473         * lib/canonicalize-lgpl.c: Likewise.
2474         * lib/canonicalize.c: Likewise.
2475         * lib/canonicalize.h: Likewise.
2476         * lib/ceil.c: Likewise.
2477         * lib/ceilf.c: Likewise.
2478         * lib/ceill.c: Likewise.
2479         * lib/chdir-long.c: Likewise.
2480         * lib/chdir-long.h: Likewise.
2481         * lib/chdir-safer.c: Likewise.
2482         * lib/chdir-safer.h: Likewise.
2483         * lib/chown.c: Likewise.
2484         * lib/classpath.c: Likewise.
2485         * lib/classpath.h: Likewise.
2486         * lib/clean-temp.c: Likewise.
2487         * lib/clean-temp.h: Likewise.
2488         * lib/cloexec.c: Likewise.
2489         * lib/close-stream.c: Likewise.
2490         * lib/closein.c: Likewise.
2491         * lib/closein.h: Likewise.
2492         * lib/closeout.c: Likewise.
2493         * lib/closeout.h: Likewise.
2494         * lib/concat-filename.c: Likewise.
2495         * lib/copy-file.c: Likewise.
2496         * lib/copy-file.h: Likewise.
2497         * lib/count-one-bits.h: Likewise.
2498         * lib/crc.c: Likewise.
2499         * lib/crc.h: Likewise.
2500         * lib/creat-safer.c: Likewise.
2501         * lib/csharpcomp.c: Likewise.
2502         * lib/csharpcomp.h: Likewise.
2503         * lib/csharpexec.c: Likewise.
2504         * lib/csharpexec.h: Likewise.
2505         * lib/cycle-check.c: Likewise.
2506         * lib/cycle-check.h: Likewise.
2507         * lib/diacrit.c: Likewise.
2508         * lib/diacrit.h: Likewise.
2509         * lib/diffseq.h: Likewise.
2510         * lib/dirchownmod.c: Likewise.
2511         * lib/dirent.in.h: Likewise.
2512         * lib/dirfd.c: Likewise.
2513         * lib/dirfd.h: Likewise.
2514         * lib/dirname.c: Likewise.
2515         * lib/dirname.h: Likewise.
2516         * lib/dummy.c: Likewise.
2517         * lib/dup-safer.c: Likewise.
2518         * lib/dup2.c: Likewise.
2519         * lib/eealloc.h: Likewise.
2520         * lib/error.c: Likewise.
2521         * lib/error.h: Likewise.
2522         * lib/euidaccess.c: Likewise.
2523         * lib/exclude.c: Likewise.
2524         * lib/exclude.h: Likewise.
2525         * lib/execute.c: Likewise.
2526         * lib/execute.h: Likewise.
2527         * lib/exitfail.c: Likewise.
2528         * lib/exitfail.h: Likewise.
2529         * lib/expl.c: Likewise.
2530         * lib/fatal-signal.c: Likewise.
2531         * lib/fatal-signal.h: Likewise.
2532         * lib/fbufmode.c: Likewise.
2533         * lib/fbufmode.h: Likewise.
2534         * lib/fchdir.c: Likewise.
2535         * lib/fchmodat.c: Likewise.
2536         * lib/fchownat.c: Likewise.
2537         * lib/fcntl--.h: Likewise.
2538         * lib/fcntl-safer.h: Likewise.
2539         * lib/fcntl.in.h: Likewise.
2540         * lib/fd-safer.c: Likewise.
2541         * lib/fflush.c: Likewise.
2542         * lib/file-has-acl.c: Likewise.
2543         * lib/file-set.c: Likewise.
2544         * lib/file-type.c: Likewise.
2545         * lib/file-type.h: Likewise.
2546         * lib/fileblocks.c: Likewise.
2547         * lib/filemode.c: Likewise.
2548         * lib/filemode.h: Likewise.
2549         * lib/filename.h: Likewise.
2550         * lib/filenamecat.c: Likewise.
2551         * lib/filenamecat.h: Likewise.
2552         * lib/findprog.c: Likewise.
2553         * lib/findprog.h: Likewise.
2554         * lib/float.in.h: Likewise.
2555         * lib/floor.c: Likewise.
2556         * lib/floorf.c: Likewise.
2557         * lib/floorl.c: Likewise.
2558         * lib/fopen-safer.c: Likewise.
2559         * lib/fopen.c: Likewise.
2560         * lib/fpending.c: Likewise.
2561         * lib/fpending.h: Likewise.
2562         * lib/fprintf.c: Likewise.
2563         * lib/fprintftime.h: Likewise.
2564         * lib/fpucw.h: Likewise.
2565         * lib/fpurge.c: Likewise.
2566         * lib/fpurge.h: Likewise.
2567         * lib/freadable.c: Likewise.
2568         * lib/freadable.h: Likewise.
2569         * lib/freadahead.c: Likewise.
2570         * lib/freadahead.h: Likewise.
2571         * lib/freading.c: Likewise.
2572         * lib/freading.h: Likewise.
2573         * lib/free.c: Likewise.
2574         * lib/freopen.c: Likewise.
2575         * lib/frexp.c: Likewise.
2576         * lib/frexpl.c: Likewise.
2577         * lib/fseek.c: Likewise.
2578         * lib/fseterr.c: Likewise.
2579         * lib/fseterr.h: Likewise.
2580         * lib/fstatat.c: Likewise.
2581         * lib/fstrcmp.c: Likewise.
2582         * lib/fstrcmp.h: Likewise.
2583         * lib/fsusage.c: Likewise.
2584         * lib/fsusage.h: Likewise.
2585         * lib/ftell.c: Likewise.
2586         * lib/ftello.c: Likewise.
2587         * lib/fts-cycle.c: Likewise.
2588         * lib/fts.c: Likewise.
2589         * lib/fts_.h: Likewise.
2590         * lib/full-read.c: Likewise.
2591         * lib/full-read.h: Likewise.
2592         * lib/full-write.c: Likewise.
2593         * lib/full-write.h: Likewise.
2594         * lib/fwritable.c: Likewise.
2595         * lib/fwritable.h: Likewise.
2596         * lib/fwriteerror.c: Likewise.
2597         * lib/fwriteerror.h: Likewise.
2598         * lib/fwriting.c: Likewise.
2599         * lib/fwriting.h: Likewise.
2600         * lib/gcd.c: Likewise.
2601         * lib/gcd.h: Likewise.
2602         * lib/getcwd.c: Likewise.
2603         * lib/getdate.h: Likewise.
2604         * lib/getdate.y: Likewise.
2605         * lib/getdomainname.c: Likewise.
2606         * lib/getdomainname.h: Likewise.
2607         * lib/getgroups.c: Likewise.
2608         * lib/gethostname.c: Likewise.
2609         * lib/gethrxtime.c: Likewise.
2610         * lib/gethrxtime.h: Likewise.
2611         * lib/getloadavg.c: Likewise.
2612         * lib/getndelim2.c: Likewise.
2613         * lib/getndelim2.h: Likewise.
2614         * lib/getnline.c: Likewise.
2615         * lib/getnline.h: Likewise.
2616         * lib/getopt.c: Likewise.
2617         * lib/getopt.in.h: Likewise.
2618         * lib/getopt1.c: Likewise.
2619         * lib/getopt_int.h: Likewise.
2620         * lib/getpagesize.h: Likewise.
2621         * lib/getsubopt.c: Likewise.
2622         * lib/gettime.c: Likewise.
2623         * lib/getugroups.c: Likewise.
2624         * lib/getugroups.h: Likewise.
2625         * lib/getusershell.c: Likewise.
2626         * lib/gl_anyavltree_list1.h: Likewise.
2627         * lib/gl_anyavltree_list2.h: Likewise.
2628         * lib/gl_anyhash_list1.h: Likewise.
2629         * lib/gl_anyhash_list2.h: Likewise.
2630         * lib/gl_anylinked_list1.h: Likewise.
2631         * lib/gl_anylinked_list2.h: Likewise.
2632         * lib/gl_anyrbtree_list1.h: Likewise.
2633         * lib/gl_anyrbtree_list2.h: Likewise.
2634         * lib/gl_anytree_list1.h: Likewise.
2635         * lib/gl_anytree_list2.h: Likewise.
2636         * lib/gl_anytree_oset.h: Likewise.
2637         * lib/gl_anytreehash_list1.h: Likewise.
2638         * lib/gl_anytreehash_list2.h: Likewise.
2639         * lib/gl_array_list.c: Likewise.
2640         * lib/gl_array_list.h: Likewise.
2641         * lib/gl_array_oset.c: Likewise.
2642         * lib/gl_array_oset.h: Likewise.
2643         * lib/gl_avltree_list.c: Likewise.
2644         * lib/gl_avltree_list.h: Likewise.
2645         * lib/gl_avltree_oset.c: Likewise.
2646         * lib/gl_avltree_oset.h: Likewise.
2647         * lib/gl_avltreehash_list.c: Likewise.
2648         * lib/gl_avltreehash_list.h: Likewise.
2649         * lib/gl_carray_list.c: Likewise.
2650         * lib/gl_carray_list.h: Likewise.
2651         * lib/gl_linked_list.c: Likewise.
2652         * lib/gl_linked_list.h: Likewise.
2653         * lib/gl_linkedhash_list.c: Likewise.
2654         * lib/gl_linkedhash_list.h: Likewise.
2655         * lib/gl_list.c: Likewise.
2656         * lib/gl_list.h: Likewise.
2657         * lib/gl_oset.c: Likewise.
2658         * lib/gl_oset.h: Likewise.
2659         * lib/gl_rbtree_list.c: Likewise.
2660         * lib/gl_rbtree_list.h: Likewise.
2661         * lib/gl_rbtree_oset.c: Likewise.
2662         * lib/gl_rbtree_oset.h: Likewise.
2663         * lib/gl_rbtreehash_list.c: Likewise.
2664         * lib/gl_rbtreehash_list.h: Likewise.
2665         * lib/gl_sublist.c: Likewise.
2666         * lib/gl_sublist.h: Likewise.
2667         * lib/group-member.c: Likewise.
2668         * lib/group-member.h: Likewise.
2669         * lib/hard-locale.c: Likewise.
2670         * lib/hard-locale.h: Likewise.
2671         * lib/hash-pjw.c: Likewise.
2672         * lib/hash-pjw.h: Likewise.
2673         * lib/hash-triple.c: Likewise.
2674         * lib/hash.c: Likewise.
2675         * lib/hash.h: Likewise.
2676         * lib/human.c: Likewise.
2677         * lib/human.h: Likewise.
2678         * lib/i-ring.c: Likewise.
2679         * lib/i-ring.h: Likewise.
2680         * lib/idcache.c: Likewise.
2681         * lib/imaxabs.c: Likewise.
2682         * lib/imaxdiv.c: Likewise.
2683         * lib/inet_pton.c: Likewise.
2684         * lib/inet_pton.h: Likewise.
2685         * lib/intprops.h: Likewise.
2686         * lib/inttostr.c: Likewise.
2687         * lib/inttostr.h: Likewise.
2688         * lib/inttypes.in.h: Likewise.
2689         * lib/isapipe.c: Likewise.
2690         * lib/isdir.c: Likewise.
2691         * lib/isnan.c: Likewise.
2692         * lib/isnan.h: Likewise.
2693         * lib/isnanf.c: Likewise.
2694         * lib/isnanf.h: Likewise.
2695         * lib/isnanl-nolibm.h: Likewise.
2696         * lib/isnanl.c: Likewise.
2697         * lib/isnanl.h: Likewise.
2698         * lib/javacomp.c: Likewise.
2699         * lib/javacomp.h: Likewise.
2700         * lib/javaexec.c: Likewise.
2701         * lib/javaexec.h: Likewise.
2702         * lib/javaversion.c: Likewise.
2703         * lib/javaversion.h: Likewise.
2704         * lib/javaversion.java: Likewise.
2705         * lib/lbrkprop.h: Likewise.
2706         * lib/lchmod.h: Likewise.
2707         * lib/lchown.c: Likewise.
2708         * lib/ldexpl.c: Likewise.
2709         * lib/linebreak.c: Likewise.
2710         * lib/linebreak.h: Likewise.
2711         * lib/linebuffer.c: Likewise.
2712         * lib/linebuffer.h: Likewise.
2713         * lib/locale.in.h: Likewise.
2714         * lib/logl.c: Likewise.
2715         * lib/long-options.c: Likewise.
2716         * lib/long-options.h: Likewise.
2717         * lib/lstat.c: Likewise.
2718         * lib/lstat.h: Likewise.
2719         * lib/math.in.h: Likewise.
2720         * lib/mbchar.c: Likewise.
2721         * lib/mbchar.h: Likewise.
2722         * lib/mbfile.h: Likewise.
2723         * lib/mbiter.h: Likewise.
2724         * lib/mbscasecmp.c: Likewise.
2725         * lib/mbscasestr.c: Likewise.
2726         * lib/mbschr.c: Likewise.
2727         * lib/mbscspn.c: Likewise.
2728         * lib/mbslen.c: Likewise.
2729         * lib/mbsncasecmp.c: Likewise.
2730         * lib/mbsnlen.c: Likewise.
2731         * lib/mbspbrk.c: Likewise.
2732         * lib/mbspcasecmp.c: Likewise.
2733         * lib/mbsrchr.c: Likewise.
2734         * lib/mbssep.c: Likewise.
2735         * lib/mbsspn.c: Likewise.
2736         * lib/mbsstr.c: Likewise.
2737         * lib/mbstok_r.c: Likewise.
2738         * lib/mbswidth.c: Likewise.
2739         * lib/mbswidth.h: Likewise.
2740         * lib/mbuiter.h: Likewise.
2741         * lib/memcasecmp.c: Likewise.
2742         * lib/memcasecmp.h: Likewise.
2743         * lib/memchr.c: Likewise.
2744         * lib/memcmp.c: Likewise.
2745         * lib/memcoll.c: Likewise.
2746         * lib/memcoll.h: Likewise.
2747         * lib/memcpy.c: Likewise.
2748         * lib/memrchr.c: Likewise.
2749         * lib/mkancesdirs.c: Likewise.
2750         * lib/mkdir-p.c: Likewise.
2751         * lib/mkdir-p.h: Likewise.
2752         * lib/mkdir.c: Likewise.
2753         * lib/mkdirat.c: Likewise.
2754         * lib/mkdtemp.c: Likewise.
2755         * lib/mkstemp-safer.c: Likewise.
2756         * lib/mkstemp.c: Likewise.
2757         * lib/modechange.c: Likewise.
2758         * lib/modechange.h: Likewise.
2759         * lib/mountlist.c: Likewise.
2760         * lib/mountlist.h: Likewise.
2761         * lib/mpsort.c: Likewise.
2762         * lib/nanosleep.c: Likewise.
2763         * lib/obstack.c: Likewise.
2764         * lib/obstack.h: Likewise.
2765         * lib/open-safer.c: Likewise.
2766         * lib/open.c: Likewise.
2767         * lib/openat-die.c: Likewise.
2768         * lib/openat-priv.h: Likewise.
2769         * lib/openat-proc.c: Likewise.
2770         * lib/openat.c: Likewise.
2771         * lib/openat.h: Likewise.
2772         * lib/pagealign_alloc.c: Likewise.
2773         * lib/pagealign_alloc.h: Likewise.
2774         * lib/physmem.c: Likewise.
2775         * lib/physmem.h: Likewise.
2776         * lib/pipe-safer.c: Likewise.
2777         * lib/pipe.c: Likewise.
2778         * lib/pipe.h: Likewise.
2779         * lib/posixtm.c: Likewise.
2780         * lib/posixtm.h: Likewise.
2781         * lib/posixver.c: Likewise.
2782         * lib/printf-frexp.c: Likewise.
2783         * lib/printf-frexp.h: Likewise.
2784         * lib/printf-frexpl.c: Likewise.
2785         * lib/printf-frexpl.h: Likewise.
2786         * lib/printf.c: Likewise.
2787         * lib/progname.c: Likewise.
2788         * lib/progname.h: Likewise.
2789         * lib/progreloc.c: Likewise.
2790         * lib/putenv.c: Likewise.
2791         * lib/quote.c: Likewise.
2792         * lib/quote.h: Likewise.
2793         * lib/quotearg.c: Likewise.
2794         * lib/quotearg.h: Likewise.
2795         * lib/raise.c: Likewise.
2796         * lib/readline.c: Likewise.
2797         * lib/readline.h: Likewise.
2798         * lib/readlink.c: Likewise.
2799         * lib/readtokens.c: Likewise.
2800         * lib/readtokens.h: Likewise.
2801         * lib/readtokens0.c: Likewise.
2802         * lib/readtokens0.h: Likewise.
2803         * lib/readutmp.c: Likewise.
2804         * lib/readutmp.h: Likewise.
2805         * lib/realloc.c: Likewise.
2806         * lib/relocwrapper.c: Likewise.
2807         * lib/rename-dest-slash.c: Likewise.
2808         * lib/rename.c: Likewise.
2809         * lib/rmdir.c: Likewise.
2810         * lib/rpmatch.c: Likewise.
2811         * lib/safe-read.c: Likewise.
2812         * lib/safe-read.h: Likewise.
2813         * lib/safe-write.c: Likewise.
2814         * lib/safe-write.h: Likewise.
2815         * lib/same-inode.h: Likewise.
2816         * lib/same.c: Likewise.
2817         * lib/same.h: Likewise.
2818         * lib/save-cwd.c: Likewise.
2819         * lib/save-cwd.h: Likewise.
2820         * lib/savedir.c: Likewise.
2821         * lib/savedir.h: Likewise.
2822         * lib/savewd.c: Likewise.
2823         * lib/savewd.h: Likewise.
2824         * lib/search.in.h: Likewise.
2825         * lib/setenv.c: Likewise.
2826         * lib/setenv.h: Likewise.
2827         * lib/settime.c: Likewise.
2828         * lib/sh-quote.c: Likewise.
2829         * lib/sh-quote.h: Likewise.
2830         * lib/sig2str.c: Likewise.
2831         * lib/sig2str.h: Likewise.
2832         * lib/signal.in.h: Likewise.
2833         * lib/signbitd.c: Likewise.
2834         * lib/signbitf.c: Likewise.
2835         * lib/signbitl.c: Likewise.
2836         * lib/sigprocmask.c: Likewise.
2837         * lib/sincosl.c: Likewise.
2838         * lib/sleep.c: Likewise.
2839         * lib/sprintf.c: Likewise.
2840         * lib/sqrtl.c: Likewise.
2841         * lib/stat-time.h: Likewise.
2842         * lib/stdio--.h: Likewise.
2843         * lib/stdio-safer.h: Likewise.
2844         * lib/stdlib--.h: Likewise.
2845         * lib/stdlib-safer.h: Likewise.
2846         * lib/stdlib.in.h: Likewise.
2847         * lib/stpcpy.c: Likewise.
2848         * lib/stpncpy.c: Likewise.
2849         * lib/strchrnul.c: Likewise.
2850         * lib/strcspn.c: Likewise.
2851         * lib/strerror.c: Likewise.
2852         * lib/strftime.c: Likewise.
2853         * lib/strftime.h: Likewise.
2854         * lib/striconveh.c: Likewise.
2855         * lib/striconveh.h: Likewise.
2856         * lib/striconveha.c: Likewise.
2857         * lib/striconveha.h: Likewise.
2858         * lib/stripslash.c: Likewise.
2859         * lib/strnlen1.c: Likewise.
2860         * lib/strnlen1.h: Likewise.
2861         * lib/strtod.c: Likewise.
2862         * lib/strtoimax.c: Likewise.
2863         * lib/strtok_r.c: Likewise.
2864         * lib/strtol.c: Likewise.
2865         * lib/strtoll.c: Likewise.
2866         * lib/strtoul.c: Likewise.
2867         * lib/strtoull.c: Likewise.
2868         * lib/sysexits.in.h: Likewise.
2869         * lib/tempname.c: Likewise.
2870         * lib/tempname.h: Likewise.
2871         * lib/timespec.h: Likewise.
2872         * lib/tls.c: Likewise.
2873         * lib/tls.h: Likewise.
2874         * lib/tmpdir.c: Likewise.
2875         * lib/tmpdir.h: Likewise.
2876         * lib/tmpfile-safer.c: Likewise.
2877         * lib/tmpfile.c: Likewise.
2878         * lib/trigl.c: Likewise.
2879         * lib/trigl.h: Likewise.
2880         * lib/trim.c: Likewise.
2881         * lib/trim.h: Likewise.
2882         * lib/trunc.c: Likewise.
2883         * lib/truncf.c: Likewise.
2884         * lib/truncl.c: Likewise.
2885         * lib/tsearch.c: Likewise.
2886         * lib/unicodeio.c: Likewise.
2887         * lib/unicodeio.h: Likewise.
2888         * lib/unistd--.h: Likewise.
2889         * lib/unistd-safer.h: Likewise.
2890         * lib/unistdio/ulc-fprintf.c: Likewise.
2891         * lib/unistdio/ulc-vfprintf.c: Likewise.
2892         * lib/unlinkdir.c: Likewise.
2893         * lib/unlinkdir.h: Likewise.
2894         * lib/unlocked-io.h: Likewise.
2895         * lib/unsetenv.c: Likewise.
2896         * lib/userspec.c: Likewise.
2897         * lib/utime.c: Likewise.
2898         * lib/utimecmp.c: Likewise.
2899         * lib/utimecmp.h: Likewise.
2900         * lib/utimens.c: Likewise.
2901         * lib/verify.h: Likewise.
2902         * lib/verror.c: Likewise.
2903         * lib/verror.h: Likewise.
2904         * lib/version-etc-fsf.c: Likewise.
2905         * lib/version-etc.c: Likewise.
2906         * lib/version-etc.h: Likewise.
2907         * lib/vfprintf.c: Likewise.
2908         * lib/vprintf.c: Likewise.
2909         * lib/vsprintf.c: Likewise.
2910         * lib/w32spawn.h: Likewise.
2911         * lib/wait-process.c: Likewise.
2912         * lib/wait-process.h: Likewise.
2913         * lib/wcwidth.c: Likewise.
2914         * lib/write-any-file.c: Likewise.
2915         * lib/xalloc-die.c: Likewise.
2916         * lib/xalloc.h: Likewise.
2917         * lib/xasprintf.c: Likewise.
2918         * lib/xgetcwd.c: Likewise.
2919         * lib/xgetcwd.h: Likewise.
2920         * lib/xgetdomainname.c: Likewise.
2921         * lib/xgetdomainname.h: Likewise.
2922         * lib/xgethostname.c: Likewise.
2923         * lib/xmalloc.c: Likewise.
2924         * lib/xmalloca.c: Likewise.
2925         * lib/xmalloca.h: Likewise.
2926         * lib/xmemcoll.c: Likewise.
2927         * lib/xnanosleep.c: Likewise.
2928         * lib/xreadlink.c: Likewise.
2929         * lib/xreadlink.h: Likewise.
2930         * lib/xsetenv.c: Likewise.
2931         * lib/xsetenv.h: Likewise.
2932         * lib/xstriconv.c: Likewise.
2933         * lib/xstriconv.h: Likewise.
2934         * lib/xstrndup.c: Likewise.
2935         * lib/xstrndup.h: Likewise.
2936         * lib/xstrtod.c: Likewise.
2937         * lib/xstrtod.h: Likewise.
2938         * lib/xstrtol-error.c: Likewise.
2939         * lib/xstrtol.c: Likewise.
2940         * lib/xstrtol.h: Likewise.
2941         * lib/xtime.h: Likewise.
2942         * lib/xvasprintf.c: Likewise.
2943         * lib/xvasprintf.h: Likewise.
2944         * lib/yesno.c: Likewise.
2945         * lib/yesno.h: Likewise.
2946         * posix-modules: Likewise.
2947         * tests/test-alloca-opt.c: Likewise.
2948         * tests/test-arcfour.c: Likewise.
2949         * tests/test-arctwo.c: Likewise.
2950         * tests/test-argmatch.c: Likewise.
2951         * tests/test-argp-2.sh: Likewise.
2952         * tests/test-argp.c: Likewise.
2953         * tests/test-arpa_inet.c: Likewise.
2954         * tests/test-array_list.c: Likewise.
2955         * tests/test-array_oset.c: Likewise.
2956         * tests/test-atexit.c: Likewise.
2957         * tests/test-avltree_list.c: Likewise.
2958         * tests/test-avltree_oset.c: Likewise.
2959         * tests/test-avltreehash_list.c: Likewise.
2960         * tests/test-base64.c: Likewise.
2961         * tests/test-binary-io.c: Likewise.
2962         * tests/test-byteswap.c: Likewise.
2963         * tests/test-c-ctype.c: Likewise.
2964         * tests/test-c-strcasecmp.c: Likewise.
2965         * tests/test-c-strcasestr.c: Likewise.
2966         * tests/test-c-strncasecmp.c: Likewise.
2967         * tests/test-c-strstr.c: Likewise.
2968         * tests/test-canonicalize-lgpl.c: Likewise.
2969         * tests/test-canonicalize.c: Likewise.
2970         * tests/test-carray_list.c: Likewise.
2971         * tests/test-ceilf.c: Likewise.
2972         * tests/test-ceill.c: Likewise.
2973         * tests/test-count-one-bits.c: Likewise.
2974         * tests/test-crc.c: Likewise.
2975         * tests/test-dirname.c: Likewise.
2976         * tests/test-fbufmode.c: Likewise.
2977         * tests/test-fcntl.c: Likewise.
2978         * tests/test-fflush.c: Likewise.
2979         * tests/test-floorf.c: Likewise.
2980         * tests/test-floorl.c: Likewise.
2981         * tests/test-fopen.c: Likewise.
2982         * tests/test-fprintf-posix.c: Likewise.
2983         * tests/test-fprintf-posix.h: Likewise.
2984         * tests/test-fpurge.c: Likewise.
2985         * tests/test-freadable.c: Likewise.
2986         * tests/test-freadahead.c: Likewise.
2987         * tests/test-freading.c: Likewise.
2988         * tests/test-freopen.c: Likewise.
2989         * tests/test-frexp.c: Likewise.
2990         * tests/test-frexpl.c: Likewise.
2991         * tests/test-fseek.c: Likewise.
2992         * tests/test-fseeko.c: Likewise.
2993         * tests/test-fseterr.c: Likewise.
2994         * tests/test-fstrcmp.c: Likewise.
2995         * tests/test-ftell.c: Likewise.
2996         * tests/test-ftello.c: Likewise.
2997         * tests/test-fwritable.c: Likewise.
2998         * tests/test-fwriting.c: Likewise.
2999         * tests/test-getaddrinfo.c: Likewise.
3000         * tests/test-getpass.c: Likewise.
3001         * tests/test-gettimeofday.c: Likewise.
3002         * tests/test-hmac-md5.c: Likewise.
3003         * tests/test-hmac-sha1.c: Likewise.
3004         * tests/test-iconv.c: Likewise.
3005         * tests/test-iconvme.c: Likewise.
3006         * tests/test-inttypes.c: Likewise.
3007         * tests/test-isnan.c: Likewise.
3008         * tests/test-isnanf.c: Likewise.
3009         * tests/test-isnanl-nolibm.c: Likewise.
3010         * tests/test-isnanl.c: Likewise.
3011         * tests/test-isnanl.h: Likewise.
3012         * tests/test-ldexpl.c: Likewise.
3013         * tests/test-linked_list.c: Likewise.
3014         * tests/test-linkedhash_list.c: Likewise.
3015         * tests/test-locale.c: Likewise.
3016         * tests/test-localename.c: Likewise.
3017         * tests/test-lock.c: Likewise.
3018         * tests/test-lseek.c: Likewise.
3019         * tests/test-malloca.c: Likewise.
3020         * tests/test-math.c: Likewise.
3021         * tests/test-mbscasecmp.c: Likewise.
3022         * tests/test-mbscasestr1.c: Likewise.
3023         * tests/test-mbscasestr2.c: Likewise.
3024         * tests/test-mbscasestr3.c: Likewise.
3025         * tests/test-mbscasestr4.c: Likewise.
3026         * tests/test-mbschr.c: Likewise.
3027         * tests/test-mbscspn.c: Likewise.
3028         * tests/test-mbsncasecmp.c: Likewise.
3029         * tests/test-mbspbrk.c: Likewise.
3030         * tests/test-mbspcasecmp.c: Likewise.
3031         * tests/test-mbsrchr.c: Likewise.
3032         * tests/test-mbsspn.c: Likewise.
3033         * tests/test-mbsstr1.c: Likewise.
3034         * tests/test-mbsstr2.c: Likewise.
3035         * tests/test-mbsstr3.c: Likewise.
3036         * tests/test-md5.c: Likewise.
3037         * tests/test-memmem.c: Likewise.
3038         * tests/test-netinet_in.c: Likewise.
3039         * tests/test-open.c: Likewise.
3040         * tests/test-printf-frexp.c: Likewise.
3041         * tests/test-printf-frexpl.c: Likewise.
3042         * tests/test-printf-posix.c: Likewise.
3043         * tests/test-printf-posix.h: Likewise.
3044         * tests/test-rbtree_list.c: Likewise.
3045         * tests/test-rbtree_oset.c: Likewise.
3046         * tests/test-rbtreehash_list.c: Likewise.
3047         * tests/test-read-file.c: Likewise.
3048         * tests/test-rijndael.c: Likewise.
3049         * tests/test-search.c: Likewise.
3050         * tests/test-signbit.c: Likewise.
3051         * tests/test-sleep.c: Likewise.
3052         * tests/test-snprintf-posix.c: Likewise.
3053         * tests/test-snprintf-posix.h: Likewise.
3054         * tests/test-snprintf.c: Likewise.
3055         * tests/test-sprintf-posix.c: Likewise.
3056         * tests/test-sprintf-posix.h: Likewise.
3057         * tests/test-stat-time.c: Likewise.
3058         * tests/test-stdbool.c: Likewise.
3059         * tests/test-stdint.c: Likewise.
3060         * tests/test-stdio.c: Likewise.
3061         * tests/test-stdlib.c: Likewise.
3062         * tests/test-stpncpy.c: Likewise.
3063         * tests/test-strcasestr.c: Likewise.
3064         * tests/test-striconv.c: Likewise.
3065         * tests/test-striconveh.c: Likewise.
3066         * tests/test-striconveha.c: Likewise.
3067         * tests/test-string.c: Likewise.
3068         * tests/test-sys_select.c: Likewise.
3069         * tests/test-sys_socket.c: Likewise.
3070         * tests/test-sys_stat.c: Likewise.
3071         * tests/test-sys_time.c: Likewise.
3072         * tests/test-sysexits.c: Likewise.
3073         * tests/test-time.c: Likewise.
3074         * tests/test-tls.c: Likewise.
3075         * tests/test-trunc.c: Likewise.
3076         * tests/test-truncf.c: Likewise.
3077         * tests/test-truncl.c: Likewise.
3078         * tests/test-unistd.c: Likewise.
3079         * tests/test-vasnprintf-posix.c: Likewise.
3080         * tests/test-vasnprintf-posix2.c: Likewise.
3081         * tests/test-vasnprintf.c: Likewise.
3082         * tests/test-vasprintf-posix.c: Likewise.
3083         * tests/test-vasprintf.c: Likewise.
3084         * tests/test-verify.c: Likewise.
3085         * tests/test-vfprintf-posix.c: Likewise.
3086         * tests/test-vprintf-posix.c: Likewise.
3087         * tests/test-vsnprintf-posix.c: Likewise.
3088         * tests/test-vsnprintf.c: Likewise.
3089         * tests/test-vsprintf-posix.c: Likewise.
3090         * tests/test-wchar.c: Likewise.
3091         * tests/test-wctype.c: Likewise.
3092         * tests/test-wcwidth.c: Likewise.
3093         * tests/test-xstrtol.c: Likewise.
3094         * tests/test-xvasprintf.c: Likewise.
3095         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
3096         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
3097         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
3098         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
3099         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
3100         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
3101         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
3102         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
3103         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
3104         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
3105         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
3106         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
3107         * tests/uniname/test-uninames.c: Likewise.
3108         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
3109         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
3110         * tests/unistdio/test-u16-printf1.h: Likewise.
3111         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
3112         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
3113         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
3114         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
3115         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
3116         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
3117         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
3118         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
3119         * tests/unistdio/test-u32-printf1.h: Likewise.
3120         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
3121         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
3122         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
3123         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
3124         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
3125         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
3126         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
3127         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
3128         * tests/unistdio/test-u8-printf1.h: Likewise.
3129         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
3130         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
3131         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
3132         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
3133         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
3134         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
3135         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
3136         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
3137         * tests/unistdio/test-ulc-printf1.h: Likewise.
3138         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
3139         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
3140         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
3141         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
3142         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
3143         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
3144         * tests/uniwidth/test-u16-strwidth.c: Likewise.
3145         * tests/uniwidth/test-u16-width.c: Likewise.
3146         * tests/uniwidth/test-u32-strwidth.c: Likewise.
3147         * tests/uniwidth/test-u32-width.c: Likewise.
3148         * tests/uniwidth/test-u8-strwidth.c: Likewise.
3149         * tests/uniwidth/test-u8-width.c: Likewise.
3150         * tests/uniwidth/test-uc_width.c: Likewise.
3151         * config/srclist-update: Likewise.
3152         (fixlicense): Update to GPLv3+.
3153
3154         Change copyright notice from LGPLv2.1+ to LGPLv3+.
3155         * tests/test-tsearch.c: Change copyright notice.
3156
3157         Change copyright notice from LGPLv2.0+ to LGPLv3+.
3158         * lib/c-strcaseeq.h: Change copyright notice.
3159         * lib/streq.h: Likewise.
3160         * lib/uniconv.h: Likewise.
3161         * lib/uniconv/u-conv-from-enc.h: Likewise.
3162         * lib/uniconv/u-conv-to-enc.h: Likewise.
3163         * lib/uniconv/u-strconv-from-enc.h: Likewise.
3164         * lib/uniconv/u-strconv-to-enc.h: Likewise.
3165         * lib/uniconv/u16-conv-from-enc.c: Likewise.
3166         * lib/uniconv/u16-conv-to-enc.c: Likewise.
3167         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
3168         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
3169         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
3170         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
3171         * lib/uniconv/u32-conv-from-enc.c: Likewise.
3172         * lib/uniconv/u32-conv-to-enc.c: Likewise.
3173         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
3174         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
3175         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
3176         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
3177         * lib/uniconv/u8-conv-from-enc.c: Likewise.
3178         * lib/uniconv/u8-conv-to-enc.c: Likewise.
3179         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
3180         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
3181         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
3182         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
3183         * lib/uniname.h: Likewise.
3184         * lib/uniname/uniname.c: Likewise.
3185         * lib/unistdio.h: Likewise.
3186         * lib/unistdio/u-asnprintf.h: Likewise.
3187         * lib/unistdio/u-asprintf.h: Likewise.
3188         * lib/unistdio/u-printf-args.c: Likewise.
3189         * lib/unistdio/u-printf-args.h: Likewise.
3190         * lib/unistdio/u-printf-parse.h: Likewise.
3191         * lib/unistdio/u-snprintf.h: Likewise.
3192         * lib/unistdio/u-sprintf.h: Likewise.
3193         * lib/unistdio/u-vasprintf.h: Likewise.
3194         * lib/unistdio/u-vsnprintf.h: Likewise.
3195         * lib/unistdio/u-vsprintf.h: Likewise.
3196         * lib/unistdio/u16-asnprintf.c: Likewise.
3197         * lib/unistdio/u16-asprintf.c: Likewise.
3198         * lib/unistdio/u16-printf-parse.c: Likewise.
3199         * lib/unistdio/u16-snprintf.c: Likewise.
3200         * lib/unistdio/u16-sprintf.c: Likewise.
3201         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
3202         * lib/unistdio/u16-u16-asprintf.c: Likewise.
3203         * lib/unistdio/u16-u16-snprintf.c: Likewise.
3204         * lib/unistdio/u16-u16-sprintf.c: Likewise.
3205         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
3206         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
3207         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
3208         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
3209         * lib/unistdio/u16-vasnprintf.c: Likewise.
3210         * lib/unistdio/u16-vasprintf.c: Likewise.
3211         * lib/unistdio/u16-vsnprintf.c: Likewise.
3212         * lib/unistdio/u16-vsprintf.c: Likewise.
3213         * lib/unistdio/u32-asnprintf.c: Likewise.
3214         * lib/unistdio/u32-asprintf.c: Likewise.
3215         * lib/unistdio/u32-printf-parse.c: Likewise.
3216         * lib/unistdio/u32-snprintf.c: Likewise.
3217         * lib/unistdio/u32-sprintf.c: Likewise.
3218         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
3219         * lib/unistdio/u32-u32-asprintf.c: Likewise.
3220         * lib/unistdio/u32-u32-snprintf.c: Likewise.
3221         * lib/unistdio/u32-u32-sprintf.c: Likewise.
3222         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
3223         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
3224         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
3225         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
3226         * lib/unistdio/u32-vasnprintf.c: Likewise.
3227         * lib/unistdio/u32-vasprintf.c: Likewise.
3228         * lib/unistdio/u32-vsnprintf.c: Likewise.
3229         * lib/unistdio/u32-vsprintf.c: Likewise.
3230         * lib/unistdio/u8-asnprintf.c: Likewise.
3231         * lib/unistdio/u8-asprintf.c: Likewise.
3232         * lib/unistdio/u8-printf-parse.c: Likewise.
3233         * lib/unistdio/u8-snprintf.c: Likewise.
3234         * lib/unistdio/u8-sprintf.c: Likewise.
3235         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
3236         * lib/unistdio/u8-u8-asprintf.c: Likewise.
3237         * lib/unistdio/u8-u8-snprintf.c: Likewise.
3238         * lib/unistdio/u8-u8-sprintf.c: Likewise.
3239         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
3240         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
3241         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
3242         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
3243         * lib/unistdio/u8-vasnprintf.c: Likewise.
3244         * lib/unistdio/u8-vasprintf.c: Likewise.
3245         * lib/unistdio/u8-vsnprintf.c: Likewise.
3246         * lib/unistdio/u8-vsprintf.c: Likewise.
3247         * lib/unistdio/ulc-asnprintf.c: Likewise.
3248         * lib/unistdio/ulc-asprintf.c: Likewise.
3249         * lib/unistdio/ulc-printf-parse.c: Likewise.
3250         * lib/unistdio/ulc-snprintf.c: Likewise.
3251         * lib/unistdio/ulc-sprintf.c: Likewise.
3252         * lib/unistdio/ulc-vasnprintf.c: Likewise.
3253         * lib/unistdio/ulc-vasprintf.c: Likewise.
3254         * lib/unistdio/ulc-vsnprintf.c: Likewise.
3255         * lib/unistdio/ulc-vsprintf.c: Likewise.
3256         * lib/unistr.h: Likewise.
3257         * lib/unistr/u-cpy-alloc.h: Likewise.
3258         * lib/unistr/u-cpy.h: Likewise.
3259         * lib/unistr/u-endswith.h: Likewise.
3260         * lib/unistr/u-move.h: Likewise.
3261         * lib/unistr/u-set.h: Likewise.
3262         * lib/unistr/u-startswith.h: Likewise.
3263         * lib/unistr/u-stpcpy.h: Likewise.
3264         * lib/unistr/u-stpncpy.h: Likewise.
3265         * lib/unistr/u-strcat.h: Likewise.
3266         * lib/unistr/u-strcpy.h: Likewise.
3267         * lib/unistr/u-strcspn.h: Likewise.
3268         * lib/unistr/u-strdup.h: Likewise.
3269         * lib/unistr/u-strlen.h: Likewise.
3270         * lib/unistr/u-strncat.h: Likewise.
3271         * lib/unistr/u-strncpy.h: Likewise.
3272         * lib/unistr/u-strnlen.h: Likewise.
3273         * lib/unistr/u-strpbrk.h: Likewise.
3274         * lib/unistr/u-strspn.h: Likewise.
3275         * lib/unistr/u-strstr.h: Likewise.
3276         * lib/unistr/u-strtok.h: Likewise.
3277         * lib/unistr/u16-check.c: Likewise.
3278         * lib/unistr/u16-chr.c: Likewise.
3279         * lib/unistr/u16-cmp.c: Likewise.
3280         * lib/unistr/u16-cpy-alloc.c: Likewise.
3281         * lib/unistr/u16-cpy.c: Likewise.
3282         * lib/unistr/u16-endswith.c: Likewise.
3283         * lib/unistr/u16-mblen.c: Likewise.
3284         * lib/unistr/u16-mbsnlen.c: Likewise.
3285         * lib/unistr/u16-mbtouc-aux.c: Likewise.
3286         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
3287         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
3288         * lib/unistr/u16-mbtouc.c: Likewise.
3289         * lib/unistr/u16-mbtoucr.c: Likewise.
3290         * lib/unistr/u16-move.c: Likewise.
3291         * lib/unistr/u16-next.c: Likewise.
3292         * lib/unistr/u16-prev.c: Likewise.
3293         * lib/unistr/u16-set.c: Likewise.
3294         * lib/unistr/u16-startswith.c: Likewise.
3295         * lib/unistr/u16-stpcpy.c: Likewise.
3296         * lib/unistr/u16-stpncpy.c: Likewise.
3297         * lib/unistr/u16-strcat.c: Likewise.
3298         * lib/unistr/u16-strchr.c: Likewise.
3299         * lib/unistr/u16-strcmp.c: Likewise.
3300         * lib/unistr/u16-strcpy.c: Likewise.
3301         * lib/unistr/u16-strcspn.c: Likewise.
3302         * lib/unistr/u16-strdup.c: Likewise.
3303         * lib/unistr/u16-strlen.c: Likewise.
3304         * lib/unistr/u16-strmblen.c: Likewise.
3305         * lib/unistr/u16-strmbtouc.c: Likewise.
3306         * lib/unistr/u16-strncat.c: Likewise.
3307         * lib/unistr/u16-strncmp.c: Likewise.
3308         * lib/unistr/u16-strncpy.c: Likewise.
3309         * lib/unistr/u16-strnlen.c: Likewise.
3310         * lib/unistr/u16-strpbrk.c: Likewise.
3311         * lib/unistr/u16-strrchr.c: Likewise.
3312         * lib/unistr/u16-strspn.c: Likewise.
3313         * lib/unistr/u16-strstr.c: Likewise.
3314         * lib/unistr/u16-strtok.c: Likewise.
3315         * lib/unistr/u16-to-u32.c: Likewise.
3316         * lib/unistr/u16-to-u8.c: Likewise.
3317         * lib/unistr/u16-uctomb-aux.c: Likewise.
3318         * lib/unistr/u16-uctomb.c: Likewise.
3319         * lib/unistr/u32-check.c: Likewise.
3320         * lib/unistr/u32-chr.c: Likewise.
3321         * lib/unistr/u32-cmp.c: Likewise.
3322         * lib/unistr/u32-cpy-alloc.c: Likewise.
3323         * lib/unistr/u32-cpy.c: Likewise.
3324         * lib/unistr/u32-endswith.c: Likewise.
3325         * lib/unistr/u32-mblen.c: Likewise.
3326         * lib/unistr/u32-mbsnlen.c: Likewise.
3327         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
3328         * lib/unistr/u32-mbtouc.c: Likewise.
3329         * lib/unistr/u32-mbtoucr.c: Likewise.
3330         * lib/unistr/u32-move.c: Likewise.
3331         * lib/unistr/u32-next.c: Likewise.
3332         * lib/unistr/u32-prev.c: Likewise.
3333         * lib/unistr/u32-set.c: Likewise.
3334         * lib/unistr/u32-startswith.c: Likewise.
3335         * lib/unistr/u32-stpcpy.c: Likewise.
3336         * lib/unistr/u32-stpncpy.c: Likewise.
3337         * lib/unistr/u32-strcat.c: Likewise.
3338         * lib/unistr/u32-strchr.c: Likewise.
3339         * lib/unistr/u32-strcmp.c: Likewise.
3340         * lib/unistr/u32-strcpy.c: Likewise.
3341         * lib/unistr/u32-strcspn.c: Likewise.
3342         * lib/unistr/u32-strdup.c: Likewise.
3343         * lib/unistr/u32-strlen.c: Likewise.
3344         * lib/unistr/u32-strmblen.c: Likewise.
3345         * lib/unistr/u32-strmbtouc.c: Likewise.
3346         * lib/unistr/u32-strncat.c: Likewise.
3347         * lib/unistr/u32-strncmp.c: Likewise.
3348         * lib/unistr/u32-strncpy.c: Likewise.
3349         * lib/unistr/u32-strnlen.c: Likewise.
3350         * lib/unistr/u32-strpbrk.c: Likewise.
3351         * lib/unistr/u32-strrchr.c: Likewise.
3352         * lib/unistr/u32-strspn.c: Likewise.
3353         * lib/unistr/u32-strstr.c: Likewise.
3354         * lib/unistr/u32-strtok.c: Likewise.
3355         * lib/unistr/u32-to-u16.c: Likewise.
3356         * lib/unistr/u32-to-u8.c: Likewise.
3357         * lib/unistr/u32-uctomb.c: Likewise.
3358         * lib/unistr/u8-check.c: Likewise.
3359         * lib/unistr/u8-chr.c: Likewise.
3360         * lib/unistr/u8-cmp.c: Likewise.
3361         * lib/unistr/u8-cpy-alloc.c: Likewise.
3362         * lib/unistr/u8-cpy.c: Likewise.
3363         * lib/unistr/u8-endswith.c: Likewise.
3364         * lib/unistr/u8-mblen.c: Likewise.
3365         * lib/unistr/u8-mbsnlen.c: Likewise.
3366         * lib/unistr/u8-mbtouc-aux.c: Likewise.
3367         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
3368         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
3369         * lib/unistr/u8-mbtouc.c: Likewise.
3370         * lib/unistr/u8-mbtoucr.c: Likewise.
3371         * lib/unistr/u8-move.c: Likewise.
3372         * lib/unistr/u8-next.c: Likewise.
3373         * lib/unistr/u8-prev.c: Likewise.
3374         * lib/unistr/u8-set.c: Likewise.
3375         * lib/unistr/u8-startswith.c: Likewise.
3376         * lib/unistr/u8-stpcpy.c: Likewise.
3377         * lib/unistr/u8-stpncpy.c: Likewise.
3378         * lib/unistr/u8-strcat.c: Likewise.
3379         * lib/unistr/u8-strchr.c: Likewise.
3380         * lib/unistr/u8-strcmp.c: Likewise.
3381         * lib/unistr/u8-strcpy.c: Likewise.
3382         * lib/unistr/u8-strcspn.c: Likewise.
3383         * lib/unistr/u8-strdup.c: Likewise.
3384         * lib/unistr/u8-strlen.c: Likewise.
3385         * lib/unistr/u8-strmblen.c: Likewise.
3386         * lib/unistr/u8-strmbtouc.c: Likewise.
3387         * lib/unistr/u8-strncat.c: Likewise.
3388         * lib/unistr/u8-strncmp.c: Likewise.
3389         * lib/unistr/u8-strncpy.c: Likewise.
3390         * lib/unistr/u8-strnlen.c: Likewise.
3391         * lib/unistr/u8-strpbrk.c: Likewise.
3392         * lib/unistr/u8-strrchr.c: Likewise.
3393         * lib/unistr/u8-strspn.c: Likewise.
3394         * lib/unistr/u8-strstr.c: Likewise.
3395         * lib/unistr/u8-strtok.c: Likewise.
3396         * lib/unistr/u8-to-u16.c: Likewise.
3397         * lib/unistr/u8-to-u32.c: Likewise.
3398         * lib/unistr/u8-uctomb-aux.c: Likewise.
3399         * lib/unistr/u8-uctomb.c: Likewise.
3400         * lib/unitypes.h: Likewise.
3401         * lib/uniwidth.h: Likewise.
3402         * lib/uniwidth/cjk.h: Likewise.
3403         * lib/uniwidth/u16-strwidth.c: Likewise.
3404         * lib/uniwidth/u16-width.c: Likewise.
3405         * lib/uniwidth/u32-strwidth.c: Likewise.
3406         * lib/uniwidth/u32-width.c: Likewise.
3407         * lib/uniwidth/u8-strwidth.c: Likewise.
3408         * lib/uniwidth/u8-width.c: Likewise.
3409         * lib/uniwidth/width.c: Likewise.
3410
3411 2007-10-07  Bruno Haible  <bruno@clisp.org>
3412
3413         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
3414         The file is still under LGPL (see modules/inttypes).
3415
3416 2007-10-06  Bruno Haible  <bruno@clisp.org>
3417
3418         * modules/trunc (Dependencies): Add 'extensions'.
3419         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
3420         Reported by Ben Pfaff <blp@gnu.org>.
3421
3422 2007-10-06  Bruno Haible  <bruno@clisp.org>
3423
3424         * modules/freopen-tests: New file.
3425         * tests/test-freopen.c: New file.
3426
3427         * modules/fopen-tests: New file.
3428         * tests/test-fopen.c: New file.
3429
3430         * modules/fopen: New file.
3431         * lib/fopen.c: New file.
3432         * m4/fopen.m4: New file.
3433         * modules/freopen: New file.
3434         * lib/freopen.c: New file.
3435         * m4/freopen.m4: New file.
3436         * lib/stdio.in.h (fopen, freopen): New declarations.
3437         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
3438         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
3439         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
3440         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
3441         * doc/functions/fopen.texi: Mention the 'fopen' module.
3442         * doc/functions/freopen.texi: Mention the 'freopen' module.
3443
3444 2007-10-06  Bruno Haible  <bruno@clisp.org>
3445
3446         * modules/open-tests: New file.
3447         * tests/test-open.c: New file.
3448
3449         * modules/open: New file.
3450         * lib/open.c: New file.
3451         * m4/open.m4: New file.
3452         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
3453         lib/open.c does.
3454         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
3455         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
3456         macros.
3457         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
3458         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
3459         REPLACE_OPEN.
3460         * doc/functions/open.texi: Mention the 'open' module.
3461
3462 2007-10-04  Bruno Haible  <bruno@clisp.org>
3463
3464         * modules/ceill-tests: New file.
3465         * tests/test-ceill.c: New file.
3466
3467         * modules/ceill: New file.
3468         * lib/ceill.c: Replace entire file.
3469         * m4/ceill.m4: New file.
3470         * lib/math.in.h (ceill): Replace declaration.
3471         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
3472         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
3473         * doc/functions/ceill.texi: Mention the 'ceill' module.
3474         * modules/mathl (Files): Remove lib/ceill.c.
3475         (Depends-on): Add ceill.
3476
3477 2007-10-04  Bruno Haible  <bruno@clisp.org>
3478
3479         * modules/ceilf-tests: New file.
3480         * tests/test-ceilf.c: New file.
3481
3482         * modules/ceilf: New file.
3483         * lib/ceil.c: New file.
3484         * lib/ceilf.c: New file.
3485         * m4/ceilf.m4: New file.
3486         * lib/math.in.h (ceilf): New declaration.
3487         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
3488         HAVE_DECL_CEILF.
3489         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
3490         HAVE_DECL_CEILF.
3491         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
3492
3493 2007-10-04  Bruno Haible  <bruno@clisp.org>
3494
3495         * modules/floorl-tests: New file.
3496         * tests/test-floorl.c: New file.
3497
3498         * modules/floorl: New file.
3499         * lib/floorl.c: Replace entire file.
3500         * m4/floorl.m4: New file.
3501         * lib/math.in.h (floorl): Replace declaration.
3502         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
3503         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
3504         * doc/functions/floorl.texi: Mention the 'floorl' module.
3505         * modules/mathl (Files): Remove lib/floorl.c.
3506         (Depends-on): Add floorl.
3507
3508 2007-10-04  Bruno Haible  <bruno@clisp.org>
3509
3510         * modules/floorf-tests: New file.
3511         * tests/test-floorf.c: New file.
3512
3513         * modules/floorf: New file.
3514         * lib/floor.c: New file.
3515         * lib/floorf.c: New file.
3516         * m4/floorf.m4: New file.
3517         * lib/math.in.h (floorf): New declaration.
3518         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
3519         HAVE_DECL_FLOORF.
3520         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
3521         HAVE_DECL_FLOORF.
3522         * doc/functions/floorf.texi: Mention the 'floorf' module.
3523
3524 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
3525             Bruno Haible  <bruno@clisp.org>
3526
3527         Advertise for the Git server instead of the CVS server.
3528         * doc/gnulib-intro.texi (Steady Development): Mention the Git
3529         repository instead of the CVS one.
3530         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
3531         about all VCS systems generically.
3532         * doc/gnulib.texi (Introduction): Capitalize `Git'.
3533
3534 2007-10-04  Bruno Haible  <bruno@clisp.org>
3535
3536         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
3537         means.
3538         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
3539
3540 2007-10-04  Bruno Haible  <bruno@clisp.org>
3541
3542         * modules/truncl-tests: New file.
3543         * tests/test-truncl.c: New file.
3544
3545         * modules/truncl: New file.
3546         * lib/truncl.c: New file.
3547         * m4/truncl.m4: New file.
3548         * lib/math.in.h (truncl): New declaration.
3549         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
3550         HAVE_DECL_TRUNCL.
3551         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
3552         HAVE_DECL_TRUNCL.
3553         * doc/functions/truncl.texi: Mention the 'truncl' module.
3554
3555 2007-10-04  Bruno Haible  <bruno@clisp.org>
3556
3557         * modules/truncf-tests: New file.
3558         * tests/test-truncf.c: New file.
3559
3560         * modules/truncf: New file.
3561         * lib/trunc.c: Make paramerizable through USE_* macros.
3562         * lib/truncf.c: New file.
3563         * m4/truncf.m4: New file.
3564         * lib/math.in.h (truncf): New declaration.
3565         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
3566         HAVE_DECL_TRUNCF.
3567         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
3568         HAVE_DECL_TRUNCF.
3569         * doc/functions/truncf.texi: Mention the 'truncf' module.
3570
3571 2007-10-03  Bruno Haible  <bruno@clisp.org>
3572
3573         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
3574         augmentation also for tests modules.
3575         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
3576         * modules/atexit-tests (Makefile.am): Likewise.
3577         * modules/binary-io-tests (Makefile.am): Likewise.
3578         * modules/c-strcase-tests (Makefile.am): Likewise.
3579         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
3580         * modules/canonicalize-tests (Makefile.am): Likewise.
3581         * modules/closein-tests (Makefile.am): Likewise.
3582         * modules/fprintf-posix-tests (Makefile.am): Likewise.
3583         * modules/freadahead-tests (Makefile.am): Likewise.
3584         * modules/fseek-tests (Makefile.am): Likewise.
3585         * modules/fseeko-tests (Makefile.am): Likewise.
3586         * modules/ftell-tests (Makefile.am): Likewise.
3587         * modules/ftello-tests (Makefile.am): Likewise.
3588         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
3589         * modules/isnanl-tests (Makefile.am): Likewise.
3590         * modules/lseek-tests (Makefile.am): Likewise.
3591         * modules/mbscasecmp-tests (Makefile.am): Likewise.
3592         * modules/mbscasestr-tests (Makefile.am): Likewise.
3593         * modules/mbschr-tests (Makefile.am): Likewise.
3594         * modules/mbscspn-tests (Makefile.am): Likewise.
3595         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
3596         * modules/mbspbrk-tests (Makefile.am): Likewise.
3597         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
3598         * modules/mbsrchr-tests (Makefile.am): Likewise.
3599         * modules/mbsspn-tests (Makefile.am): Likewise.
3600         * modules/mbsstr-tests (Makefile.am): Likewise.
3601         * modules/printf-posix-tests (Makefile.am): Likewise.
3602         * modules/snprintf-posix-tests (Makefile.am): Likewise.
3603         * modules/sprintf-posix-tests (Makefile.am): Likewise.
3604         * modules/tsearch-tests (Makefile.am): Likewise.
3605         * modules/uniname/uniname-tests (Makefile.am): Likewise.
3606         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
3607         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
3608         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
3609         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
3610         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
3611         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
3612         * modules/vprintf-posix-tests (Makefile.am): Likewise.
3613         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
3614         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
3615         * modules/xstrtoimax-tests (Makefile.am): Likewise.
3616         * modules/xstrtol-tests (Makefile.am): Likewise.
3617         * modules/xstrtoumax-tests (Makefile.am): Likewise.
3618         * modules/yesno-tests (Makefile.am): Likewise.
3619
3620 2007-10-03  Bruno Haible  <bruno@clisp.org>
3621
3622         * modules/trunc-tests: New file.
3623         * tests/test-trunc.c: New file.
3624
3625         * modules/trunc: New file.
3626         * lib/trunc.c: New file.
3627         * m4/trunc.m4: New file.
3628         * lib/math.in.h (trunc): New declaration.
3629         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
3630         HAVE_DECL_TRUNC.
3631         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
3632         HAVE_DECL_TRUNC.
3633         * doc/functions/trunc.texi: Mention the 'trunc' module.
3634
3635 2007-10-03  Bruno Haible  <bruno@clisp.org>
3636
3637         * tests/test-fpending.c: New file, mostly copied
3638         from coreutils/lib/t-fpending.c.
3639         * modules/fpending-tests: New file.
3640
3641 2007-10-03  Bruno Haible  <bruno@clisp.org>
3642
3643         Port the stdio extensions to QNX (untested).
3644         * lib/fseterr.c (fseterr): Add support for QNX.
3645         * lib/fbufmode.c (fbufmode): Likewise.
3646         * lib/freadable.c (freadable): Likewise.
3647         * lib/fwritable.c (fwritable): Likewise.
3648         * lib/freading.c (freading): Likewise.
3649         * lib/fwriting.c (fwriting): Likewise.
3650         * lib/freadahead.c (freadahed): Likewise.
3651         * lib/fpurge.c (fpurge): Likewise.
3652         * lib/fseeko.c (rpl_fseeko): Likewise.
3653
3654 2007-10-03  Bruno Haible  <bruno@clisp.org>
3655             Jim Meyering  <jim@meyering.net>
3656             Eric Blake  <ebb9@byu.net>
3657
3658         * doc/relocatable.texi: Use @command instead of @program.
3659
3660 2007-10-02  Jim Meyering  <jim@meyering.net>
3661
3662         Perform one more "_.h" -> ".in.h" substitution.
3663         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
3664         instead of unistd_.h here, too.
3665
3666 2007-10-01  Bruno Haible  <bruno@clisp.org>
3667
3668         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
3669         Needed for the alloca-opt module.
3670
3671 2007-09-30  Bruno Haible  <bruno@clisp.org>
3672
3673         * lib/alloca.in.h: Renamed from lib/alloca_.h.
3674         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
3675         alloca_.h.
3676         * lib/argz.in.h: Renamed from lib/argz_.h.
3677         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
3678         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
3679         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
3680         byteswap_.h.
3681         * lib/dirent.in.h: Renamed from lib/dirent_.h.
3682         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
3683         dirent_.h.
3684         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
3685         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
3686         fcntl_.h.
3687         * lib/float.in.h: Renamed from lib/float_.h.
3688         * modules/float (Files, Makefile.am): Use float.in.h instead of
3689         float_.h.
3690         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
3691         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
3692         fnmatch_.h.
3693         * lib/getopt.in.h: Renamed from lib/getopt_.h.
3694         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
3695         getopt_.h.
3696         * lib/glob.in.h: Renamed from lib/glob_.h.
3697         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
3698         * lib/iconv.in.h: Renamed from lib/iconv_.h.
3699         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
3700         iconv_.h.
3701         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
3702         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
3703         inttypes_.h.
3704         * lib/locale.in.h: Renamed from lib/locale_.h.
3705         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
3706         locale_.h.
3707         * lib/math.in.h: Renamed from lib/math_.h.
3708         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
3709         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
3710         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
3711         of netinet_in_.h. Add dependency.
3712         * lib/poll.in.h: Renamed from lib/poll_.h.
3713         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
3714         * lib/search.in.h: Renamed from lib/search_.h.
3715         * modules/search (Files, Makefile.am): Use search.in.h instead of
3716         search_.h.
3717         * lib/signal.in.h: Renamed from lib/signal_.h.
3718         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
3719         _signal.h.
3720         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
3721         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
3722         stdbool_.h.
3723         * lib/stdint.in.h: Renamed from lib/stdint_.h.
3724         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
3725         stdint_.h.
3726         * lib/stdio.in.h: Renamed from lib/stdio_.h.
3727         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
3728         stdio_.h.
3729         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
3730         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
3731         stdlib_.h.
3732         * lib/string.in.h: Renamed from lib/string_.h.
3733         * modules/string (Files, Makefile.am): Use string.in.h instead of
3734         string_.h.
3735         * doc/gnulib-tool.texi (Initial import): Update.
3736         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
3737         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
3738         of sys_select_.h. Add dependency.
3739         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
3740         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
3741         of sys_socket_.h.
3742         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
3743         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
3744         sys_stat_.h.
3745         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
3746         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
3747         sys_time_.h.
3748         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
3749         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
3750         sysexits_.h.
3751         * lib/time.in.h: Renamed from lib/time_.h.
3752         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
3753         * lib/unistd.in.h: Renamed from lib/unistd_.h.
3754         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
3755         unistd_.h.
3756         * lib/wchar.in.h: Renamed from lib/wchar_.h.
3757         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
3758         wchar_.h.
3759         * lib/wctype.in.h: Renamed from lib/wctype_.h.
3760         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
3761         wctype_.h.
3762         * build-aux/bootstrap (slurp): Update.
3763         * lib/.cppi-disable: Update.
3764
3765 2007-09-30  Bruno Haible  <bruno@clisp.org>
3766
3767         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
3768         Needed on BeOS.
3769
3770 2007-09-30  Bruno Haible  <bruno@clisp.org>
3771
3772         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
3773
3774 2007-09-29  Bruno Haible  <bruno@clisp.org>
3775
3776         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
3777
3778 2007-09-29  Bruno Haible  <bruno@clisp.org>
3779
3780         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
3781         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
3782         * build-aux/install-reloc: Compile also areadlink.c.
3783         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
3784
3785 2007-09-29  Bruno Haible  <bruno@clisp.org>
3786
3787         * gnulib-tool (func_emit_initmacro_done): Indentation.
3788
3789 2007-09-29  Bruno Haible  <bruno@clisp.org>
3790
3791         * README: Add CVS checkout update instructions.
3792         Info from Bob Proulx <bob@proulx.com>.
3793
3794 2007-09-28  Eric Blake  <ebb9@byu.net>
3795
3796         Provide move-if-change.
3797         * build-aux/move-if-change: New file, based on best practice
3798         rather than any canonical upstream location.
3799
3800 2007-09-28  Jim Meyering  <jim@meyering.net>
3801
3802         Fix canonicalize loop-detection corner case.
3803         Do not attempt to stat the symlink values stored via seen_triple.
3804         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
3805         on linux-2.6.18, (but not 2.6.22).
3806         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
3807         triple_compare.  The former compares dev,ino,filename, while the latter
3808         would actually stat dirname(filename) when dev and ino were equal.
3809         * lib/hash-triple.c: Install <string.h>.
3810         (STREQ): Define.
3811         (triple_compare_ino_str): New function.
3812         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
3813
3814 2007-09-28  Eric Blake  <ebb9@byu.net>
3815
3816         Enforce that AC_REPLACE_FUNCS files exist.
3817         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
3818         override check for typos.
3819
3820         Fix test-closein on Solaris 10.
3821         * tests/test-closein.c (main): Don't assume stdin can be inherited
3822         closed on all systems.
3823         * tests/test-closein.sh: Likewise.
3824         Reported by Piotr Tarnowski.
3825
3826 2007-09-28  Jim Meyering  <jim@meyering.net>
3827
3828         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
3829
3830 2007-09-27  Jim Meyering  <jim@meyering.net>
3831
3832         canonicalize: Avoid a false-positive cycle failure.
3833         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
3834         Sort.  Remove cycle-check.
3835         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
3836         not cycle-check.h.
3837         (seen_triple): New function.
3838         (canonicalize_filename_mode): Use it instead of cycle-check.
3839         * tests/test-canonicalize.c: Add a test for this bug.
3840         * tests/test-canonicalize.sh: Set up and run the test.
3841
3842         New module, file-set, from coreutils.
3843         * modules/file-set: Define it.
3844         * lib/file-set.c, lib/file-set.h: Implement.
3845
3846         New module, hash-triple, from coreutils.
3847         * modules/hash-triple: Define it.
3848         * lib/hash-triple.c, lib/hash-triple.h: Implement.
3849
3850 2007-09-25  Eric Blake  <ebb9@byu.net>
3851
3852         Fix strerror on Interix.
3853         * lib/string_.h (strerror): Declare replacement.
3854         * doc/functions/strerror.texi (strerror): Document the Interix
3855         shortcoming.
3856         * modules/string (Makefile.am): Support new hooks.
3857         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
3858         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
3859         gl_FUNC_STRERROR_SEPARATE.
3860         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
3861         * lib/strerror.c (rpl_strerror): Provide replacement.
3862         * modules/strerror (Depends-on): Add string.
3863         (configure.ac): Detect use of module.
3864         * tests/test-strerror.c: New file.
3865         * modules/strerror-tests: New test module.
3866         * modules/argp (Depends-on): Add strerror.
3867         * modules/error (Depends-on): Likewise.
3868         Reported by Martin Koeppe.
3869
3870 2007-09-24  Bruno Haible  <bruno@clisp.org>
3871
3872         * README: Update git instructions.
3873
3874 2007-09-24  Eric Blake  <ebb9@byu.net>
3875
3876         Revert fpending breakage from 2007-09-08.
3877         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
3878         __fpending.c.
3879
3880 2007-09-24  Jim Meyering  <jim@meyering.net>
3881
3882         filenamecat.c: Add a test.
3883         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
3884         showing how the function works when DIR is the empty string.
3885
3886 2007-09-21  Simon Josefsson  <simon@josefsson.org>
3887
3888         * tests/test-canonicalize.sh: Turn on executable bit.
3889
3890 2007-09-19  Eric Blake  <ebb9@byu.net>
3891
3892         * README: Update CVS instructions.
3893
3894 2007-09-18  Bruno Haible  <bruno@clisp.org>
3895
3896         * modules/areadlink: New file.
3897         * lib/areadlink.h (areadlink): New declaration.
3898         * lib/areadlink.c: New file, based on lib/xreadlink.c.
3899
3900 2007-09-17  Jim Meyering  <jim@meyering.net>
3901
3902         * lib/savewd.c (ESTALE) [!defined]: Define.
3903         Reported to be required on Interix by Martin Koeppe.
3904
3905 2007-09-17  Bruno Haible  <bruno@clisp.org>
3906
3907         * gnulib-tool (func_version): Use $version.
3908
3909 2007-09-16  Bruno Haible  <bruno@clisp.org>
3910
3911         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
3912         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
3913         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
3914         Reported by Greg Schafer <gschafer@zip.com.au>.
3915
3916 2007-09-15  Bruno Haible  <bruno@clisp.org>
3917
3918         * gnulib-tool (sed): Try a little harder to make bash understand the
3919         alias.
3920         Reported by Bruce Korb <bruce.korb@gmail.com>.
3921
3922 2007-09-13  Eric Blake  <ebb9@byu.net>
3923
3924         * ChangeLog: Remove conflict markers.
3925
3926 2007-09-13  Simon Josefsson  <simon@josefsson.org>
3927
3928         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
3929         Reported by Bruno Haible <bruno@clisp.org>.
3930
3931 2007-09-12  Bruno Haible  <bruno@clisp.org>
3932
3933         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
3934         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
3935         is not defined.
3936
3937 2007-09-12  Eric Blake  <ebb9@byu.net>
3938
3939         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
3940         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
3941         Autoconf definition.
3942         * modules/euidaccess (Depends-on): Add extensions, for
3943         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
3944         * modules/fnmatch (Depends-on): Likewise.
3945         * modules/getaddrinfo (Depends-on): Likewise.
3946         * modules/getdelim (Depends-on): Likewise.
3947         * modules/getline (Depends-on): Likewise.
3948         * modules/getsubopt (Depends-on): Likewise.
3949         * modules/gettext (Depends-on): Likewise.
3950         * modules/group-member (Depends-on): Likewise.
3951         * modules/mbchar (Depends-on): Likewise.
3952         * modules/memmem (Depends-on): Likewise.
3953         * modules/mempcpy (Depends-on): Likewise.
3954         * modules/memrchr (Depends-on): Likewise.
3955         * modules/pagealign_alloc (Depends-on): Likewise.
3956         * modules/readutmp (Depends-on): Likewise.
3957         * modules/stpcpy (Depends-on): Likewise.
3958         * modules/stpncpy (Depends-on): Likewise.
3959         * modules/strchrnul (Depends-on): Likewise.
3960         * modules/strndup (Depends-on): Likewise.
3961         * modules/strsep (Depends-on): Likewise.
3962         * modules/strverscmp (Depends-on): Likewise.
3963         * modules/vasprintf (Depends-on): Likewise.
3964         * modules/wcwidth (Depends-on): Likewise.
3965         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
3966         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
3967         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
3968         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
3969         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
3970         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
3971         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
3972         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
3973         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
3974         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
3975         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
3976         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
3977         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
3978         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
3979         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
3980         * m4/readutmp.m4 (gl_READUTMP): Likewise.
3981         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
3982         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
3983         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
3984         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
3985         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
3986         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
3987         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
3988         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
3989         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
3990         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
3991         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
3992         so that lock.m4 can be used in gettext without extensions module.
3993
3994 2007-09-11  Bruno Haible  <bruno@clisp.org>
3995
3996         * m4/isc-posix.m4: Remove file.
3997         Suggested by Eric Blake.
3998
3999 2007-09-11  Eric Blake  <ebb9@byu.net>
4000
4001         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
4002
4003 2007-09-10  Bruno Haible  <bruno@clisp.org>
4004
4005         * posix-modules: Fix typo in error message.
4006         Reported by Matt <mkraai@beckman.com>.
4007
4008 2007-09-09  Bruno Haible  <bruno@clisp.org>
4009
4010         * doc/functions/getdelim.texi: Update list of platforms lacking the
4011         function.
4012         * doc/functions/getline.texi: Likewise.
4013
4014 2007-09-09  Jim Meyering  <jim@meyering.net>
4015
4016         * lib/hash.c (hash_initialize): Detect calloc failure.
4017         Reported by Bruno Haible.
4018
4019 2007-09-09  Bruno Haible  <bruno@clisp.org>
4020
4021         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
4022         malloc or realloc fails.
4023
4024 2007-09-09  Bruno Haible  <bruno@clisp.org>
4025
4026         * modules/getcwd (Depends-on): Add malloc-posix.
4027         * modules/glob (Depends-on): Likewise.
4028         * modules/putenv (Depends-on): Likewise.
4029         * modules/strdup (Depends-on): Likewise.
4030         * modules/getdelim (Depends-on): Add realloc-posix.
4031         * modules/read-file (Depends-on): Likewise.
4032
4033 2007-09-09  Bruno Haible  <bruno@clisp.org>
4034
4035         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
4036         (gl_FUNC_MALLOC_POSIX): Require it.
4037         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
4038         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
4039         * modules/realloc (Files): Add m4/malloc.m4.
4040         * modules/calloc (Files): Likewise.
4041
4042 2007-09-09  Bruno Haible  <bruno@clisp.org>
4043
4044         * modules/malloc-posix: New file.
4045         * modules/malloc (Depends-on): Add malloc-posix.
4046         * lib/malloc.c: Include errno.h.
4047         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
4048         and a POSIX-compatible malloc into a single function. Set ENOMEM
4049         when returning NULL.
4050         * m4/malloc.m4: New file.
4051         * doc/functions/malloc.texi: Mention the malloc-posix module.
4052         * lib/stdlib_.h (malloc): New declaration.
4053         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
4054         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
4055         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
4056         and HAVE_MALLOC_POSIX.
4057
4058 2007-09-09  Bruno Haible  <bruno@clisp.org>
4059
4060         * modules/realloc-posix: New file.
4061         * modules/realloc (Depends-on): Add realloc-posix.
4062         * lib/realloc.c: Include errno.h.
4063         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
4064         and a POSIX-compatible realloc into a single function. Set ENOMEM
4065         when returning NULL.
4066         * m4/realloc.m4: New file.
4067         * doc/functions/realloc.texi: Mention the realloc-posix module.
4068         * lib/stdlib_.h (realloc): New declaration.
4069         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
4070         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
4071         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
4072         and HAVE_REALLOC_POSIX.
4073
4074 2007-09-09  Bruno Haible  <bruno@clisp.org>
4075
4076         * modules/calloc-posix: New file.
4077         * modules/calloc (Depends-on): Add calloc-posix.
4078         * lib/calloc.c: Include errno.h.
4079         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
4080         and a POSIX-compatible calloc into a single function. Set ENOMEM
4081         when returning NULL.
4082         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
4083         * doc/functions/calloc.texi: Mention the calloc-posix module.
4084         * lib/stdlib_.h (calloc): New declaration.
4085         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
4086         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
4087         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
4088         and HAVE_CALLOC_POSIX.
4089
4090 2007-09-09  Bruno Haible  <bruno@clisp.org>
4091
4092         Allow for modules to show an arbitrary notice.
4093         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
4094         * gnulib-tool: New option --extract-notice.
4095         (func_usage): Document it.
4096         (sed_extract_prog): Update.
4097         (func_get_notice): New function.
4098         (func_modules_notice): New function.
4099         (func_import, func_create_testdir): Invoke it.
4100         Suggested by Jim Meyering.
4101
4102 2007-09-09  Bruno Haible  <bruno@clisp.org>
4103
4104         * gnulib-tool: New options --verbose, --quiet.
4105         (func_usage): Document them.
4106         (verbose): New variable.
4107         (func_execute_command): New function.
4108         (func_import): Don't show the module list and the file list if
4109         $verbose < 0.
4110         (func_create_testdir): Likewise. Use func_execute_command.
4111         (func_create_megatestdir): Use func_execute_command.
4112
4113 2007-09-08  Bruno Haible  <bruno@clisp.org>
4114
4115         * gnulib-tool (func_import): Prefer rsync over wget when available,
4116         for fetching the PO files.
4117
4118 2007-09-08  Bruno Haible  <bruno@clisp.org>
4119
4120         * posix-modules: New file. Portions copied from gnulib-tool.
4121         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
4122
4123 2007-09-08  Jim Meyering  <jim@meyering.net>
4124
4125         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
4126         * lib/fpending.h: Rename from __fpending.h.
4127         * lib/fpending.c: Rename from __fpending.c.
4128         Include "fpending.h", not "__fpending.h".
4129         * lib/__fpending.h, lib/__fpending.c: Remove files.
4130         * modules/fpending (Files): Reflect new file names.
4131         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
4132
4133 2007-09-08  Bruno Haible  <bruno@clisp.org>
4134
4135         * m4/inttypes-h.m4: Remove stub file.
4136
4137 2007-09-07  Simon Josefsson  <simon@josefsson.org>
4138
4139         * doc/headers/stdint.texi: Discuss #include_next issue.
4140
4141 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
4142
4143         * build-aux/bootstrap: Remove obsolete comment about wget --help.
4144
4145 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4146
4147         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
4148         in variable name.
4149
4150 2007-09-03  Jim Meyering  <jim@meyering.net>
4151
4152         New module: git-version-gen.
4153         * modules/git-version-gen: New file.
4154
4155         Import changes from coreutils for bootstrap script.
4156
4157         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
4158
4159         bootstrap: uses rsync to download the .po files
4160         * build-aux/bootstrap (po_download_command_format): New global.
4161         (download_po_files): Use rsync.
4162         (update_po_files): Don't remove .po files after download,
4163         so future rsync runs can take advantage of the copies.
4164
4165         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
4166
4167         Solve the unnecessary-.po-file-regeneration problem once and for all.
4168         * build-aux/bootstrap (download_po_files): New function, renamed from
4169         get_translations.  Now, downloads, but doesn't update LINGUAS.
4170         (update_po_files): New function.
4171
4172         bootstrap: Ignore more.
4173         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
4174         uniwidth to e.g., lib/.gitignore.
4175         (slurp): Handle the sys_stat_.h -> sys mapping, too.
4176
4177         * build-aux/bootstrap: New setting: vc_ignore.
4178         (insert_sorted_if_absent): Create $file if absent.
4179         Adapt to new, possibly empty, list: $vc_ignore.
4180
4181         bootstrap: generate more ignorable names
4182         * build-aux/bootstrap (slurp): When generating ignorable names,
4183         also map .sin to .sed, .gperf to .c, and .y to .c.
4184
4185 2007-09-03  Jim Meyering  <jim@meyering.net>
4186
4187         * build-aux/git-version-gen: New file, from coreutils.  For details, see
4188         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
4189
4190 2007-09-02  Bruno Haible  <bruno@clisp.org>
4191
4192         Fix mis-recognition of 'mcs' on QNX 6.
4193         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
4194         output contains the string "Mono".
4195         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
4196         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
4197
4198 2007-09-01  Bruno Haible  <bruno@clisp.org>
4199
4200         Fix collision between uniwidth/* and linebreak modules.
4201         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
4202         u32_width): Remove declarations.
4203         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
4204         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
4205         streq3, streq2, streq1, streq0): Remove functions.
4206         (STREQ): Remove macro.
4207         (is_cjk_encoding): Remove function.
4208         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
4209         (uc_width, u8_width, u16_width, u32_width): Remove functions.
4210         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
4211         * NEWS: Document the change.
4212
4213 2007-09-01  Bruno Haible  <bruno@clisp.org>
4214
4215         * lib/streq.h: Add double-inclusion guard.
4216
4217 2007-09-01  Karl Berry  <karl@gnu.org>
4218
4219         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
4220
4221 2007-08-28  Jim Meyering  <jim@meyering.net>
4222
4223         Rename mreadlink_with_size to areadlink_with_size.
4224         * NEWS: Document the change.
4225         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
4226         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
4227         * lib/mreadlink.h: Rename this to...
4228         * lib/areadlink.h: ...this.
4229         * modules/mreadlink-with-size: Rename this to...
4230         * modules/areadlink-with-size: ...this.
4231         * lib/canonicalize.c: Reflect the renaming.
4232         * modules/canonicalize: Likewise.
4233
4234 2007-08-26  Bruno Haible  <bruno@clisp.org>
4235
4236         * gnulib-tool (func_import): When deciding which files to remove,
4237         consider also dangling symbolic links.
4238         Reported by Eric Blake.
4239
4240 2007-08-26  Bruno Haible  <bruno@clisp.org>
4241
4242         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
4243
4244 2007-08-23  Simon Josefsson  <simon@josefsson.org>
4245
4246         * lib/readline.c: Don't include getline.h, the prototype is now
4247         found in stdio.h.
4248
4249 2007-08-23  Jim Meyering  <jim@meyering.net>
4250
4251         Getdelim touchup.
4252         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
4253         around the funlockfile call, since funlockfile never sets errno.
4254         Don't set errno upon failed realloc.
4255
4256 2007-08-22  Eric Blake  <ebb9@byu.net>
4257
4258         Getline touchups.
4259         * lib/getdelim.c (getdelim): Revert regression that required *n to
4260         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
4261         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
4262         getdelim, rather than whether implementation is missing.
4263         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
4264         * lib/stdio_.h (getline): Also declare if replacement is
4265         required.
4266         * doc/functions/getdelim.texi: New file.
4267         * doc/functions/getline.texi: Likewise.
4268         * doc/gnulib.texi (Function Substitutes): Add new files.
4269         Reported by Bruno Haible.
4270
4271 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
4272
4273         * users.txt: Add Guile.
4274
4275 2007-08-22  Eric Blake  <ebb9@byu.net>
4276
4277         * tests/test-getdelim.c (main): Use remove, not unlink.
4278         * tests/test-getline.c (main): Likewise.
4279
4280         Move getline and getdelim into stdio.h, per POSIX 200x.
4281         * modules/getline (Files): Remove getline.h.
4282         (Depends-on): Add stdio.
4283         (configure.ac): Add module indicator.
4284         * modules/getdelim (Files): Remove getdelim.h.
4285         (Depends-on): Add stdio.
4286         (configure.ac): Add module indicator.
4287         * modules/stdio (Makefile.am): Work with new indicators.
4288         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4289         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
4290         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4291         * lib/getdelim.h: Delete.
4292         * lib/getline.h: Delete.
4293         * lib/stdio_.h (getdelim, getline): Declare.
4294         * modules/getdelim-tests: New module.
4295         * modules/getline-tests: Likewise.
4296         * tests/test-getdelim.c: New file.
4297         * tests/test-getline.c: Likewise.
4298         * NEWS: Document the change.
4299         * lib/getline.c: Update choice of header.
4300         * lib/csharpcomp.c: Likewise.
4301         * lib/getpass.c: Likewise.
4302         * lib/javacomp.c: Likewise.
4303         * lib/javaversion.c: Likewise.
4304         * lib/yesno.c: Likewise.
4305         * lib/getdelim.c: Likewise.
4306         (getdelim): Set errno on failure, and avoid memory leak.
4307
4308 2007-08-19  Bruno Haible  <bruno@clisp.org>
4309
4310         * modules/closein (Depends-on): Add freadahead.
4311         * lib/closein.c: Include freadahead.h.
4312         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
4313         is zero.
4314
4315 2007-08-19  Bruno Haible  <bruno@clisp.org>
4316
4317         * modules/freadahead-tests: New file.
4318         * tests/test-freadahead.sh: New file.
4319         * tests/test-freadahead.c: New file.
4320
4321         * modules/freadahead: New file.
4322         * lib/freadahead.h: New file.
4323         * lib/freadahead.c: New file.
4324         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
4325         fbufmode, fpurge, freadable, fwritable.
4326
4327 2007-08-19  Eric Blake  <ebb9@byu.net>
4328
4329         Test yesno in combination with closein.
4330         * lib/yesno.c (yesno): Document use of stdin.
4331         * modules/yesno-tests (Files): New module.
4332         * tests/test-yesno.c (main): New file.
4333         * tests/test-yesno.sh: Likewise.
4334
4335 2007-08-19  Bruno Haible  <bruno@clisp.org>
4336
4337         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
4338         * lib/fseeko.c (rpl_fseeko): Likewise.
4339         * lib/fseterr.c (fseterr): Likewise.
4340
4341 2007-08-19  Bruno Haible  <bruno@clisp.org>
4342
4343         * tests/test-lseek.c (main): Disable a test for BeOS.
4344         * doc/functions/lseek.texi: Document the BeOS bug.
4345
4346 2007-08-19  Bruno Haible  <bruno@clisp.org>
4347             Eric Blake  <ebb9@byu.net>
4348
4349         * lib/lseek.c: Include <sys/stat.h>.
4350         (rpl_lseek): Add workaround code also for Unix platforms.
4351         Needed for BeOS.
4352         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
4353         * doc/functions/lseek.texi: Document BeOS definiency.
4354
4355 2007-08-18  Bruno Haible  <bruno@clisp.org>
4356
4357         * modules/fstrcmp-tests: New file.
4358         * tests/test-fstrcmp.c: New file.
4359
4360 2007-08-18  Bruno Haible  <bruno@clisp.org>
4361
4362         * modules/fstrcmp: New file, from GNU gettext with modifications.
4363         * lib/fstrcmp.h: New file, from GNU gettext.
4364         * lib/fstrcmp.c: New file, from GNU gettext.
4365         * MODULES.html.sh (String handling): Add fstrcmp.
4366
4367 2007-08-18  Bruno Haible  <bruno@clisp.org>
4368
4369         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
4370         'bool'.
4371         (diag, compareseq): Remove const from the ctxt argument.
4372         (USE_HEURISTIC): Undefine at the end.
4373
4374 2007-08-18  Jim Meyering  <jim@meyering.net>
4375
4376         New file: lib/idcache.h
4377         * NEWS: Mention the addition.
4378         * modules/idcache (Files): Add lib/idcache.h
4379         * lib/idcache.c: Include "idcache.h".
4380         Don't include <sys/types.h>.
4381         Add a FIXME comment.
4382         Move file-scoped "static" declarations to the top.
4383         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
4384
4385 2007-08-17  Bruno Haible  <bruno@clisp.org>
4386         and Paul Eggert  <eggert@cs.ucla.edu>
4387
4388         * MODULES.html.sh: Add diffseq.
4389         * modules/diffseq: New file.
4390         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
4391         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
4392
4393 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4394
4395         Import changes from coreutils for bootstrap script.
4396
4397         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
4398
4399         * build-aux/bootstrap (slurp): Work even in environments where
4400         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
4401         current code does not slurp files whose names start with ".", and
4402         this looks like it might be a troublesome area.
4403
4404         2007-07-11  Jim Meyering  <jim@meyering.net>
4405
4406         If there's a GPL vN copyright comment, require that N == 3.
4407
4408         2007-07-08  Jim Meyering  <jim@meyering.net>
4409
4410         Run the coreutils-specific code only if tests/Makefile.am.in exists.
4411         * build-aux/bootstrap (mam_template): Move definition out of loop.
4412
4413         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
4414
4415         * build-aux/bootstrap (symlink_to_dir): Rename function from
4416         symlink_to_gnulib.  Add a directory parameter.  Update all
4417         callers.
4418         (cp_mark_as_generated): Also check for -- and link to -- files in
4419         gl/.
4420
4421         2007-07-08  Jim Meyering  <jim@meyering.net>
4422
4423         Adapt to deeper hierarchy in gnulib.
4424         * build-aux/bootstrap (symlink_to_dir): If the destination
4425         directory doesn't exist, create it. This is required at least for
4426         "lib/uniwidth/cjk.h".
4427
4428         2007-05-15  Jim Meyering  <jim@meyering.net>
4429
4430         * build-aux/bootstrap: Now that generated Makefile.am files
4431         are no longer under version control, they must be created at
4432         bootstrap time.
4433
4434 2007-08-14  Ben Pfaff  <blp@gnu.org>
4435
4436         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
4437
4438 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4439
4440         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
4441         given the changes below.
4442         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
4443         even on hosts that have padding bits beyond the supported 64.
4444
4445 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4446
4447         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
4448         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
4449         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
4450         depends on it.
4451         (xstrtol_error): Remove.
4452         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
4453         but with a different signature.
4454         (ATTRIBUTE_NORETURN, __attribute__): New macros.
4455         * lib/xstrtol-error.c: Include exitfail.h.
4456         (xstrtol_fatal): New function, with a different signature from the
4457         old xstrtol_error, so that the caller need not worry about passing
4458         in an exit status, or about storage management of the option argument.
4459         (xstrtol_error): Now a static function.  Redo signature to
4460         implement xstrtol_fatal.  Output the correct number of hyphens in
4461         front of the option so that the caller need not worry about
4462         storage management.
4463         (N_): New macro.
4464         (_): Remove; not used now.
4465         * modules/xstrtol: Depend on getopt.
4466         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
4467         of old STRTOL_FATAL_ERROR macro.
4468         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
4469         of test program.
4470         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
4471         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
4472
4473 2007-08-08  Eric Blake  <ebb9@byu.net>
4474
4475         * lib/xstrtol-error.c: Add missing include.
4476
4477         Move xstrtol messages into gnulib domain, when --pobase is used.
4478         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
4479         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
4480         * modules/xstrtol (Files): Distribute new file.
4481         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
4482         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
4483         * tests/test-xstrtol.c: ...into new file.
4484         * tests/test-xstrtoul.c: Also test xstrtoul.
4485         * tests/test-xstrtoimax.c: Also test xstrtoimax.
4486         * tests/test-xstrtoumax.c: Also test xstrtoumax.
4487         * tests/test-xstrtol.sh: Drive the tests.
4488         * tests/test-xstrtoimax.sh: Likewise.
4489         * tests/test-xstrtoumax.sh: Likewise.
4490         * modules/xstrtol-tests: New module.
4491         * modules/xstrtoimax-tests: Likewise.
4492         * modules/xstrtoumax-tests: Likewise.
4493
4494 2007-08-08  Jim Meyering  <jim@meyering.net>
4495
4496         New function: mfile_name_concat.
4497         * lib/filenamecat.c (mfile_name_concat): New function, just like
4498         file_name_concat, but return NULL upon failure rather than exiting
4499         with a diagnostic.
4500         * lib/filenamecat.h: Declare it.
4501
4502 2007-08-07  Bruno Haible  <bruno@clisp.org>
4503
4504         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
4505         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
4506         warning from gcc.
4507         Reported by Eric Blake.
4508
4509 2007-08-07  Simon Josefsson  <simon@josefsson.org>
4510
4511         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
4512         * modules/crypto/arcfour (License): Likewise.
4513         * modules/crypto/des-tests (License): Likewise.
4514         * modules/crypto/gc-arctwo-tests (License): Likewise.
4515         * modules/crypto/gc-des-tests (License): Likewise.
4516         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
4517         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
4518         * modules/crypto/gc-md2-tests (License): Likewise.
4519         * modules/crypto/gc-md4-tests (License): Likewise.
4520         * modules/crypto/gc-md5-tests (License): Likewise.
4521         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
4522         * modules/crypto/gc-rijndael-tests (License): Likewise.
4523         * modules/crypto/gc-sha1-tests (License): Likewise.
4524         * modules/crypto/gc-tests (License): Likewise.
4525         * modules/crypto/hmac-md5 (License): Likewise.
4526         * modules/crypto/hmac-sha1 (License): Likewise.
4527         * modules/crypto/md2-tests (License): Likewise.
4528         * modules/crypto/md4-tests (License): Likewise.
4529         * modules/crypto/md5 (License): Likewise.
4530         * modules/crypto/rijndael (License): Likewise.
4531         * modules/crypto/sha1 (License): Likewise.
4532         * modules/memxor (License): Likewise.
4533
4534 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
4535         and Bruno Haible  <bruno@clisp.org>
4536
4537         * NEWS: Describe interface changes to human, xstrtol.
4538         * lib/human.h: Include <xstrtol.h>.
4539         (human_options): Return enum strtol_error, not int.  Remove
4540         bool arg; take int * instead.
4541         * lib/human.c: Don't include "gettext.h".
4542         (_): Remove; no longer used.
4543         Don't include <xstrtol.h>, since human.h does it.
4544         (human_options): Adjust to abovementioned interface changes.
4545         Do not report error to stderr; that's now the caller's
4546         responsibility.
4547         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
4548         interface change.
4549         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
4550         Str, Argument_type_string.  All uses changed.  Put " argument"
4551         in diagnostics to make them clearer.  Change wording of suffix
4552         message for clarity.
4553         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
4554         Argument_type_string.
4555         (STRTOL_FATAL_WARN): Remove; no longer used.
4556         * modules/human (Depends-on): Remove gettext-h.
4557
4558 2007-08-06  Simon Josefsson  <simon@josefsson.org>
4559
4560         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
4561
4562 2007-07-31  Bruno Haible  <bruno@clisp.org>
4563
4564         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
4565         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
4566         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
4567
4568 2007-07-31  Bruno Haible  <bruno@clisp.org>
4569
4570         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
4571         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
4572
4573 2007-07-30  Bruno Haible  <bruno@clisp.org>
4574
4575         * modules/base64 (License): Use the synonymous term "LGPLv2+".
4576         * modules/c-ctype (License): Likewise.
4577         * modules/c-strcase (License): Likewise.
4578         * modules/check-version (License): Likewise.
4579         * modules/iconv (License): Likewise.
4580         * modules/iconv_open (License): Likewise.
4581         * modules/read-file (License): Likewise.
4582         * modules/striconv (License): Likewise.
4583         * modules/strverscmp (License): Likewise.
4584         * modules/vasprintf (License): Likewise.
4585         * modules/crypto/des (License): Likewise.
4586         * modules/crypto/gc (License): Likewise.
4587         * modules/crypto/gc-arcfour (License): Likewise.
4588         * modules/crypto/gc-arctwo (License): Likewise.
4589         * modules/crypto/gc-des (License): Likewise.
4590         * modules/crypto/gc-hmac-md5 (License): Likewise.
4591         * modules/crypto/gc-hmac-sha1 (License): Likewise.
4592         * modules/crypto/gc-md2 (License): Likewise.
4593         * modules/crypto/gc-md4 (License): Likewise.
4594         * modules/crypto/gc-md5 (License): Likewise.
4595         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
4596         * modules/crypto/gc-random (License): Likewise.
4597         * modules/crypto/gc-rijndael (License): Likewise.
4598         * modules/crypto/gc-sha1 (License): Likewise.
4599         * modules/crypto/md2 (License): Likewise.
4600         * modules/crypto/md4 (License): Likewise.
4601
4602 2007-07-30  Jim Meyering  <jim@meyering.net>
4603
4604         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
4605         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
4606         it has valid stat data.  This bug would cause du not to count the
4607         sizes of inaccessible directories.
4608         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
4609         in <http://bugzilla.redhat.com/250077>.
4610
4611 2007-07-25  Peter O'Gorman  <peter@pogma.com>
4612             Bruno Haible  <bruno@clisp.org>
4613
4614         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
4615         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
4616         #include_next, gives a diagnostic about it, but reports no error in
4617         the exit code.
4618         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
4619
4620 2007-07-24  Ben Pfaff  <blp@gnu.org>
4621
4622         Improve name: "count-one-bits" is better than "popcount".
4623         * MODULES.html.sh: Update name.
4624         * lib/popcount.h: Renamed lib/count-one-bits.h.
4625         (popcount): Renamed count_one_bits.
4626         (popcountl): Renamed count_one_bits_l.
4627         (popcountll): Renamed count_one_bits_ll.
4628         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
4629         * modules/popcount: Renamed module/count-one-bits.
4630         * modules/popcount-tests: Renamed module/count-one-bits-tests.
4631         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
4632
4633 2007-07-23  Ben Pfaff  <blp@gnu.org>
4634
4635         * lib/popcount.h (popcount32): Reduce size of constants, to allow
4636         better code generation, and add U to large constants to avoid
4637         warnings, in non-GCC case.
4638         Suggested by Bruno Haible.
4639
4640 2007-07-23  Ben Pfaff  <blp@gnu.org>
4641
4642         * lib/popcount.h: Use verify_true instead of if...abort.
4643         * modules/popcount: Depend on verify module.
4644         Suggested by Jim Meyering.
4645
4646 2007-07-23  Bruno Haible  <bruno@clisp.org>
4647
4648         * gnulib-tool (func_import): Create a .cvsignore file also when the
4649         directory is not yet in CVS but the toplevel directory is. When
4650         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
4651         Reported by Karl Berry.
4652
4653 2007-07-22  Ben Pfaff  <blp@gnu.org>
4654
4655         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
4656         case.
4657         Suggested by Eric Blake.
4658
4659 2007-07-22  Ben Pfaff  <blp@gnu.org>
4660
4661         New module: popcount.
4662         * MODULES.html.sh: Add popcount.
4663         * modules/popcount: New file.
4664         * modules/popcount-tests: New file.
4665         * tests/test-popcount.c: New file.
4666         * lib/popcount.h: New file.
4667         * m4/popcount.m4: New file.
4668
4669 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4670
4671         * build-aux/announce-gen: Update to GPLv3.
4672
4673         * build-aux/config.guess: Update from config.
4674
4675 2007-07-21  Bruno Haible  <bruno@clisp.org>
4676
4677         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
4678         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
4679
4680 2007-07-20  Jim Meyering  <jim@meyering.net>
4681
4682         * check-module: Diagnose a self-dependency.
4683
4684 2007-07-19  Bruno Haible  <bruno@clisp.org>
4685
4686         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
4687         empty.
4688         Reported by Eric Blake.
4689
4690 2007-07-18  Bruno Haible  <bruno@clisp.org>
4691
4692         * gnulib-tool: New options --po-base, --po-domain.
4693         (func_usage): Document them.
4694         (pobase, po_domain): New variables.
4695         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
4696         DEFAULT_TEXT_DOMAIN.
4697         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
4698         (func_import): Consider pobase and po_domain. Create a po/ directory.
4699         (func_create_testdir): Set pobase and po_domain to empty.
4700         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
4701         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
4702
4703 2007-07-18  Bruno Haible  <bruno@clisp.org>
4704
4705         * gnulib-tool (func_get_automake_snippet): Synthesize also an
4706         EXTRA_DIST augmentation for files in build-aux/.
4707
4708 2007-07-16  Bruno Haible  <bruno@clisp.org>
4709
4710         * modules/lseek (License): Use the synonymous term "LGPLv2+".
4711         * modules/getdelim (License): Likewise.
4712
4713 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4714
4715         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
4716         * modules/d-type (License): Likewise.
4717         * modules/extensions (License): Likewise.
4718         * modules/fnmatch (License): Likewise.
4719         * modules/fseeko (License): Likewise.
4720         * modules/getaddrinfo (License): Likewise.
4721         * modules/getline (License): Likewise.
4722         * modules/getlogin_r (License): Likewise.
4723         * modules/getpass (License): Likewise.
4724         * modules/gettimeofday (License): Likewise.
4725         * modules/glob (License): Likewise.
4726         * modules/inet_ntop (License): Likewise.
4727         * modules/malloc (License): Likewise.
4728         * modules/malloca (License): Likewise.
4729         * modules/memmem (License): Likewise.
4730         * modules/mempcpy (License): Likewise.
4731         * modules/memset (License): Likewise.
4732         * modules/minmax (License): Likewise.
4733         * modules/mktime (License): Likewise.
4734         * modules/netinet_in (License): Likewise.
4735         * modules/pathmax (License): Likewise.
4736         * modules/poll (License): Likewise.
4737         * modules/regex (License): Likewise.
4738         * modules/snprintf (License): Likewise.
4739         * modules/stdbool (License): Likewise.
4740         * modules/stdint (License): Likewise.
4741         * modules/stdio (License): Likewise.
4742         * modules/strcase (License): Likewise.
4743         * modules/strcasestr (License): Likewise.
4744         * modules/strdup (License): Likewise.
4745         * modules/string (License): Likewise.
4746         * modules/strndup (License): Likewise.
4747         * modules/strnlen (License): Likewise.
4748         * modules/strpbrk (License): Likewise.
4749         * modules/strptime (License): Likewise.
4750         * modules/strsep (License): Likewise.
4751         * modules/sys_select (License): Likewise.
4752         * modules/sys_socket (License): Likewise.
4753         * modules/sys_stat (License): Likewise.
4754         * modules/sys_time (License): Likewise.
4755         * modules/time (License): Likewise.
4756         * modules/time_r (License): Likewise.
4757         * modules/timegm (License): Likewise.
4758         * modules/unistd (License): Likewise.
4759         * modules/vsnprintf (License): Likewise.
4760         * modules/wctype (License): Likewise.
4761
4762 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4763
4764         * modules/argz (License): LGPLv2+.
4765
4766 2007-07-15  Karl Berry  <karl@gnu.org>
4767
4768         * doc/gnulib.texi: revise node structure per new fdl.texi.
4769
4770 2007-07-14  Bruno Haible  <bruno@clisp.org>
4771
4772         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
4773         the output file.
4774         * lib/uniname/uninames.h: Regenerated.
4775
4776 2007-07-14  Karl Berry  <karl@gnu.org>
4777
4778         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
4779         omitting sectioning and index commands.
4780
4781 2007-07-13  Bruno Haible  <bruno@clisp.org>
4782
4783         New gnulib-tool option --more-symlinks.
4784         * gnulib-tool (func_usage): Document --more-symlinks.
4785         (do_copyrights): New variable.
4786         Recognize option --more-symlinks.
4787         (func_import): Don't add a copyright notice transform to
4788         sed_transform_lib_file if do_copyrights is empty.
4789
4790 2007-07-13  Bruno Haible  <bruno@clisp.org>
4791
4792         * lib/vasnprintf.c (decimal_point_char): Define also if
4793         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
4794         && !NEED_PRINTF_DIRECTIVE_A.
4795         Reported by Clemens Koller <clemens.koller@anagramm.de> via
4796         Gary V. Vaughan <gary@gnu.org>.
4797
4798 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
4799
4800         * lib/inttypes_.h: Undo previous change, since it was fixed
4801         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
4802
4803 2007-07-13  Bruno Haible  <bruno@clisp.org>
4804
4805         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
4806         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
4807
4808 2007-07-13  Jim Meyering  <jim@meyering.net>
4809
4810         df: Don't fail for Tru64's "file-on-file mount".
4811         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
4812         so we fall through and use statfs instead.  Details here:
4813         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
4814         Reported by Albert Chin.
4815
4816 2007-07-13  Bruno Haible  <bruno@clisp.org>
4817
4818         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
4819         * modules/configmake (License): Likewise.
4820         * modules/gettext (License): Likewise.
4821         * modules/gettext-h (License): Likewise.
4822         * modules/include_next (License): Likewise.
4823         * modules/link-warning (License): Likewise.
4824         * modules/localcharset (License): Likewise.
4825         * modules/localename (License): Likewise.
4826         * modules/lock (License): Likewise.
4827         * modules/relocatable-lib-lgpl (License): Likewise.
4828         * modules/size_max (License): Likewise.
4829         * modules/vasnprintf (License): Likewise.
4830         * modules/wchar (License): Likewise.
4831         * modules/xsize (License): Likewise.
4832
4833 2007-07-13  Bruno Haible  <bruno@clisp.org>
4834
4835         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
4836         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
4837
4838 2007-07-12  Bruno Haible  <bruno@clisp.org>
4839
4840         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
4841         in the modules files.
4842
4843 2007-07-11  Karl Berry  <karl@gnu.org>
4844
4845         * MODULES.html.sh (func_module): use
4846          sed -e '\|^'"${includefile}"'$|d'
4847          instead of /.../d, to avoid errors on $includefile's containing /.
4848
4849 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
4850
4851         * gnulib-tool (func_import): Avoid duplication of --avoid
4852         statements
4853         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
4854         names to `_' in variable names.
4855
4856 2007-07-10  Eric Blake  <ebb9@byu.net>
4857
4858         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
4859         * NEWS: Document this change.
4860
4861 2007-07-08  Bruno Haible  <bruno@clisp.org>
4862
4863         Update to Unicode 5.0.
4864         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
4865         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
4866         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
4867         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
4868         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
4869         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
4870         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
4871         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
4872         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
4873         U+10A3F, U+1D242..U+1D244.
4874         (nonspacing_table_ind): Update.
4875         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
4876         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
4877
4878 2007-07-08  Bruno Haible  <bruno@clisp.org>
4879
4880         Update to Unicode 5.0.
4881         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
4882         code transform. Extend the name index field of unicode_name_to_code and
4883         unicode_code_to_name from 16 to 24 bits.
4884         * lib/uniname/uniname.c (unicode_character_name,
4885         unicode_name_character): Add the range 0x12xxx to the code transform.
4886         * lib/uniname/uninames.h: Regenerated.
4887         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
4888
4889 2007-07-07  Bruno Haible  <bruno@clisp.org>
4890
4891         * modules/wcwidth-tests: New file.
4892         * tests/test-wcwidth.c: New file.
4893
4894         Work around MacOS X wcwidth() bug.
4895         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
4896         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
4897         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
4898         original wcwidth in non-UTF-8 locales.
4899         * modules/wcwidth (Depends-on): Add localcharset, streq,
4900         uniwidth/width.
4901         * doc/functions/wcwidth.texi: Update.
4902
4903 2007-07-07  Bruno Haible  <bruno@clisp.org>
4904
4905         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
4906         (wcwidth): New declaration.
4907         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
4908         macros.
4909         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
4910         here. Prepare for creating <wchar.h> unconditionally.
4911         * modules/wchar (Depends-on): Add link-warning.
4912         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
4913         REPLACE_WCWIDTH, and GL_LINK_WARNING.
4914         * lib/wcwidth.h: Remove file.
4915         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
4916         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
4917         * modules/wcwidth (Files): Remove lib/wcwidth.h.
4918         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
4919         (Include): Replace wcwidth.h with <wchar.h>.
4920         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
4921         * lib/mbchar.h: Don't include wcwidth.h.
4922         * lib/mbswidth.c: Likewise.
4923         * NEWS: Mention the change.
4924
4925 2007-07-07  Bruno Haible  <bruno@clisp.org>
4926
4927         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
4928         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
4929         definition with an external declaration.
4930         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
4931         defined as a function. Remove AC_C_INLINE requirement.
4932         * modules/wcwidth (Files): Add lib/wcwidth.c.
4933         (Makefile.am): Remove redundant statement.
4934
4935 2007-07-07  Bruno Haible  <bruno@clisp.org>
4936
4937         * MODULES.html.sh (Unicode string functions): Add the new modules.
4938
4939         * tests/uniwidth/test-u32-strwidth.c: New file.
4940         * modules/uniwidth/u32-strwidth-tests: New file.
4941
4942         * lib/uniwidth/u32-strwidth.c: New file.
4943         * modules/uniwidth/u32-strwidth: New file.
4944
4945         * tests/uniwidth/test-u16-strwidth.c: New file.
4946         * modules/uniwidth/u16-strwidth-tests: New file.
4947
4948         * lib/uniwidth/u16-strwidth.c: New file.
4949         * modules/uniwidth/u16-strwidth: New file.
4950
4951         * tests/uniwidth/test-u8-strwidth.c: New file.
4952         * modules/uniwidth/u8-strwidth-tests: New file.
4953
4954         * lib/uniwidth/u8-strwidth.c: New file.
4955         * modules/uniwidth/u8-strwidth: New file.
4956
4957         * tests/uniwidth/test-u32-width.c: New file.
4958         * modules/uniwidth/u32-width-tests: New file.
4959
4960         * lib/uniwidth/u32-width.c: New file.
4961         * modules/uniwidth/u32-width: New file.
4962
4963         * tests/uniwidth/test-u16-width.c: New file.
4964         * modules/uniwidth/u16-width-tests: New file.
4965
4966         * lib/uniwidth/u16-width.c: New file.
4967         * modules/uniwidth/u16-width: New file.
4968
4969         * tests/uniwidth/test-u8-width.c: New file.
4970         * modules/uniwidth/u8-width-tests: New file.
4971
4972         * lib/uniwidth/u8-width.c: New file.
4973         * modules/uniwidth/u8-width: New file.
4974
4975         * tests/uniwidth/test-uc_width.c: New file.
4976         * modules/uniwidth/width-tests: New file.
4977
4978         * lib/uniwidth/width.c: New file, from GNU libiconv.
4979         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
4980         * modules/uniwidth/width: New file.
4981
4982         * lib/uniwidth.h: New file, from GNU libiconv.
4983         * modules/uniwidth/base: New file.
4984
4985 2007-07-07  Bruno Haible  <bruno@clisp.org>
4986
4987         * lib/uniname.h: New file, from GNU gettext.
4988         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
4989         * lib/uniname/uninames.h: New file, from GNU gettext.
4990         * lib/uniname/uniname.c: New file, from GNU gettext.
4991         * tests/uniname/test-uninames.sh: New file.
4992         * tests/uniname/test-uninames.c: New file, from GNU gettext.
4993         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
4994         * modules/uniname/base: New file.
4995         * modules/uniname/uniname: New file.
4996         * modules/uniname/uniname-tests: New file.
4997         * MODULES.html.sh (Unicode string functions): Add the new modules.
4998
4999 2007-07-06  Bruno Haible  <bruno@clisp.org>
5000
5001         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
5002
5003 2007-07-06  Bruno Haible  <bruno@clisp.org>
5004
5005         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
5006         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
5007         includes <cygwin/sys_time.h> which includes <sys/select.h> which
5008         include <sys/time.h>.
5009         Reported by Eric Blake.
5010
5011 2007-07-06  Eric Blake  <ebb9@byu.net>
5012
5013         Fix testing canonicalize on cygwin.
5014         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
5015         Revert patch from 2007-06-19.
5016         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
5017         canonicalize module is also in use.
5018         * tests/test-canonicalize.c: New file.
5019         * tests/test-canonicalize.sh: Likewise.
5020         * modules/canonicalize-tests: Likewise.
5021
5022 2007-07-06  Jim Meyering  <jim@meyering.net>
5023
5024         * lib/getugroups.c (getugroups): Detect getgrent failure.
5025         Adjust comment to reflect reality: this function may return -1.
5026
5027 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
5028
5029         * build-aux/bootstrap (TP_URL,get_translations): Update to use
5030         the new TP address.
5031         (usage): Fix typo
5032         (gnulib_mk): New variable.
5033
5034 2007-07-05  Jim Meyering  <jim@meyering.net>
5035
5036         Don't let endgrent clobber errno, no matter how improbable.
5037         * lib/getugroups.c (getugroups): Save and restore errno around
5038         endgrent call.
5039
5040         Close the group DB even when failing with 2^31 or more members.
5041         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
5042
5043 2007-07-04  Jim Meyering  <jim@meyering.net>
5044
5045         * lib/getugroups.h: New file.
5046         * lib/getugroups.c: Include "getugroups.h".
5047         Remove uses of "register" keyword.
5048         Move local variable, "cp", down into scope where used.
5049         Give "username" parameter the "const" attribute.
5050         * modules/getugroups (Files): Add lib/getugroups.h
5051
5052 2007-07-04  Karl Berry  <karl@gnu.org>
5053
5054         * MODULES.html.sh (func_all_modules): Complete rename of
5055         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
5056
5057 2007-07-02  Bruno Haible  <bruno@clisp.org>
5058
5059         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
5060         mode, when inttypes.h comes from gnulib.
5061         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
5062
5063 2007-07-02  Simon Josefsson  <simon@josefsson.org>
5064
5065         * NEWS: Mention lgpl module name change.
5066
5067         * modules/lgpl-2.1: Renamed from lgpl.
5068
5069         * NEWS: Mention gpl module name change.
5070
5071         * modules/gpl-3.0: New file, based on gpl-2.0.
5072
5073         * modules/gpl-2.0: Renamed from gpl.
5074
5075         * modules/gpl: Fix filename, doc/gpl.texi is now found at
5076         doc/gpl-2.0.texi.
5077
5078 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5079
5080         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
5081         #define __STDC_LIMIT_MACROS temporarily while including
5082         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
5083         Problem reported by Joel E. Denny in
5084         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
5085
5086 2007-07-01  Bruno Haible  <bruno@clisp.org>
5087
5088         * lib/unistdio.h: New file.
5089         * lib/unistdio/u-asnprintf.h: New file.
5090         * lib/unistdio/u-asprintf.h: New file.
5091         * lib/unistdio/u-printf-args.c: New file.
5092         * lib/unistdio/u-printf-args.h: New file.
5093         * lib/unistdio/u-printf-parse.h: New file.
5094         * lib/unistdio/u-snprintf.h: New file.
5095         * lib/unistdio/u-sprintf.h: New file.
5096         * lib/unistdio/u-vasprintf.h: New file.
5097         * lib/unistdio/u-vsnprintf.h: New file.
5098         * lib/unistdio/u-vsprintf.h: New file.
5099         * lib/unistdio/ulc-asnprintf.c: New file.
5100         * lib/unistdio/ulc-asprintf.c: New file.
5101         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
5102         * lib/unistdio/ulc-printf-parse.c: New file.
5103         * lib/unistdio/ulc-snprintf.c: New file.
5104         * lib/unistdio/ulc-sprintf.c: New file.
5105         * lib/unistdio/ulc-vasnprintf.c: New file.
5106         * lib/unistdio/ulc-vasprintf.c: New file.
5107         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
5108         * lib/unistdio/ulc-vsnprintf.c: New file.
5109         * lib/unistdio/ulc-vsprintf.c: New file.
5110         * lib/unistdio/u8-asnprintf.c: New file.
5111         * lib/unistdio/u8-asprintf.c: New file.
5112         * lib/unistdio/u8-printf-parse.c: New file.
5113         * lib/unistdio/u8-snprintf.c: New file.
5114         * lib/unistdio/u8-sprintf.c: New file.
5115         * lib/unistdio/u8-vasnprintf.c: New file.
5116         * lib/unistdio/u8-vasprintf.c: New file.
5117         * lib/unistdio/u8-vsnprintf.c: New file.
5118         * lib/unistdio/u8-vsprintf.c: New file.
5119         * lib/unistdio/u8-u8-asnprintf.c: New file.
5120         * lib/unistdio/u8-u8-asprintf.c: New file.
5121         * lib/unistdio/u8-u8-snprintf.c: New file.
5122         * lib/unistdio/u8-u8-sprintf.c: New file.
5123         * lib/unistdio/u8-u8-vasnprintf.c: New file.
5124         * lib/unistdio/u8-u8-vasprintf.c: New file.
5125         * lib/unistdio/u8-u8-vsnprintf.c: New file.
5126         * lib/unistdio/u8-u8-vsprintf.c: New file.
5127         * lib/unistdio/u16-asnprintf.c: New file.
5128         * lib/unistdio/u16-asprintf.c: New file.
5129         * lib/unistdio/u16-printf-parse.c: New file.
5130         * lib/unistdio/u16-snprintf.c: New file.
5131         * lib/unistdio/u16-sprintf.c: New file.
5132         * lib/unistdio/u16-vasnprintf.c: New file.
5133         * lib/unistdio/u16-vasprintf.c: New file.
5134         * lib/unistdio/u16-vsnprintf.c: New file.
5135         * lib/unistdio/u16-vsprintf.c: New file.
5136         * lib/unistdio/u16-u16-asnprintf.c: New file.
5137         * lib/unistdio/u16-u16-asprintf.c: New file.
5138         * lib/unistdio/u16-u16-snprintf.c: New file.
5139         * lib/unistdio/u16-u16-sprintf.c: New file.
5140         * lib/unistdio/u16-u16-vasnprintf.c: New file.
5141         * lib/unistdio/u16-u16-vasprintf.c: New file.
5142         * lib/unistdio/u16-u16-vsnprintf.c: New file.
5143         * lib/unistdio/u16-u16-vsprintf.c: New file.
5144         * lib/unistdio/u32-asnprintf.c: New file.
5145         * lib/unistdio/u32-asprintf.c: New file.
5146         * lib/unistdio/u32-printf-parse.c: New file.
5147         * lib/unistdio/u32-snprintf.c: New file.
5148         * lib/unistdio/u32-sprintf.c: New file.
5149         * lib/unistdio/u32-vasnprintf.c: New file.
5150         * lib/unistdio/u32-vasprintf.c: New file.
5151         * lib/unistdio/u32-vsnprintf.c: New file.
5152         * lib/unistdio/u32-vsprintf.c: New file.
5153         * lib/unistdio/u32-u32-asnprintf.c: New file.
5154         * lib/unistdio/u32-u32-asprintf.c: New file.
5155         * lib/unistdio/u32-u32-snprintf.c: New file.
5156         * lib/unistdio/u32-u32-sprintf.c: New file.
5157         * lib/unistdio/u32-u32-vasnprintf.c: New file.
5158         * lib/unistdio/u32-u32-vasprintf.c: New file.
5159         * lib/unistdio/u32-u32-vsnprintf.c: New file.
5160         * lib/unistdio/u32-u32-vsprintf.c: New file.
5161         * tests/unistdio/test-ulc-asnprintf1.c: New file.
5162         * tests/unistdio/test-ulc-asnprintf1.h: New file.
5163         * tests/unistdio/test-ulc-printf1.h: New file.
5164         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
5165         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
5166         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
5167         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
5168         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
5169         * tests/unistdio/test-ulc-vasprintf1.c: New file.
5170         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
5171         * tests/unistdio/test-ulc-vsprintf1.c: New file.
5172         * tests/unistdio/test-u8-asnprintf1.c: New file.
5173         * tests/unistdio/test-u8-asnprintf1.h: New file.
5174         * tests/unistdio/test-u8-printf1.h: New file.
5175         * tests/unistdio/test-u8-vasnprintf1.c: New file.
5176         * tests/unistdio/test-u8-vasnprintf2.c: New file.
5177         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
5178         * tests/unistdio/test-u8-vasnprintf3.c: New file.
5179         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
5180         * tests/unistdio/test-u8-vasprintf1.c: New file.
5181         * tests/unistdio/test-u8-vsnprintf1.c: New file.
5182         * tests/unistdio/test-u8-vsprintf1.c: New file.
5183         * tests/unistdio/test-u16-asnprintf1.c: New file.
5184         * tests/unistdio/test-u16-asnprintf1.h: New file.
5185         * tests/unistdio/test-u16-printf1.h: New file.
5186         * tests/unistdio/test-u16-vasnprintf1.c: New file.
5187         * tests/unistdio/test-u16-vasnprintf2.c: New file.
5188         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
5189         * tests/unistdio/test-u16-vasnprintf3.c: New file.
5190         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
5191         * tests/unistdio/test-u16-vasprintf1.c: New file.
5192         * tests/unistdio/test-u16-vsnprintf1.c: New file.
5193         * tests/unistdio/test-u16-vsprintf1.c: New file.
5194         * tests/unistdio/test-u32-asnprintf1.c: New file.
5195         * tests/unistdio/test-u32-asnprintf1.h: New file.
5196         * tests/unistdio/test-u32-printf1.h: New file.
5197         * tests/unistdio/test-u32-vasnprintf1.c: New file.
5198         * tests/unistdio/test-u32-vasnprintf2.c: New file.
5199         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
5200         * tests/unistdio/test-u32-vasnprintf3.c: New file.
5201         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
5202         * tests/unistdio/test-u32-vasprintf1.c: New file.
5203         * tests/unistdio/test-u32-vsnprintf1.c: New file.
5204         * tests/unistdio/test-u32-vsprintf1.c: New file.
5205         * modules/unistdio/base: New file.
5206         * modules/unistdio/u-printf-args: New file.
5207         * modules/unistdio/ulc-asnprintf: New file.
5208         * modules/unistdio/ulc-asprintf: New file.
5209         * modules/unistdio/ulc-fprintf: New file.
5210         * modules/unistdio/ulc-printf-parse: New file.
5211         * modules/unistdio/ulc-snprintf: New file.
5212         * modules/unistdio/ulc-sprintf: New file.
5213         * modules/unistdio/ulc-vasnprintf: New file.
5214         * modules/unistdio/ulc-vasprintf: New file.
5215         * modules/unistdio/ulc-vfprintf: New file.
5216         * modules/unistdio/ulc-vsnprintf: New file.
5217         * modules/unistdio/ulc-vsprintf: New file.
5218         * modules/unistdio/u8-asnprintf: New file.
5219         * modules/unistdio/u8-asprintf: New file.
5220         * modules/unistdio/u8-printf-parse: New file.
5221         * modules/unistdio/u8-snprintf: New file.
5222         * modules/unistdio/u8-sprintf: New file.
5223         * modules/unistdio/u8-vasnprintf: New file.
5224         * modules/unistdio/u8-vasprintf: New file.
5225         * modules/unistdio/u8-vsnprintf: New file.
5226         * modules/unistdio/u8-vsprintf: New file.
5227         * modules/unistdio/u8-u8-asnprintf: New file.
5228         * modules/unistdio/u8-u8-asprintf: New file.
5229         * modules/unistdio/u8-u8-snprintf: New file.
5230         * modules/unistdio/u8-u8-sprintf: New file.
5231         * modules/unistdio/u8-u8-vasnprintf: New file.
5232         * modules/unistdio/u8-u8-vasprintf: New file.
5233         * modules/unistdio/u8-u8-vsnprintf: New file.
5234         * modules/unistdio/u8-u8-vsprintf: New file.
5235         * modules/unistdio/u16-asnprintf: New file.
5236         * modules/unistdio/u16-asprintf: New file.
5237         * modules/unistdio/u16-printf-parse: New file.
5238         * modules/unistdio/u16-snprintf: New file.
5239         * modules/unistdio/u16-sprintf: New file.
5240         * modules/unistdio/u16-vasnprintf: New file.
5241         * modules/unistdio/u16-vasprintf: New file.
5242         * modules/unistdio/u16-vsnprintf: New file.
5243         * modules/unistdio/u16-vsprintf: New file.
5244         * modules/unistdio/u16-u16-asnprintf: New file.
5245         * modules/unistdio/u16-u16-asprintf: New file.
5246         * modules/unistdio/u16-u16-snprintf: New file.
5247         * modules/unistdio/u16-u16-sprintf: New file.
5248         * modules/unistdio/u16-u16-vasnprintf: New file.
5249         * modules/unistdio/u16-u16-vasprintf: New file.
5250         * modules/unistdio/u16-u16-vsnprintf: New file.
5251         * modules/unistdio/u16-u16-vsprintf: New file.
5252         * modules/unistdio/u32-asnprintf: New file.
5253         * modules/unistdio/u32-asprintf: New file.
5254         * modules/unistdio/u32-printf-parse: New file.
5255         * modules/unistdio/u32-snprintf: New file.
5256         * modules/unistdio/u32-sprintf: New file.
5257         * modules/unistdio/u32-vasnprintf: New file.
5258         * modules/unistdio/u32-vasprintf: New file.
5259         * modules/unistdio/u32-vsnprintf: New file.
5260         * modules/unistdio/u32-vsprintf: New file.
5261         * modules/unistdio/u32-u32-asnprintf: New file.
5262         * modules/unistdio/u32-u32-asprintf: New file.
5263         * modules/unistdio/u32-u32-snprintf: New file.
5264         * modules/unistdio/u32-u32-sprintf: New file.
5265         * modules/unistdio/u32-u32-vasnprintf: New file.
5266         * modules/unistdio/u32-u32-vasprintf: New file.
5267         * modules/unistdio/u32-u32-vsnprintf: New file.
5268         * modules/unistdio/u32-u32-vsprintf: New file.
5269         * modules/unistdio/ulc-asnprintf-tests: New file.
5270         * modules/unistdio/ulc-vasnprintf-tests: New file.
5271         * modules/unistdio/ulc-vasprintf-tests: New file.
5272         * modules/unistdio/ulc-vsnprintf-tests: New file.
5273         * modules/unistdio/ulc-vsprintf-tests: New file.
5274         * modules/unistdio/u8-asnprintf-tests: New file.
5275         * modules/unistdio/u8-vasnprintf-tests: New file.
5276         * modules/unistdio/u8-vasprintf-tests: New file.
5277         * modules/unistdio/u8-vsnprintf-tests: New file.
5278         * modules/unistdio/u8-vsprintf-tests: New file.
5279         * modules/unistdio/u16-asnprintf-tests: New file.
5280         * modules/unistdio/u16-vasnprintf-tests: New file.
5281         * modules/unistdio/u16-vasprintf-tests: New file.
5282         * modules/unistdio/u16-vsnprintf-tests: New file.
5283         * modules/unistdio/u16-vsprintf-tests: New file.
5284         * modules/unistdio/u32-asnprintf-tests: New file.
5285         * modules/unistdio/u32-vasnprintf-tests: New file.
5286         * modules/unistdio/u32-vasprintf-tests: New file.
5287         * modules/unistdio/u32-vsnprintf-tests: New file.
5288         * modules/unistdio/u32-vsprintf-tests: New file.
5289         * MODULES.html.sh (Unicode string functions): Add the new modules.
5290
5291 2007-07-01  Bruno Haible  <bruno@clisp.org>
5292
5293         * lib/sprintf.c (sprintf): Limit the available length estimation,
5294         to avoid address wraparound.
5295         * lib/vsprintf.c (vsprintf): Likewise.
5296         * modules/sprintf-posix (Dependencies): Add stdint.
5297         * modules/vsprintf-posix (Dependencies): Likewise.
5298
5299 2007-07-01  Bruno Haible  <bruno@clisp.org>
5300
5301         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
5302         Windows PATH as well. Conservative double-quoting. Comments.
5303
5304 2007-07-01  Bruno Haible  <bruno@clisp.org>
5305             Eric Blake  <ebb9@byu.net>
5306             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5307
5308         * gnulib-tool (self_abspathname): Fix algorithm to cope with
5309         empty components in $PATH, denoting '.'.
5310
5311 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5312
5313         * gnulib-tool: Fix indentation.
5314         (func_create_megatestdir): Likewise.
5315         Report by Bruno Haible.
5316
5317 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5318
5319         Sync from Automake.
5320         * build-aux/gnupload: Fix shell portability issues with for loops.
5321         Report by Karl Berry.
5322
5323 2007-06-29  Simon Josefsson  <simon@josefsson.org>
5324
5325         * build-aux/maint.mk (POURL): Use translationproject.org.
5326
5327 2007-06-27  Simon Josefsson  <simon@josefsson.org>
5328             Bruno Haible  <bruno@clisp.org>
5329
5330         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
5331         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
5332         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
5333         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
5334         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
5335
5336 2007-06-27  Bruno Haible  <bruno@clisp.org>
5337
5338         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
5339         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
5340
5341 2007-06-26  Karl Berry  <karl@gnu.org>
5342
5343         * MODULES.html.sh: remove xreadlink-with-size.
5344
5345 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5346
5347         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
5348         method that I hope also handles the double-include problem noted
5349         by Bruno Haible in
5350         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
5351
5352 2007-06-23  Bruno Haible  <bruno@clisp.org>
5353
5354         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5355         Don't let the 'mostlyclean' target fail if the last subdirectory could
5356         not be removed.
5357         Reported by Karl Berry.
5358
5359 2007-06-23  Bruno Haible  <bruno@clisp.org>
5360
5361         * gnulib-tool (echo): Add a speedier workaround for ksh.
5362         * tests/test-echo.sh: Likewise.
5363
5364 2007-06-23  Bruno Haible  <bruno@clisp.org>
5365
5366         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
5367         * tests/test-echo.sh: Likewise.
5368
5369 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5370
5371         * gnulib-tool (IFS): Initialize early, so we don't set it to
5372         empty later.
5373         (self_abspathname): Rewrite algorithm to set it, reindent.
5374         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
5375         (func_create_megatestdir): Merge some sed scripts.
5376
5377 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5378
5379         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
5380         exposed by Sun Studio 11 cc on Solaris 8.
5381
5382 2007-06-22  Bruno Haible  <bruno@clisp.org>
5383
5384         * gnulib-tool (echo): Ensure the echo primitive does not interpret
5385         backslashes.
5386         * tests/test-echo.sh: New file.
5387
5388 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5389
5390         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
5391         simplify `sed_replace_build_aux' scripts, they are portable but
5392         echoing them with `echo' is not.
5393         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
5394
5395 2007-06-21  Karl Berry  <karl@gnu.org>
5396
5397         * config/srclist.txt: guess we can't handle the licenses via
5398         srclist at the moment.
5399
5400 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
5401
5402         * MODULES.html.sh: Add include_next.
5403         * modules/include_next: New file.
5404
5405 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
5406
5407         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
5408         INCLUDE_NEXT.
5409         (gl_CHECK_NEXT_HEADERS): New macro.
5410         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
5411         the obsolescent gl_ABSOLUTE_HEADER.
5412         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
5413         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
5414         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
5415         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
5416         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
5417         * m4/math_h.m4 (gl_MATH_H): Likewise.
5418         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
5419         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
5420         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
5421         * m4/stdint.m4 (gl_STDINT_H): Likewise.
5422         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
5423         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
5424         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
5425         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5426         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
5427         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
5428         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
5429         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
5430         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
5431         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
5432         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5433         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
5434         * m4/inttypes.m4 (gl_INTTYPES_H): Define
5435         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
5436         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
5437         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
5438         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
5439         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
5440         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
5441         * lib/float_.h: Likewise.
5442         * lib/inttypes_.h: Likewise.
5443         * lib/math_.h: Likewise.
5444         * lib/search_.h: Likewise.
5445         * lib/signal_.h: Likewise.
5446         * lib/stdint_.h: Likewise.
5447         * lib/stdio_.h: Likewise.
5448         * lib/stdlib_.h: Likewise.
5449         * lib/string_.h: Likewise.
5450         * lib/sys_stat_.h: Likewise.
5451         * lib/sys_time_.h: Likewise.
5452         * lib/time_.h: Likewise.
5453         * lib/unistd_.h: Likewise.
5454         * lib/wchar_.h: Likewise.
5455         * lib/wctype_.h: Likewise.
5456         * lib/dirent_.h: Likewise.
5457         * lib/iconv_.h: Likewise.
5458         * lib/locale_.h: Likewise.
5459         * lib/netinet_in_.h: Likewise.
5460         * lib/sys_select_.h: Likewise.
5461         * lib/sys_socket_.h: Likewise.
5462         * lib/sysexits_.h: Likewise.
5463         * modules/fcntl (Depends-on): Depend on include_next, not
5464         absolute_header.
5465         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
5466         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
5467         * modules/fchdir: Likewise.
5468         * modules/float: Likewise.
5469         * modules/iconv_open: Likewise.
5470         * modules/inttypes: Likewise.
5471         * modules/locale: Likewise.
5472         * modules/math: Likewise.
5473         * modules/netinet_in: Likewise.
5474         * modules/search: Likewise.
5475         * modules/signal: Likewise.
5476         * modules/stdint: Likewise.
5477         * modules/stdio: Likewise.
5478         * modules/stdlib: Likewise.
5479         * modules/string: Likewise.
5480         * modules/sys_select: Likewise.
5481         * modules/sys_socket: Likewise.
5482         * modules/sys_stat: Likewise.
5483         * modules/sys_time: Likewise.
5484         * modules/sysexits: Likewise.
5485         * modules/time: Likewise.
5486         * modules/unistd: Likewise.
5487         * modules/wchar: Likewise.
5488         * modules/wctype: Likewise.
5489         * modules/sys_stat: Change maintainer to "all".
5490         * modules/unistd: Likewise.
5491
5492 2007-06-20  Karl Berry  <karl@gnu.org>
5493
5494         * config/srclist.txt: track www changes in license files.
5495
5496 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
5497
5498         * build-aux/bootstrap: Remove stray dot.
5499         Make sure build_aux settings are honored when linking
5500         gnulib_extra_files.
5501
5502 2007-06-19  Eric Blake  <ebb9@byu.net>
5503
5504         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
5505         Allow compilation on cygwin.
5506
5507 2007-06-19  Jim Meyering  <jim@meyering.net>
5508
5509         xreadlink-with-size: Remove module.  No longer used.
5510         Ex-callers now use xreadlink or mreadlink-with-size.
5511         * modules/xreadlink-with-size: Remove module.
5512         * lib/xreadlink-with-size.c: Remove file.
5513         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
5514         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
5515         just before the function definition *is* accurate.
5516
5517         Eliminate one way canonicalize_filename_mode could exit.
5518         * lib/canonicalize.c (canonicalize_filename_mode):
5519         Use mreadlink_with_size, not xreadlink_with_size.
5520
5521 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
5522
5523         Detect porting problems to FreeBSD/arm, which has time_t wider than
5524         long int.  Original problem reported for GNU diff by Xin Li in
5525         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
5526         * modules/getdate (Depends-on): Add intprops, verify.
5527         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
5528         is an integer type no wider than long int.
5529
5530 2007-06-18  Jim Meyering  <jim@meyering.net>
5531
5532         New module: mreadlink-with-size.
5533         * MODULES.html.sh: Add mreadlink-with-size.
5534         * modules/mreadlink-with-size: New module
5535         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
5536         not xreadlink-with-size.
5537         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
5538
5539 2007-06-16  Bruno Haible  <bruno@clisp.org>
5540
5541         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
5542         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
5543         Reported by Gary V. Vaughan <gary@gnu.org>.
5544
5545 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
5546
5547         Revamp lchown so that it lives in unistd.h where it belongs.
5548         * lib/lchown.h: Remove.
5549         * lib/dirchownmod.c: Don't include lib/lchown.h.
5550         * lib/fchownat.c: Likewise.
5551         * lib/openat.c: Likewise.
5552         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
5553         does not follow symlinks.
5554         (EOPNOTSUPP): Define if not defined.
5555         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
5556         is defined to 0.
5557         (lchown): New decl.
5558         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
5559         Do not check for lchown decl.
5560         Set REPLACE_LCHOWN.
5561         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
5562         REPLACE_LCHOWN.
5563         * modules/chown: Make it clear it follows symlinks.
5564         * modules/lchown: Make it clear it doesn't follow symlinks.
5565         (Files): Remove lib/lchown.h
5566         (Depends-on): Add unistd.
5567         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
5568         (Include): Include <unistd.h>, not "lchown.h".
5569         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
5570         REPLACE_LCHOWN.
5571
5572 2007-06-15  Jim Meyering  <jim@meyering.net>
5573
5574         Change license (GPL to LGPL) of fsusage and dependents.
5575         * modules/fsusage (License): Change to LGPL.
5576         * modules/full-read (License): Likewise.
5577         * modules/full-write (License): Likewise.
5578         * modules/safe-read (License): Likewise.
5579         * modules/safe-write (License): Likewise.
5580
5581 2007-06-14  Ben Pfaff  <blp@gnu.org>
5582
5583         Missing part of allocsa -> malloca transition.
5584         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
5585         gl_MALLOCA.
5586
5587 2007-06-12  Bruno Haible  <bruno@clisp.org>
5588
5589         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
5590         to ia64, x86_64, i386.
5591         Reported by Eric Blake.
5592
5593 2007-06-12  Bruno Haible  <bruno@clisp.org>
5594
5595         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
5596         cross-compiling to x86_64.
5597
5598 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
5599
5600         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
5601         glitch reported by Ralf Wildenhues in
5602         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
5603
5604         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
5605         Vin Shelton.
5606
5607 2007-06-11  Bruno Haible  <bruno@clisp.org>
5608
5609         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
5610         replacement string.
5611         Reported by Eric Blake.
5612
5613 2007-06-10  Bruno Haible  <bruno@clisp.org>
5614
5615         Prepare vasnprintf code for use with Unicode strings.
5616         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
5617         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
5618         TYPE_U32_STRING.
5619         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
5620         a_u32_string variants.
5621         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
5622         * lib/printf-args.c: Don't include config.h and the specification
5623         header if PRINTF_FETCHARGS is already defined.
5624         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
5625         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
5626         TYPE_U16_STRING, TYPE_U32_STRING.
5627         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
5628         u16_directive, u16_directives, u32_directive, u32_directives): New
5629         types.
5630         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
5631         New declarations.
5632         * lib/printf-parse.c: Don't include config.h and the specification
5633         header if PRINTF_PARSE is already defined. Eliminate the set of
5634         parameters for WIDE_CHAR_VERSION; the user of this file must provide
5635         them now. Include c-ctype.h.
5636         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
5637         directive and CHAR_T_ONLY_ASCII.
5638         * lib/vasnprintf.c: Don't include config.h and the specification header
5639         if VASNPRINTF is already defined.
5640         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
5641         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
5642         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
5643         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
5644         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
5645         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
5646         code accordingly.
5647         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
5648         pad_ourselves also in this case, with the 'c' and 's' directives, and
5649         with a different notion of "width".
5650         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
5651
5652 2007-06-10  Bruno Haible  <bruno@clisp.org>
5653
5654         * modules/unistr/u32-mbsnlen: New file.
5655         * lib/unistr/u32-mbsnlen.c: New file.
5656
5657         * modules/unistr/u16-mbsnlen: New file.
5658         * lib/unistr/u16-mbsnlen.c: New file.
5659
5660         * modules/unistr/u8-mbsnlen: New file.
5661         * lib/unistr/u8-mbsnlen.c: New file.
5662
5663         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
5664         declarations.
5665
5666 2007-06-10  Bruno Haible  <bruno@clisp.org>
5667
5668         * lib/string_.h (mbsnlen): New declaration.
5669         * lib/mbsnlen.c: New file.
5670         * m4/mbsnlen.m4: New file.
5671         * modules/mbsnlen: New file.
5672         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
5673         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
5674         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
5675
5676 2007-06-10  Bruno Haible  <bruno@clisp.org>
5677
5678         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
5679
5680 2007-06-10  Bruno Haible  <bruno@clisp.org>
5681
5682         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
5683         * lib/mbuiter.h: Likewise.
5684
5685 2007-06-10  Bruno Haible  <bruno@clisp.org>
5686
5687         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
5688         declaration.
5689
5690 2007-06-10  Karl Berry  <karl@gnu.org>
5691
5692         * config/srclist.txt: remove gettext entries, Bruno prefers
5693         to update individually.
5694
5695 2007-06-10  Bruno Haible  <bruno@clisp.org>
5696
5697         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
5698         'maxlen'. Ensure only length + width bytes are allocated, not
5699         length + 1 + width.
5700
5701 2007-06-09  Bruno Haible  <bruno@clisp.org>
5702
5703         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
5704         (CHAR_T): Remove macro.
5705         (VASNPRINTF): Update.
5706
5707 2007-06-09  Bruno Haible  <bruno@clisp.org>
5708
5709         * MODULES.html.sh (Unicode string functions): Add the new modules.
5710
5711         * modules/uniconv/u32-conv-to-enc: New file.
5712         * lib/uniconv/u32-conv-to-enc.c: New file.
5713         * modules/uniconv/u32-conv-to-enc-tests: New file.
5714         * tests/uniconv/test-u32-conv-to-enc.c: New file.
5715
5716         * modules/uniconv/u16-conv-to-enc: New file.
5717         * lib/uniconv/u16-conv-to-enc.c: New file.
5718         * lib/uniconv/u-conv-to-enc.h: New file.
5719         * modules/uniconv/u16-conv-to-enc-tests: New file.
5720         * tests/uniconv/test-u16-conv-to-enc.c: New file.
5721
5722         * modules/uniconv/u8-conv-to-enc: New file.
5723         * lib/uniconv/u8-conv-to-enc.c: New file.
5724         * modules/uniconv/u8-conv-to-enc-tests: New file.
5725         * tests/uniconv/test-u8-conv-to-enc.c: New file.
5726
5727         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
5728         u32_conv_to_encoding): New declarations.
5729
5730 2007-06-09  Bruno Haible  <bruno@clisp.org>
5731
5732         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
5733
5734 2007-06-09  Bruno Haible  <bruno@clisp.org>
5735
5736         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
5737         * modules/malloca: Renamed from modules/allocsa, updated.
5738         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
5739         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
5740         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
5741         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
5742         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
5743         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
5744         * modules/xmalloca: Renamed from modules/xallocsa, updated.
5745         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
5746         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
5747         * modules/c-strcasestr (Depends-on): Update.
5748         * lib/c-strcasestr.c: Update.
5749         * modules/c-strstr (Depends-on): Update.
5750         * lib/c-strstr.c: Update.
5751         * modules/canonicalize-lgpl (Depends-on): Update.
5752         * lib/canonicalize-lgpl.c: Update.
5753         * modules/clean-temp (Depends-on): Update.
5754         * lib/clean-temp.c: Update.
5755         * modules/csharpcomp (Depends-on): Update.
5756         * lib/csharpcomp.c: Update.
5757         * modules/csharpexec (Depends-on): Update.
5758         * lib/csharpexec.c: Update.
5759         * modules/javacomp (Depends-on): Update.
5760         * lib/javacomp.c: Update.
5761         * modules/javaexec (Depends-on): Update.
5762         * lib/javaexec.c: Update.
5763         * modules/mbscasestr (Depends-on): Update.
5764         * lib/mbscasestr.c: Update.
5765         * modules/mbsstr (Depends-on): Update.
5766         * lib/mbsstr.c: Update.
5767         * modules/setenv (Depends-on): Update.
5768         * lib/setenv.c: Update.
5769         * modules/strcasestr (Depends-on): Update.
5770         * lib/strcasestr.c: Update.
5771         * modules/striconveha (Depends-on): Update.
5772         * lib/striconveha.c: Update.
5773         * modules/relocatable-prog-wrapper (Files): Update.
5774         * lib/relocwrapper.c: Update.
5775         * build-aux/install-reloc: Update.
5776         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
5777
5778 2007-06-08  Bruno Haible  <bruno@clisp.org>
5779
5780         Port to uClibc.
5781         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
5782         * lib/fpurge.c (fpurge): Likewise.
5783         * lib/freading.c (freading): Likewise.
5784         * lib/fseeko.c (rpl_fseeko): Likewise.
5785         * lib/fseterr.c (fseterr): Likewise.
5786         * lib/fwriting.c (fwriting): Likewise.
5787         * tests/test-fflush.c (main): Avoid a failure on uClibc.
5788
5789 2007-06-08  Bruno Haible  <bruno@clisp.org>
5790
5791         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
5792         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
5793         * modules/gettext (Files): Add m4/intlmacosx.m4.
5794
5795 2007-06-07  Bruno Haible  <bruno@clisp.org>
5796
5797         * modules/localename-tests: New file.
5798         * tests/test-localename.c: New file.
5799
5800         New module 'localename'.
5801         * lib/localename.h: New file.
5802         * lib/localename.c: New file, from GNU gettext.
5803         * m4/localename.m4: New file.
5804         * modules/localename: New file.
5805
5806 2007-06-07  Bruno Haible  <bruno@clisp.org>
5807
5808         Work around the lack of <wchar.h> on some builds of uClibc.
5809         * doc/headers/wchar.texi: Update.
5810         * lib/wchar_.h: Include <wchar.h> only if it exists.
5811         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
5812         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
5813         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
5814         doesn't exist.
5815         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
5816         * modules/mbfile (Depends-on): Add wchar.
5817         * modules/mbiter (Depends-on): Likewise.
5818         * modules/mbuiter (Depends-on): Likewise.
5819         Reported by Simon Josefsson.
5820
5821 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
5822
5823         Work around problem reported by Steven M. Schweda in
5824         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
5825         Tru64 5.1B with the Compaq compiler environment installed declares
5826         an 'isblank' function but does not define it in the C library.
5827         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
5828         * lib/regex_internal.h (isblank): Likewise.
5829         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
5830         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
5831
5832 2007-06-05  Bruno Haible  <bruno@clisp.org>
5833
5834         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
5835         ia64.
5836         * modules/printf-safe: New file.
5837         * modules/fprintf-posix (Depends-on): Add printf-safe.
5838         * modules/printf-posix (Depends-on): Likewise.
5839         * modules/snprintf-posix (Depends-on): Likewise.
5840         * modules/sprintf-posix (Depends-on): Likewise.
5841         * modules/vasnprintf-posix (Depends-on): Likewise.
5842         * modules/vasprintf-posix (Depends-on): Likewise.
5843         * modules/vfprintf-posix (Depends-on): Likewise.
5844         * modules/vprintf-posix (Depends-on): Likewise.
5845         * modules/vsnprintf-posix (Depends-on): Likewise.
5846         * modules/vsprintf-posix (Depends-on): Likewise.
5847         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
5848         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
5849         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
5850         "no" on i386, x86_64, ia64.
5851         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
5852         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
5853         on i386, x86_64, ia64.
5854         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
5855         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
5856         on i386, x86_64, ia64.
5857         * tests/test-vasnprintf-posix.c: Include float.h.
5858         (LDBL80_WORDS): New macro.
5859         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
5860         on i386, x86_64, ia64.
5861         * tests/test-vasprintf-posix.c: Include float.h.
5862         (LDBL80_WORDS): New macro.
5863         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
5864         on i386, x86_64, ia64.
5865         * tests/test-snprintf-posix.c: Include float.h.
5866         * tests/test-sprintf-posix.c: Likewise.
5867         * tests/test-vsnprintf-posix.c: Likewise.
5868         * tests/test-vsprintf-posix.c: Likewise.
5869
5870 2007-06-05  Bruno Haible  <bruno@clisp.org>
5871
5872         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
5873         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
5874         non-IEEE numbers on i386, x86_64, ia64.
5875         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
5876         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
5877         * tests/test-isnanl.h: Include float.h.
5878         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
5879
5880 2007-06-05  Bruno Haible  <bruno@clisp.org>
5881
5882         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
5883         also the %a / %A. Handle the %a / %A code before this extra handling.
5884
5885 2007-06-05  Bruno Haible  <bruno@clisp.org>
5886
5887         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
5888         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
5889
5890 2007-06-05  Bruno Haible  <bruno@clisp.org>
5891
5892         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
5893         typo in variable name.
5894
5895 2007-06-05  Eric Blake  <ebb9@byu.net>
5896
5897         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
5898         Reported by Simon Josefsson.
5899
5900 2007-06-04  Bruno Haible  <bruno@clisp.org>
5901
5902         Avoid test failures on some PowerPC platforms.
5903         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
5904         Define differently for PowerPC.
5905         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
5906         Reported by Gary V. Vaughan <gary@gnu.org>.
5907
5908 2007-06-02  Bruno Haible  <bruno@clisp.org>
5909
5910         Fix test-stdint failure on FreeBSD/ia64.
5911         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
5912         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
5913         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
5914         * doc/headers/stdint.texi: Update.
5915
5916 2007-06-01  Bruno Haible  <bruno@clisp.org>
5917
5918         * tests/test-binary-io.c (main): Pass a third argument to open().
5919         Reported by Gary V. Vaughan <gary@gnu.org>.
5920
5921 2007-06-01  Bruno Haible  <bruno@clisp.org>
5922
5923         * doc/functions/frexpl.texi: Update for mingw.
5924
5925 2007-06-01  Bruno Haible  <bruno@clisp.org>
5926
5927         * tests/test-lseek.c (main): Disable test of errno for invalid third
5928         argument.
5929         * doc/functions/lseek.texi: Update.
5930         Reported by Gary V. Vaughan <gary@gnu.org>.
5931
5932 2007-05-28  Bruno Haible  <bruno@clisp.org>
5933
5934         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
5935
5936 2007-05-31  Eric Blake  <ebb9@byu.net>
5937
5938         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
5939         cross compiling.
5940
5941 2007-05-30  Eric Blake  <ebb9@byu.net>
5942         and Bruno Haible  <bruno@clisp.org>
5943
5944         Work around mingw test failures exposed by m4-1.4.9b.
5945         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
5946         * tests/test-unistd.c: Disable uid_t and git_t tests for the
5947         moment.
5948
5949 2007-05-30  Bruno Haible  <bruno@clisp.org>
5950
5951         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
5952         assuming that they are closed. Needed on HP-UX 11.
5953
5954 2007-05-29  Bruno Haible  <bruno@clisp.org>
5955
5956         Fix a problem with #include_next.
5957         * lib/dirent_.h: Split the double-inclusion guard.
5958         * lib/fcntl_.h: Likewise.
5959         * lib/float_.h: Likewise.
5960         * lib/iconv_.h: Likewise.
5961         * lib/inttypes_.h: Likewise.
5962         * lib/locale_.h: Likewise.
5963         * lib/math_.h: Likewise.
5964         * lib/netinet_in_.h: Likewise.
5965         * lib/search_.h: Likewise.
5966         * lib/signal_.h: Likewise.
5967         * lib/stdint_.h: Likewise.
5968         * lib/stdio_.h: Likewise.
5969         * lib/stdlib_.h: Likewise.
5970         * lib/string_.h: Likewise.
5971         * lib/sys_select_.h: Likewise.
5972         * lib/sys_socket_.h: Likewise.
5973         * lib/sys_stat_.h: Likewise.
5974         * lib/sys_time_.h: Likewise.
5975         * lib/sysexits_.h: Likewise.
5976         * lib/time_.h: Likewise.
5977         * lib/unistd_.h: Likewise.
5978         * lib/wchar_.h: Likewise.
5979         * lib/wctype_.h: Likewise.
5980
5981 2007-05-29  Bruno Haible  <bruno@clisp.org>
5982
5983         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
5984         for the moment.
5985
5986 2007-05-29  Bruno Haible  <bruno@clisp.org>
5987
5988         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
5989         invocation.
5990         Reported by Eric Blake.
5991
5992 2007-05-29  Bruno Haible  <bruno@clisp.org>
5993
5994         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
5995         compiling case.
5996
5997 2007-05-29  Eric Blake  <ebb9@byu.net>
5998             Bruno Haible  <bruno@clisp.org>
5999
6000         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
6001         cross compiles.
6002
6003 2007-05-28  Eric Blake  <ebb9@byu.net>
6004
6005         * modules/closein-tests (test_closein_LDADD): Support test on
6006         cygwin with libtool.
6007
6008 2007-05-28  Bruno Haible  <bruno@clisp.org>
6009
6010         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
6011         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
6012         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
6013         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
6014         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
6015         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
6016         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
6017         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
6018         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
6019
6020 2007-05-28  Eric Blake  <ebb9@byu.net>
6021
6022         Unconditionally include <config.h> in unit tests.
6023         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
6024         * tests/test-allocsa.c, tests/test-arcfour.c,
6025         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
6026         tests/test-array_list.c, tests/test-array_oset.c,
6027         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
6028         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
6029         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
6030         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
6031         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
6032         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
6033         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
6034         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
6035         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
6036         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
6037         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
6038         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
6039         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
6040         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
6041         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
6042         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
6043         test-md5.c, test-memmem.c, test-printf-posix.c,
6044         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
6045         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
6046         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
6047         test-strcasestr.c, test-striconv.c, test-striconveh.c,
6048         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
6049         test-vasnprintf-posix2.c, test-vasnprintf.c,
6050         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
6051         test-vfprintf-posix.c, test-vprintf-posix.c,
6052         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
6053         test-xvasprintf.c: Likewise.
6054
6055 2007-05-28  Bruno Haible  <bruno@clisp.org>
6056
6057         * gnulib-tool (func_import): Remember the --with-tests command-line
6058         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
6059         Reported by Eric Blake.
6060
6061 2007-05-28  Bruno Haible  <bruno@clisp.org>
6062
6063         * modules/ftell-tests: New file.
6064         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
6065         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
6066
6067         * lib/ftell.c: New file.
6068         * modules/ftell: New file.
6069         * m4/ftell.m4: New file.
6070         * doc/functions/ftell.texi: Update.
6071         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
6072         REPLACE_FTELL.
6073         * lib/stdio_.h (rpl_ftell): New declaration.
6074         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
6075         REPLACE_FTELL.
6076
6077 2007-05-28  Eric Blake  <ebb9@byu.net>
6078
6079         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
6080
6081 2007-05-28  Bruno Haible  <bruno@clisp.org>
6082
6083         * modules/fseek-tests: New file.
6084         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
6085         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
6086
6087         * lib/fseek.c: New file.
6088         * modules/fseek: New file.
6089         * m4/fseek.m4: New file.
6090         * doc/functions/fseek.texi: Update.
6091         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
6092         REPLACE_FSEEK.
6093         * lib/stdio_.h (rpl_fseek): New declaration.
6094         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
6095         REPLACE_FSEEK.
6096
6097 2007-05-28  Bruno Haible  <bruno@clisp.org>
6098
6099         * lib/stdio_.h (fflush): More comments.
6100
6101 2007-05-28  Bruno Haible  <bruno@clisp.org>
6102
6103         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
6104         runtime test.
6105
6106 2007-05-28  Eric Blake  <ebb9@byu.net>
6107
6108         Improve lseek module.
6109         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
6110         * lib/unistd_.h (lseek): Scale back link warning message.
6111         * tests/test-lseek.c: Beef up test.
6112         * tests/test-lseek.sh: Exercise more facets of lseek.
6113         Reported by Bruno Haible.
6114
6115 2007-05-28  Bruno Haible  <bruno@clisp.org>
6116
6117         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
6118         to define.
6119
6120 2007-05-27  Bruno Haible  <bruno@clisp.org>
6121
6122         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
6123
6124 2007-05-27  Bruno Haible  <bruno@clisp.org>
6125
6126         * modules/openmp: New file.
6127         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
6128         Noah Misch.
6129
6130 2007-05-26  Bruno Haible  <bruno@clisp.org>
6131
6132         * modules/chdir-long (Depends-on): Add fchdir.
6133         * modules/chdir-safer (Depends-on): Likewise.
6134         * modules/fts (Depends-on): Likewise.
6135         * modules/fts-lgpl (Depends-on): Likewise.
6136         * modules/openat (Depends-on): Likewise.
6137         * modules/savewd (Depends-on): Likewise.
6138
6139 2007-05-24  Eric Blake  <ebb9@byu.net>
6140
6141         Fix lseek on mingw.
6142         * modules/lseek: New module.
6143         * m4/lseek.m4: New file.
6144         * lib/lseek.c: New file.
6145         * modules/lseek-tests: New file.
6146         * tests/test-lseek.c: New file.
6147         * tests/test-lseek.sh: New file.
6148         * MODULES.html.sh: Document lseek module.
6149         * modules/fflush (Depends-on): Add lseek, fseeko.
6150         * modules/fseeko (Depends-on): Likewise.
6151         * modules/ftello (Depends-on): Likewise.
6152         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
6153         broken.
6154         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
6155         broken.
6156         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
6157         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
6158         * lib/ftello.c (rpl_ftello): Likewise.
6159         * tests/test-fseeko.c (main): Test this.
6160         * tests/test-fseeko.sh: Likewise.
6161         * tests/test-ftello.c (main): Likewise.
6162         * tests/test-ftello.sh: Likewise.
6163         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
6164         implies replacing fseek.
6165         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
6166         HAVE_FTELLO.
6167         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
6168         * modules/unistd (Makefile.am): Likewise.
6169         * lib/unistd_.h (lseek): Declare a replacement.
6170         * doc/functions/lseek.texi (lseek): Document this fix.
6171         * doc/functions/fseek.texi (fseek): Likewise.
6172         * doc/functions/ftell.texi (ftell): Likewise.
6173
6174 2007-05-24  Bruno Haible  <bruno@clisp.org>
6175
6176         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
6177         in the printed representation of a NaN.
6178         * tests/test-vasprintf-posix.c (test_function): Likewise.
6179         * tests/test-snprintf-posix.h (test_function): Likewise.
6180         * tests/test-sprintf-posix.h (test_function): Likewise.
6181         Reported by Eric Blake.
6182
6183 2007-05-23  Eric Blake  <ebb9@byu.net>
6184
6185         Fix fseeko/ftello on cygwin 1.5.24.
6186         * doc/functions/fseeko.texi (fseeko): Document the fix.
6187         * doc/functions/ftello.texi (ftello): Document the fix.
6188         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
6189         * doc/functions/stdout.text (stdout): New file.
6190         * doc/functions/stderr.text (stderr): New file.
6191         * doc/gnulib.texi (Function Substitutes): Use new files.
6192         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
6193         prior to 1.7.0.
6194         * tests/test-ftello.c (main): Likewise for ftello.
6195         * tests/test-fseeko.sh: New file.
6196         * tests/test-ftello.sh: New file.
6197         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
6198         with seekable stdin.
6199         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
6200         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
6201         (gl_REPLACE_FSEEKO): New macro.
6202         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
6203         * modules/fseeko (Files): Distribute fseeko.c.
6204         * modules/ftello (Files): Distribute ftello.c.
6205         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
6206         mode.
6207         * lib/ftello.c (rpl_ftello): New file.
6208         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
6209         fseeko, ftello.
6210         (gl_STDIN_LARGE_OFFSET): New macro.
6211         * modules/stdio (Makefile.am): Perform the replacement.
6212         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
6213
6214 2007-05-23  Bruno Haible  <bruno@clisp.org>
6215
6216         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
6217         GNULIB_POSIXCHECK is defined.
6218
6219 2007-05-21  Bruno Haible  <bruno@clisp.org>
6220
6221         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
6222         Check also the output for NaN arguments. When cross-compiling, guess
6223         no on IRIX.
6224         * lib/vasnprintf.c: Update comments.
6225         * tests/test-vasnprintf-posix.c (strisnan): New function.
6226         (test_function): Use it.
6227         * tests/test-vasprintf-posix.c (strisnan): New function.
6228         (test_function): Use it.
6229         * tests/test-snprintf-posix.h (strisnan): New function.
6230         (test_function): Use it.
6231         * tests/test-sprintf-posix.h (strisnan): New function.
6232         (test_function): Use it.
6233         Reported by Eric Blake.
6234
6235 2007-05-20  Bruno Haible  <bruno@clisp.org>
6236
6237         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
6238         numbers that fails on BeOS.
6239         * doc/functions/frexpl.texi: Update.
6240
6241 2007-05-20  Jim Meyering  <jim@meyering.net>
6242
6243         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
6244         forced upon us by glibc-2.6.
6245
6246 2007-05-20  Bruno Haible  <bruno@clisp.org>
6247
6248         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
6249         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
6250         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
6251         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
6252         NEED_PRINTF_INFINITE.
6253         (is_infinitel): New function.
6254         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
6255         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
6256         gl_PREREQ_VASNPRINTF_INFINITE.
6257         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
6258         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6259         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
6260         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
6261         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
6262         gl_PREREQ_VASNPRINTF_INFINITE.
6263         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6264         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6265         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6266         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6267         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6268         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6269         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6270         * doc/functions/fprintf.texi: Update.
6271         * doc/functions/printf.texi: Update.
6272         * doc/functions/snprintf.texi: Update.
6273         * doc/functions/sprintf.texi: Update.
6274         * doc/functions/vfprintf.texi: Update.
6275         * doc/functions/vprintf.texi: Update.
6276         * doc/functions/vsnprintf.texi: Update.
6277         * doc/functions/vsprintf.texi: Update.
6278
6279 2007-05-20  Bruno Haible  <bruno@clisp.org>
6280
6281         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
6282         was not found in libc.
6283         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
6284
6285 2007-05-20  Bruno Haible  <bruno@clisp.org>
6286
6287         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
6288         printed as "-nan" instead of "nan".
6289         * tests/test-vasprintf-posix.c (test_function): Likewise.
6290         * tests/test-snprintf-posix.h (test_function): Likewise.
6291         * tests/test-sprintf-posix.h (test_function): Likewise.
6292         Needed for HP-UX 11.
6293
6294 2007-05-20  Jim Meyering  <jim@meyering.net>
6295
6296         Fix buggy test for the fchownat-deref bug.
6297         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
6298         symlink required for the run-test.  Without it, this test would
6299         always declare that fchownat doesn't work, and client code would
6300         unnecessarily use the replacement function with fixed libc.
6301         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
6302         Reported by Greg Schafer.
6303
6304 2007-05-19  Bruno Haible  <bruno@clisp.org>
6305
6306         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
6307         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
6308         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
6309         Needed for IRIX 6.5 and Solaris 2.5.1.
6310
6311 2007-05-19  Bruno Haible  <bruno@clisp.org>
6312
6313         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
6314         (test_function): Skip tests involving -0.0 on platforms where
6315         -0.0 = 0.0.
6316         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
6317         (test_function): Skip tests involving -0.0 on platforms where
6318         -0.0 = 0.0.
6319         * tests/test-snprintf-posix.h (have_minus_zero): New function.
6320         (test_function): Skip tests involving -0.0 on platforms where
6321         -0.0 = 0.0.
6322         * tests/test-sprintf-posix.h (have_minus_zero): New function.
6323         (test_function): Skip tests involving -0.0 on platforms where
6324         -0.0 = 0.0.
6325         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
6326         tests.
6327         * tests/test-printf-posix.h (test_function): Likewise.
6328         * tests/test-printf-posix.output: Remove all -0.0 related results.
6329         Needed for IRIX 6.5.
6330
6331 2007-05-19  Bruno Haible  <bruno@clisp.org>
6332
6333         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
6334         printed as "nan0x7fffffff" instead of "nan".
6335         * tests/test-vasprintf-posix.c (test_function): Likewise.
6336         * tests/test-snprintf-posix.h (test_function): Likewise.
6337         * tests/test-sprintf-posix.h (test_function): Likewise.
6338         * tests/test-fprintf-posix.h (NaN): Remove macro.
6339         (test_function): Remove all NaN related tests.
6340         * tests/test-printf-posix.h (NaN): Remove macro.
6341         (test_function): Remove all NaN related tests.
6342         * tests/test-printf-posix.output: Remove all NaN related results.
6343         Needed for IRIX 6.5.
6344
6345 2007-05-19  Bruno Haible  <bruno@clisp.org>
6346
6347         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
6348         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
6349
6350 2007-05-19  Bruno Haible  <bruno@clisp.org>
6351
6352         * lib/float_.h: New file.
6353         * m4/float_h.m4: New file.
6354         * modules/float: New file.
6355         * modules/isnanl (Dependencies): Add float.
6356         * modules/isnanl-nolibm (Dependencies): Likewise.
6357         * modules/mathl (Dependencies): Likewise.
6358         * modules/printf-frexpl (Dependencies): Likewise.
6359         * modules/signbit (Dependencies): Likewise.
6360         * modules/vasnprintf (Dependencies): Likewise.
6361         * doc/headers/float.texi: Update.
6362
6363 2007-05-19  Jim Meyering  <jim@meyering.net>
6364
6365         * lib/utimens.c (gl_futimens): Rename from futimens,
6366         now that glibc-2.6 declares futimens.
6367         * lib/utimens.h: Likewise.
6368
6369 2007-05-19  Bruno Haible  <bruno@clisp.org>
6370
6371         Avoid test failures on mingw.
6372         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
6373         * tests/test-printf-posix.sh: Likewise.
6374         * tests/test-vfprintf-posix.sh: Likewise.
6375         * tests/test-vprintf-posix.sh: Likewise.
6376
6377 2007-05-19  Bruno Haible  <bruno@clisp.org>
6378
6379         Fix *printf result for NaN, Inf, -0.0 on mingw.
6380         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
6381         * lib/vasnprintf.c: Include math.h and isnan.h.
6382         (is_infinite_or_zero): New function.
6383         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
6384         values in the %f, %F, %e, %E, %g, %G directives.
6385         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
6386         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6387         gl_PRINTF_INFINITE and test its result. Invoke
6388         gl_PREREQ_VASNPRINTF_INFINITE.
6389         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6390         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6391         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6392         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6393         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6394         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6395         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6396         * doc/functions/fprintf.texi: Update.
6397         * doc/functions/printf.texi: Update.
6398         * doc/functions/snprintf.texi: Update.
6399         * doc/functions/sprintf.texi: Update.
6400         * doc/functions/vfprintf.texi: Update.
6401         * doc/functions/vprintf.texi: Update.
6402         * doc/functions/vsnprintf.texi: Update.
6403         * doc/functions/vsprintf.texi: Update.
6404
6405 2007-05-19  Bruno Haible  <bruno@clisp.org>
6406
6407         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
6408         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
6409         Instead of multiplying with 10^k, set extra_zeroes to k.
6410         (scale10_round_long_double): Remove function.
6411
6412 2007-05-18  Bruno Haible  <bruno@clisp.org>
6413
6414         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
6415         introduced on 2007-05-06.
6416
6417 2007-05-18  Bruno Haible  <bruno@clisp.org>
6418
6419         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
6420         %g directives.
6421         * tests/test-vasprintf-posix.c (test_function): Likewise.
6422         * tests/test-snprintf-posix.h (test_function): Likewise.
6423         * tests/test-sprintf-posix.h (test_function): Likewise.
6424
6425 2007-05-18  Bruno Haible  <bruno@clisp.org>
6426
6427         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
6428         (strmatch): New function.
6429         (test_function): Test the %f directive on numbers of various exponents.
6430         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
6431         (strmatch): New function.
6432         (test_function): Test the %f directive on numbers of various exponents.
6433         * tests/test-snprintf-posix.h (strmatch): New function.
6434         (test_function): Test the %f directive on numbers of various exponents.
6435         * tests/test-sprintf-posix.h (strmatch): New function.
6436         (test_function): Test the %f directive on numbers of various exponents.
6437         * tests/test-snprintf-posix.c (SIZEOF): New macro.
6438         * tests/test-sprintf-posix.c (SIZEOF): New macro.
6439         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
6440         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
6441
6442 2007-05-18  Bruno Haible  <bruno@clisp.org>
6443
6444         Add support for 'long double' number output.
6445         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
6446         * lib/vasnprintf.c: Include math.h and float+.h.
6447         (mp_limb_t): New type.
6448         (GMP_LIMB_BITS): New macro.
6449         (mp_twolimb_t): New type.
6450         (GMP_TWOLIMB_BITS): New macro.
6451         (mpn_t): New type.
6452         (multiply, divide, convert_to_decimal, decode_long_double,
6453         scale10_round_long_double, scale10_round_decimal_long_double,
6454         floorlog10l): New functions.
6455         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
6456         for the %f, %F, %e, %E, %g, %G directives.
6457         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
6458         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6459         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
6460         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
6461         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6462         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6463         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6464         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6465         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6466         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6467         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6468         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
6469         * modules/snprintf-posix (Depends-on): Likewise.
6470         * modules/sprintf-posix (Depends-on): Likewise.
6471         * modules/vasnprintf-posix (Depends-on): Likewise.
6472         * modules/vasprintf-posix (Depends-on): Likewise.
6473         * modules/vfprintf-posix (Depends-on): Likewise.
6474         * modules/vsnprintf-posix (Depends-on): Likewise.
6475         * modules/vsprintf-posix (Depends-on): Likewise.
6476         * modules/vasnprintf (Files): Add lib/float+.h.
6477         * doc/functions/fprintf.texi: Update.
6478         * doc/functions/printf.texi: Update.
6479         * doc/functions/snprintf.texi: Update.
6480         * doc/functions/sprintf.texi: Update.
6481         * doc/functions/vfprintf.texi: Update.
6482         * doc/functions/vprintf.texi: Update.
6483         * doc/functions/vsnprintf.texi: Update.
6484         * doc/functions/vsprintf.texi: Update.
6485
6486 2007-05-18  Bruno Haible  <bruno@clisp.org>
6487
6488         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
6489
6490 2007-05-18  Bruno Haible  <bruno@clisp.org>
6491
6492         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
6493         for printing 64-bit integers. Needed for mingw.
6494
6495 2007-05-18  Bruno Haible  <bruno@clisp.org>
6496
6497         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
6498         gl_FUNC_FREXPL_WORKS.
6499         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
6500
6501 2007-05-18  Bruno Haible  <bruno@clisp.org>
6502
6503         * modules/frexpl-nolibm-tests: New file.
6504
6505         * modules/frexpl-nolibm: New file.
6506         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
6507
6508 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
6509
6510         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
6511         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
6512         GCC 4.2, which otherwise issues a lot of warnings.
6513         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
6514         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
6515         Likewise.
6516         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
6517         * modules/iconv_open (iconv.h): Likewise.
6518         * modules/locale (locale.h): Likewise.
6519         * modules/netinet_in (netinet/in.h): Likewise.
6520         * modules/sys_select (sys_select.h): Likewise.
6521         * modules/sys_socket (sys/socket.h): Likewise.
6522         * modules/sys_stat (sys/stat.h): Likewise.
6523         * modules/sysexits (sysexits.h): Likewise.
6524         * modules/unistd (unistd.h): Likewise.
6525
6526 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6527
6528         * modules/closein-tests (Makefile.am): Distribute
6529         `test-closein.sh'.
6530
6531 2007-05-17  Bruno Haible  <bruno@clisp.org>
6532
6533         * tests/test-printf-posix.output: Renamed from
6534         tests/test-fprintf-posix.out.
6535         * modules/fprintf-posix-tests: Update.
6536         * modules/printf-posix-tests: Update.
6537         * modules/vfprintf-posix-tests: Update.
6538         * modules/vprintf-posix-tests: Update.
6539         * tests/test-fprintf-posix.sh: Update.
6540         * tests/test-printf-posix.sh: Update.
6541         * tests/test-vfprintf-posix.sh: Update.
6542         * tests/test-vprintf-posix.sh: Update.
6543         Reported by Ralf Wildenhues.
6544
6545 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
6546
6547         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
6548         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
6549         GCC 4.2, which otherwise issues a lot of warnings.
6550         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
6551         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
6552         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
6553         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
6554         it should no longer be needed.
6555         * lib/string_.h: Likewise.
6556         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
6557         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
6558         * modules/inttypes (inttypes.h): Likewise.
6559         * modules/math (math.h): Likewise.
6560         * modules/search (search.h): Likewise.
6561         * modules/signal (signal.h): Likewise.
6562         * modules/stdint (stdint.h): Likewise.
6563         * modules/stdio (stdio.h): Likewise.
6564         * modules/stdlib (stdlib.h): Likewise.
6565         * modules/string (string.h): Likewise.
6566         * modules/sys_time (sys/time.h): Likewise.
6567         * modules/time (time.h): Likewise.
6568         * modules/wchar (wchar.h): Likewise.
6569         * modules/wctype (wtype.h): Likewise.
6570
6571 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
6572
6573         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
6574
6575 2007-05-13  Bruno Haible  <bruno@clisp.org>
6576
6577         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
6578         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
6579         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
6580         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6581         (gl_PREREQ_STRTOK_R): Don't require it here.
6582
6583 2007-05-13  Bruno Haible  <bruno@clisp.org>
6584
6585         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
6586         when used in C++ mode.
6587
6588 2007-05-12  Bruno Haible  <bruno@clisp.org>
6589
6590         * lib/linebuffer.h: Tweak doc.
6591         * lib/linebuffer.c: Likewise.
6592
6593 2007-05-12  James Youngman  <jay@gnu.org>
6594
6595         * lib/linebuffer.c (readlinebuffer_delim): New function,
6596         like readlinebuffer, but use a caller-specified delimiter.
6597         (readlinebuffer): Just call readlinebuffer_delim with '\n'
6598         as the delimiter.
6599         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
6600
6601 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
6602
6603         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
6604         * modules/openat (Files): Remove openat-die.c.
6605         (Depends-on): Add openat-die.
6606         * modules/openat-die: New module.
6607
6608 2007-05-06  Bruno Haible  <bruno@clisp.org>
6609
6610         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
6611         Update with info about Cygwin.
6612         * doc/functions/fprintf.texi: Update.
6613         * doc/functions/printf.texi: Update.
6614         * doc/functions/snprintf.texi: Update.
6615         * doc/functions/sprintf.texi: Update.
6616         * doc/functions/vfprintf.texi: Update.
6617         * doc/functions/vprintf.texi: Update.
6618         * doc/functions/vsnprintf.texi: Update.
6619         * doc/functions/vsprintf.texi: Update.
6620         Reported by Eric Blake.
6621
6622 2007-05-06  Bruno Haible  <bruno@clisp.org>
6623
6624         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
6625         padding ourselves for the floating-point directives.
6626         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
6627         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
6628         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
6629         gl_PRINTF_FLAG_ZERO and test its result. Invoke
6630         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
6631         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6632         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
6633         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6634         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6635         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6636         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6637         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6638         * tests/test-snprintf-posix.h (test_function): Also check the width
6639         and some flags in the %f directive.
6640         * tests/test-sprintf-posix.h (test_function): Likewise.
6641         * tests/test-vasnprintf-posix.c (test_function): Likewise.
6642         * tests/test-vasprintf-posix.c (test_function): Likewise.
6643         * doc/functions/fprintf.texi: Update.
6644         * doc/functions/printf.texi: Update.
6645         * doc/functions/snprintf.texi: Update.
6646         * doc/functions/sprintf.texi: Update.
6647         * doc/functions/vfprintf.texi: Update.
6648         * doc/functions/vprintf.texi: Update.
6649         * doc/functions/vsnprintf.texi: Update.
6650         * doc/functions/vsprintf.texi: Update.
6651
6652 2007-05-06  Bruno Haible  <bruno@clisp.org>
6653
6654         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
6655         pass the ' flag character to sprintf or snprintf.
6656         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
6657         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
6658         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
6659         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
6660         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
6661         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6662         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
6663         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6664         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6665         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6666         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6667         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6668         * tests/test-snprintf-posix.h (test_function): Also check the grouping
6669         flag.
6670         * tests/test-sprintf-posix.h (test_function): Likewise.
6671         * tests/test-vasnprintf-posix.c (test_function): Likewise.
6672         * tests/test-vasprintf-posix.c (test_function): Likewise.
6673         * doc/functions/fprintf.texi: Update.
6674         * doc/functions/printf.texi: Update.
6675         * doc/functions/snprintf.texi: Update.
6676         * doc/functions/sprintf.texi: Update.
6677         * doc/functions/vfprintf.texi: Update.
6678         * doc/functions/vprintf.texi: Update.
6679         * doc/functions/vsnprintf.texi: Update.
6680         * doc/functions/vsprintf.texi: Update.
6681
6682 2007-05-01  Bruno Haible  <bruno@clisp.org>
6683
6684         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
6685
6686 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
6687
6688         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
6689         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
6690
6691 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6692
6693         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
6694         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
6695         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
6696
6697 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
6698
6699         * lib/argp-help.c (struct hol_entry): New member `ord'.
6700         (HOL_ENTRY_PTRCMP): Use ord for comparison
6701         (hol_sort): Initialize ord.
6702
6703 2007-05-01  Bruno Haible  <bruno@clisp.org>
6704
6705         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
6706         Reported by Eric Blake.
6707         * doc/gnulib.texi (Function Substitutes): Update.
6708
6709 2007-05-01  Bruno Haible  <bruno@clisp.org>
6710
6711         * doc/functions.texi: Remove file, now redundant through
6712         doc/functions/*.texi.
6713
6714 2007-05-01  Bruno Haible  <bruno@clisp.org>
6715
6716         * modules/argp (Depends-on): Add sleep.
6717
6718 2007-05-01  Bruno Haible  <bruno@clisp.org>
6719
6720         * modules/sleep-tests: New file.
6721         * tests/test-sleep.c: New file.
6722
6723         * modules/sleep: New file.
6724         * lib/sleep.c: New file.
6725         * m4/sleep.m4: New file.
6726         * lib/unistd_.h (sleep): New declaration.
6727         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
6728         HAVE_SLEEP.
6729         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
6730         * doc/functions/sleep.texi: Document the sleep module.
6731
6732 2007-05-01  Bruno Haible  <bruno@clisp.org>
6733
6734         * lib/sigprocmask.h: Remove file.
6735         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
6736         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
6737         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
6738         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
6739         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
6740         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
6741         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
6742         HAVE_SIGSET_T as a shell variable.
6743         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
6744         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
6745         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
6746         (Depends-on): Add signal. Remove verify.
6747         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
6748         (Include): Mention <signal.h> instead of sigprocmask.h.
6749         * NEWS: Mention the change.
6750         * lib/fatal-signal.c: Don't include sigprocmask.h.
6751
6752 2007-05-01  Bruno Haible  <bruno@clisp.org>
6753
6754         * modules/signal: New file.
6755         * lib/signal_.h: New file.
6756         * m4/signal_h.m4: New file.
6757
6758 2007-05-01  Bruno Haible  <bruno@clisp.org>
6759
6760         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
6761         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
6762         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
6763         HAVE_WCTYPE_CTMP_BUG into wctype.h.
6764
6765 2007-05-01  Bruno Haible  <bruno@clisp.org>
6766
6767         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
6768         configure time.
6769         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
6770         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
6771         * modules/sys_stat (Makefile.am): Substitute their values into
6772         sys/stat.h.
6773
6774 2007-05-01  Bruno Haible  <bruno@clisp.org>
6775
6776         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
6777         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
6778         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
6779
6780 2007-05-01  Bruno Haible  <bruno@clisp.org>
6781
6782         * doc/header/assert.texi: Undo last change: don't mention the gnulib
6783         'assert' module here.
6784
6785 2007-05-01  Bruno Haible  <bruno@clisp.org>
6786
6787         * doc/functions/*.texi: New files.
6788         * doc/functions/google-ranking.txt: New file.
6789         * doc/gnulib.texi (Function Substitutes): New chapter.
6790         (ctime, inet_ntoa): Remove sections.
6791         * doc/ctime.texi: Remove file.
6792         * doc/inet_ntoa.texi: Remove file.
6793         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
6794         dependencies.
6795         (%.info): New rule, specifying a --reference-limit.
6796
6797 2007-05-01  Bruno Haible  <bruno@clisp.org>
6798
6799         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
6800
6801 2007-05-01  Bruno Haible  <bruno@clisp.org>
6802
6803         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
6804         the portability of 'mkdir' to mingw systems.
6805
6806 2007-05-01  Bruno Haible  <bruno@clisp.org>
6807
6808         * doc/headers/google-ranking.txt: New file.
6809
6810 2007-04-30  Eric Blake  <ebb9@byu.net>
6811
6812         Prefer fseeko to fseek.
6813         * modules/getpass (Depends-on): Add fseeko.
6814         * lib/getpass.c (getpass): Use fseeko, not fseek.
6815
6816 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
6817
6818         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
6819         assumes the sorting is stable, while most qsort implementations
6820         are not.  Use argument addresses to ensure they never compare as
6821         equal.
6822
6823         * tests/test-argp-2.sh (usage-indent test): Fix output
6824         (func_compare): Restore diff options
6825         * tests/test-argp.c: Restore #include "progname.h"
6826
6827 2007-04-29  Bruno Haible  <bruno@clisp.org>
6828
6829         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
6830         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
6831         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
6832         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6833         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
6834         (configure.ac): Define CHECK_SNPRINTF_POSIX.
6835         (TESTS, check_PROGRAMS): Add test-snprintf.
6836         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
6837         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
6838         (TESTS, check_PROGRAMS): Add test-vsnprintf.
6839         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
6840         assertions that fail on HP-UX, OSF/1, or IRIX.
6841         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
6842
6843 2007-04-29  Bruno Haible  <bruno@clisp.org>
6844
6845         * MODULES.html.sh (posix_functions): Remove 'contents'.
6846
6847 2007-04-29  Karl Berry  <karl@gnu.org>
6848
6849         * config/srclist.txt (gendocs_template_min): new entry.
6850
6851 2007-04-29  Bruno Haible  <bruno@clisp.org>
6852
6853         Work around fpurge bug on BSD systems.
6854         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
6855         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
6856         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
6857         fpurge to rpl_fpurge if the system already has this function.
6858         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
6859         the case where the system already has this function. Correct invariants
6860         on BSD systems.
6861         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
6862         BSD systems.
6863
6864 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
6865
6866         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
6867         proposed by Sven Verdoolaege.
6868
6869         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
6870         options.
6871         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
6872         (usage and help tests): Update
6873
6874 2007-04-29  Bruno Haible  <bruno@clisp.org>
6875
6876         * tests/test-fflush.c (main): Use a file of size 17, not 10.
6877         Print more information in case of failure. Disable a test on BeOS.
6878
6879 2007-04-29  Bruno Haible  <bruno@clisp.org>
6880
6881         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
6882         This helps debugging on systems on which no gdb is available.
6883
6884 2007-04-29  Bruno Haible  <bruno@clisp.org>
6885
6886         * lib/freading.h: Improve comments.
6887         * lib/fwriting.h: Likewise.
6888         * tests/test-freading.c (main): Don't check freading immediately after
6889         repositioning. Needed for glibc.
6890
6891 2007-04-29  Bruno Haible  <bruno@clisp.org>
6892
6893         * lib/freading.c (freading): Trivial simplification.
6894
6895 2007-04-28  Bruno Haible  <bruno@clisp.org>
6896
6897         * tests/test-fwriting.c (main): Also test the interaction between
6898         fflush and fwriting.
6899         * modules/fwriting-tests (Depends-on): Add fflush.
6900
6901         * tests/test-freading.c (main): Also test the interaction between
6902         fflush and freading.
6903         * modules/freading-tests (Depends-on): Add fflush.
6904
6905 2007-04-28  Bruno Haible  <bruno@clisp.org>
6906
6907         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
6908         fseeko and ftello.
6909         Suggested by Eric Blake.
6910
6911 2007-04-28  Jim Meyering  <jim@meyering.net>
6912
6913         Avoid false-negative in gl_STDINT_H's C99 conformance test.
6914         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
6915         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
6916
6917 2007-04-27  Eric Blake  <ebb9@byu.net>
6918
6919         * doc/headers/assert.texi (assert.h): Document assert module use.
6920
6921 2007-04-27  Bruno Haible  <bruno@clisp.org>
6922
6923         * doc/headers/*.texi: New files.
6924         * doc/gnulib.texi (Header File Substitutes): New chapter.
6925         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
6926         dependencies.
6927         (standards.info ,standards.html, standards.dvi): Update dependencies.
6928         (mostlyclean, clean): New targets.
6929
6930 2007-04-27  Bruno Haible  <bruno@clisp.org>
6931
6932         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
6933         * modules/sysexits (Files, Makefile.am): Update.
6934
6935         * lib/sys_socket_.h: Renamed from lib/socket_.h.
6936         * modules/sys_socket (Files, Makefile.am): Update.
6937
6938         * lib/sys_stat_.h: Renamed from lib/stat_.h.
6939         * modules/sys_stat (Files, Makefile.am): Update.
6940
6941 2007-04-27  Eric Blake  <ebb9@byu.net>
6942
6943         * lib/freading.h: Improve comments.
6944         * lib/fwriting.h: Likewise.
6945         * lib/fflush.c: Likewise.
6946
6947         Fix closein for mingw.
6948         * modules/closein-tests: Add tests for closein.
6949         * tests/test-closein.c: New file.
6950         * tests/test-closein.sh: Likewise.
6951         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
6952         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
6953
6954 2007-04-27  Bruno Haible  <bruno@clisp.org>
6955
6956         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
6957         version is < 6.
6958         * lib/math_.h [__DECC]: Likewise.
6959         * lib/stdio_.h [__DECC]: Likewise.
6960         * lib/stdlib_.h [__DECC]: Likewise.
6961         * lib/string_.h [__DECC]: Likewise.
6962         * lib/time_.h [__DECC]: Likewise.
6963         * lib/wchar_.h [__DECC]: Likewise.
6964         * lib/wctype_.h [__DECC]: Likewise.
6965
6966 2007-04-27  Bruno Haible  <bruno@clisp.org>
6967
6968         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
6969
6970 2007-04-27  Bruno Haible  <bruno@clisp.org>
6971
6972         * lib/fflush.c: Add comments.
6973         * modules/fpurge-tests (Depends-on): Add fflush.
6974         * modules/freadable-tests (Depends-on): Likewise.
6975         * modules/fwritable-tests (Depends-on): Likewise.
6976
6977 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
6978
6979         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
6980         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
6981         Report by Bruno Haible <bruno@clisp.org>.
6982
6983 2007-04-26  Eric Blake  <ebb9@byu.net>
6984
6985         Fix fflush on mingw.
6986         * modules/fflush (Depends-on): Add freading.
6987         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
6988         but unread data.
6989
6990 2007-04-26  Eric Blake  <ebb9@byu.net>
6991         and Bruno Haible  <bruno@clisp.org>
6992
6993         Implement freading and fwriting.
6994         * lib/freading.c: New file.
6995         * lib/freading.h: Likewise.
6996         * m4/freading.m4: Likewise.
6997         * modules/freading: Likewise.
6998         * modules/freading-tests: Likewise.
6999         * tests/test-freading.c: Likewise.
7000         * lib/fwriting.c: New file.
7001         * lib/fwriting.h: Likewise.
7002         * m4/fwriting.m4: Likewise.
7003         * modules/fwriting: Likewise.
7004         * modules/fwriting-tests: Likewise.
7005         * tests/test-fwriting.c: Likewise.
7006         * MODULES.html.sh (File stream based Input/Output): Mention them.
7007
7008 2007-04-26  Bruno Haible  <bruno@clisp.org>
7009
7010         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
7011         'long' when we assume it.
7012         Suggested by Eric Blake.
7013
7014 2007-04-26  Bruno Haible  <bruno@clisp.org>
7015
7016         Ensure fseeko, ftello are declared on glibc systems.
7017         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
7018         * modules/fseeko (configure.ac-early): Likewise.
7019         * modules/ftello (configure.ac-early): Likewise.
7020         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
7021         AC_FUNC_FSEEKO for this.
7022         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
7023         (gl_CHECK_FSEEKO): Remove macro.
7024
7025 2007-04-26  Bruno Haible  <bruno@clisp.org>
7026
7027         * tests/test-fflush.c (main): Also check the ftell result after
7028         fflush and fseek/fseeko.
7029         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
7030         file descriptor position cache in the stream.
7031         * lib/fseeko.c (rpl_fseeko): Likewise.
7032
7033 2007-04-26  Bruno Haible  <bruno@clisp.org>
7034
7035         * modules/fflush-tests (Depends-on): Add fseeko.
7036
7037 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
7038             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7039
7040         * lib/argz_.h: ensure error_t definition is obtained in same
7041         mechanism system argz.h would have.
7042         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
7043         argz facilities are known bad.  Err on the side of caution if
7044         cross-compiling.
7045
7046 2007-04-25  Eric Blake  <ebb9@byu.net>
7047
7048         * lib/fpurge.c (includes): Use stdlib.h for free.
7049         * tests/test-fflush.c (main): Also test fflush-fseeko.
7050
7051 2007-04-25  Bruno Haible  <bruno@clisp.org>
7052
7053         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
7054         * lib/fseeko.c: New file.
7055         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
7056         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
7057         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
7058         gl_FUNC_FSEEKO.
7059         (gl_FUNC_FSEEKO): Invoke it.
7060         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
7061         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
7062         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
7063
7064 2007-04-25  Bruno Haible  <bruno@clisp.org>
7065
7066         * modules/fflush (Depends-on): Add ftello.
7067
7068 2007-04-25  Bruno Haible  <bruno@clisp.org>
7069
7070         * modules/ftello-tests: New file.
7071         * tests/test-ftello.c: New file.
7072
7073         * modules/ftello: New file.
7074         * m4/ftello.m4: New file.
7075         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
7076         HAVE_FTELLO.
7077         * lib/stdio_.h (ftello): New declaration.
7078         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
7079         HAVE_FTELLO.
7080
7081 2007-04-25  Bruno Haible  <bruno@clisp.org>
7082
7083         * modules/fseeko-tests: New file.
7084         * tests/test-fseeko.c: New file.
7085
7086         * modules/fseeko: New file.
7087         * m4/fseeko.m4: New file.
7088         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
7089         HAVE_FSEEKO.
7090         * lib/stdio_.h (fseeko): New declaration.
7091         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
7092         HAVE_FSEEKO.
7093
7094 2007-04-25  Bruno Haible  <bruno@clisp.org>
7095
7096         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
7097
7098 2007-04-25  Bruno Haible  <bruno@clisp.org>
7099
7100         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
7101         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
7102         * tests/test-unistd.c: Likewise.
7103         * tests/test-fcntl.c: Likewise.
7104
7105 2007-04-23  Eric Blake  <ebb9@byu.net>
7106
7107         * lib/fflush.c: Fix missing include.
7108         Reported by Bruno Haible.
7109
7110 2007-04-23  Bruno Haible  <bruno@clisp.org>
7111
7112         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
7113         Reported by Eric Blake.
7114
7115 2007-04-23  Bruno Haible  <bruno@clisp.org>
7116
7117         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
7118
7119 2007-04-23  Bruno Haible  <bruno@clisp.org>
7120
7121         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
7122
7123 2007-04-23  Bruno Haible  <bruno@clisp.org>
7124
7125         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
7126         Needed on HP-UX 11.
7127
7128 2007-04-16  Eric Blake  <ebb9@byu.net>
7129
7130         Make fflush rely on fpurge.
7131         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
7132         open coding all variants.
7133         * modules/fflush (Depends-on): Add fpurge and unistd.
7134         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
7135         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
7136
7137         Fix --with-tests compilation on cygwin.
7138         * modules/argmatch-tests (Makefile.am): List gnulib library first
7139         in LDADD.
7140         * modules/argp-tests (Makefile.am): Likewise.
7141         * modules/array-list-tests (Makefile.am): Likewise.
7142         * modules/array-oset-tests (Makefile.am): Likewise.
7143         * modules/avltree-list-tests (Makefile.am): Likewise.
7144         * modules/avltree-oset-tests (Makefile.am): Likewise.
7145         * modules/avltreehash-list-tests (Makefile.am): Likewise.
7146         * modules/carray-list-tests (Makefile.am): Likewise.
7147         * modules/dirname-tests (Makefile.am): Likewise.
7148         * modules/frexp-tests (Makefile.am): Likewise.
7149         * modules/isnanl-tests (Makefile.am): Likewise.
7150         * modules/linked-list-tests (Makefile.am): Likewise.
7151         * modules/linkedhash-list-tests (Makefile.am): Likewise.
7152         * modules/lock-tests (Makefile.am): Likewise.
7153         * modules/rbtree-list-tests (Makefile.am): Likewise.
7154         * modules/rbtree-oset-tests (Makefile.am): Likewise.
7155         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
7156         * modules/tls-tests (Makefile.am): Likewise.
7157         * modules/tsearch-tests (Makefile.am): Likewise.
7158         * modules/xvasprintf-tests (Makefile.am): Likewise.
7159
7160         Fix fpurge for cygwin.
7161         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
7162         value.
7163         * modules/fpurge-tests (Depends-on): Clean up trash.
7164
7165 2007-04-16  Simon Josefsson  <simon@josefsson.org>
7166
7167         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
7168
7169         * m4/autobuild.m4: Re-indent.
7170
7171 2007-04-13  Bruno Haible  <bruno@clisp.org>
7172
7173         * modules/fpurge-tests: New file.
7174         * tests/test-fpurge.c: New file.
7175
7176         * modules/fpurge: New file.
7177         * lib/fpurge.h: New file.
7178         * lib/fpurge.c: New file.
7179         * m4/fpurge.m4: New file.
7180
7181 2007-04-13  Bruno Haible  <bruno@clisp.org>
7182
7183         * modules/fbufmode-tests: New file.
7184         * tests/test-fbufmode.c: New file.
7185
7186         * modules/fbufmode: New file.
7187         * lib/fbufmode.h: New file.
7188         * lib/fbufmode.c: New file.
7189         * m4/fbufmode.m4: New file.
7190
7191 2007-04-13  Bruno Haible  <bruno@clisp.org>
7192
7193         * modules/fwritable-tests: New file.
7194         * tests/test-fwritable.c: New file.
7195
7196         * modules/fwritable: New file.
7197         * lib/fwritable.h: New file.
7198         * lib/fwritable.c: New file.
7199         * m4/fwritable.m4: New file.
7200
7201 2007-04-13  Bruno Haible  <bruno@clisp.org>
7202
7203         * modules/freadable-tests: New file.
7204         * tests/test-freadable.c: New file.
7205
7206         * modules/freadable: New file.
7207         * lib/freadable.h: New file.
7208         * lib/freadable.c: New file.
7209         * m4/freadable.m4: New file.
7210
7211 2007-04-13  Bruno Haible  <bruno@clisp.org>
7212
7213         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
7214         MOSTLYCLEANFILES.
7215
7216 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7217
7218         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
7219         gzip bootstrap.conf to avoid dragging in i18n machinery.
7220         (gnulib_tool_option): Use it.
7221
7222 2007-04-13  Bruno Haible  <bruno@clisp.org>
7223
7224         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
7225         %F directives.
7226         * tests/test-vasprintf-posix.c (test_function): Likewise.
7227         * tests/test-snprintf-posix.h (test_function): Likewise.
7228         * tests/test-sprintf-posix.h (test_function): Likewise.
7229         * tests/test-fprintf-posix.h (test_function): Likewise.
7230         * tests/test-printf-posix.h (test_function): Likewise.
7231         * tests/test-fprintf-posix.out: Likewise.
7232
7233 2007-04-13  Bruno Haible  <bruno@clisp.org>
7234
7235         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
7236         * modules/tls-tests (configure.ac): Likewise.
7237         Reported by Arto C. Nirkko <anirkko@insel.ch>.
7238
7239 2007-04-13  Bruno Haible  <bruno@clisp.org>
7240
7241         * lib/tls.c (glthread_tls_get): Fix return type.
7242         Patch by Arto C. Nirkko <anirkko@insel.ch>.
7243
7244 2007-04-12  Eric Blake  <ebb9@byu.net>
7245
7246         * modules/gettime (Depends-on): Remove gettime.
7247         Reported by Dmitry V. Levin.
7248
7249 2007-04-12  Bruno Haible  <bruno@clisp.org>
7250
7251         * modules/fflush (Include): Mention <stdio.h>.
7252         * modules/strtoimax (Include): Mention <inttypes.h>.
7253         * modules/strtoumax (Include): Likewise.
7254
7255 2007-04-12  Eric Blake  <ebb9@byu.net>
7256
7257         * .cvsignore: New file.
7258         * .gitignore: Likewise.
7259
7260 2007-04-12  Bruno Haible  <bruno@clisp.org>
7261
7262         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
7263         not before, since $(LDADD) often contains libgnu.a.
7264         * modules/striconv-tests (test_striconv_LDADD): Likewise.
7265         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
7266         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
7267         Needed on Cygwin.
7268
7269 2007-04-12  Eric Blake  <ebb9@byu.net>
7270
7271         Work around glibc's failure to flush stdin on fclose.
7272         * lib/closein.c (close_stdin): Flush stdin before closing.
7273
7274         Work around glibc's failure to reset seekable stdin on exit.
7275         * modules/closein: New module.
7276         * lib/closein.c: New file.
7277         * lib/closein.h: Likewise.
7278         * m4/closein.m4: Likewise.
7279         * MODULES.html.sh (File stream based Input/Output): Document it.
7280
7281 2007-04-12  Simon Josefsson  <simon@josefsson.org>
7282
7283         * gnulib-tool: Rename generated 'autobuild' script to
7284         'do-autobuild' in --create-megatestdir output.
7285
7286         * doc/gnulib.texi (Build robot for gnulib): Fix.
7287
7288 2007-04-12  Simon Josefsson  <simon@josefsson.org>
7289
7290         * modules/sysexits (Depends-on): Add absolute-header.
7291
7292 2007-04-12  Eric Blake  <ebb9@byu.net>
7293
7294         No need to preserve errno on success.
7295         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
7296         Reported by Bruno Haible.
7297
7298 2007-04-12  Simon Josefsson  <simon@josefsson.org>
7299
7300         * MODULES.html.sh (Support for maintaining and releasing
7301         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
7302
7303 2007-04-12  Simon Josefsson  <simon@josefsson.org>
7304
7305         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
7306
7307 2007-04-12  Simon Josefsson  <simon@josefsson.org>
7308
7309         * modules/autobuild: New module.
7310
7311         * m4/autobuild.m4: New file.
7312
7313 2007-04-11  Bruno Haible  <bruno@clisp.org>
7314
7315         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
7316         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
7317         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
7318         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
7319         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
7320         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7321         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7322         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
7323         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7324         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7325         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
7326         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7327         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7328         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
7329         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7330         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7331         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
7332         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7333         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7334         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
7335         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7336         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7337         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
7338         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7339         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7340         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
7341         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
7342         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
7343         Reported by Eric Blake.
7344
7345 2007-04-11  Bruno Haible  <bruno@clisp.org>
7346
7347         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
7348
7349 2007-04-10  Bruno Haible  <bruno@clisp.org>
7350
7351         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
7352         for NaN and Infinity. Needed on FreeBSD 6.1.
7353         * tests/test-vasnprintf-posix.c (test_function): Undo last change
7354         regarding results for "%010a" of Infinity and NaN.
7355         * tests/test-vasprintf-posix.c (test_function): Likewise.
7356         * tests/test-snprintf-posix.h (test_function): Likewise.
7357         * tests/test-sprintf-posix.h (test_function): Likewise.
7358         * tests/test-fprintf-posix.h (test_function): Likewise.
7359         * tests/test-printf-posix.h (test_function): Likewise.
7360         * tests/test-fprintf-posix.out: Likewise.
7361
7362 2007-04-10  Bruno Haible  <bruno@clisp.org>
7363
7364         * modules/locale-tests: New file.
7365         * tests/test-locale.c: New file.
7366
7367         * modules/locale: New file.
7368         * lib/locale_.h: New file.
7369         * m4/locale_h.m4: New file.
7370
7371 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
7372             Bruno Haible  <bruno@clisp.org>
7373
7374         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
7375         be determined, test for availability of the copysignf, copysign,
7376         copysignl functions.
7377         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
7378         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
7379         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
7380
7381 2007-04-09  Eric Blake  <ebb9@byu.net>
7382
7383         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
7384         * modules/stdio (Makefile.am): Support fflush.
7385         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
7386         * modules/fflush: New file.
7387         * lib/fflush.c: Likewise.
7388         * m4/fflush.m4: Likewise.
7389         * modules/fflush-tests: New test.
7390         * tests/test-fflush.c: Likewise.
7391         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
7392
7393 2007-04-06  Bruno Haible  <bruno@clisp.org>
7394
7395         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
7396         (VASNPRINTF): Use signbit for faster determination whether to print a
7397         minus sign.
7398         * modules/vasnprintf (Files): Remove lib/float+.h.
7399         * modules/fprintf-posix (Depends-on): Add signbit.
7400         * modules/snprintf-posix (Depends-on): Likewise.
7401         * modules/sprintf-posix (Depends-on): Likewise.
7402         * modules/vasnprintf-posix (Depends-on): Likewise.
7403         * modules/vasprintf-posix (Depends-on): Likewise.
7404         * modules/vfprintf-posix (Depends-on): Likewise.
7405         * modules/vsnprintf-posix (Depends-on): Likewise.
7406         * modules/vsprintf-posix (Depends-on): Likewise.
7407
7408 2007-04-06  Bruno Haible  <bruno@clisp.org>
7409
7410         * tests/test-frexp.c (main): Test also the sign bit of zero results.
7411         * tests/test-frexpl.c (main): Likewise.
7412         * tests/test-ldexpl.c (main): Likewise.
7413         * modules/frexp-tests (Depends-on): Add signbit.
7414         * modules/frexpl-tests (Depdends-on): Likewise.
7415         * modules/ldexpl-tests (Depdends-on): Likewise.
7416
7417 2007-04-06  Bruno Haible  <bruno@clisp.org>
7418
7419         * modules/signbit-tests: New file.
7420         * tests/test-signbit.c: New file.
7421
7422         * modules/signbit: New file.
7423         * lib/signbitf.c: New file.
7424         * lib/signbitd.c: New file.
7425         * lib/signbitl.c: New file.
7426         * m4/signbit.m4: New file.
7427         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
7428         (signbit): New macro.
7429         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
7430         REPLACE_SIGNBIT.
7431         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
7432         REPLACE_FREXPL into math.h.
7433
7434 2007-04-06  Bruno Haible  <bruno@clisp.org>
7435
7436         * modules/isnanf-nolibm-tests: New file.
7437         * tests/test-isnanf.c: New file.
7438
7439         * modules/isnanf-nolibm: New file.
7440         * lib/isnanf.h: New file.
7441         * lib/isnanf.c: New file.
7442         * lib/isnan.c: Consider the USE_FLOAT macro.
7443         * m4/isnanf.m4: New file.
7444
7445 2007-04-06  Bruno Haible  <bruno@clisp.org>
7446
7447         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
7448         (Link): New section.
7449
7450         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
7451
7452 2007-04-06  Bruno Haible  <bruno@clisp.org>
7453
7454         Assume the 'long double' type.
7455         * m4/longdouble.m4: Remove file.
7456         * config/srclist.txt: Don't mention longdouble.m4.
7457         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
7458         * lib/float+.h: Likewise.
7459         * lib/frexp.c: Likewise.
7460         * lib/printf-args.h: Likewise.
7461         * lib/printf-args.c: Likewise.
7462         * lib/printf-frexp.c: Likewise.
7463         * lib/printf-parse.c: Likewise.
7464         * lib/vasnprintf.c: Likewise.
7465         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
7466         * m4/intl.m4: Likewise.
7467         * m4/isnanl.m4: Likewise.
7468         * m4/printf.m4: Likewise.
7469         * m4/printf-frexpl.m4: Likewise.
7470         * m4/vasnprintf.m4: Likewise.
7471         * modules/allocsa (Files): Remove m4/longdouble.m4.
7472         * modules/gettext (Files): Likewise.
7473         * modules/relocatable-prog-wrapper (Files): Likewise.
7474         * modules/vasnprintf (Files): Likewise.
7475         * modules/isnanl (Files): Likewise.
7476         (Include): Simplify.
7477         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
7478         (Include): Simplify.
7479         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
7480         (Include): Simplify.
7481         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
7482         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7483         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
7484         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7485         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
7486         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7487         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
7488         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7489         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
7490         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7491         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
7492         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
7493         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
7494         * tests/test-isnanl.c: Likewise.
7495         * tests/test-snprintf-posix.h: Likewise.
7496         * tests/test-sprintf-posix.h: Likewise.
7497         * tests/test-vasnprintf-posix.c: Likewise.
7498         * tests/test-vasnprintf-posix2.c: Likewise.
7499         * tests/test-vasprintf-posix.c: Likewise.
7500
7501 2007-04-06  Bruno Haible  <bruno@clisp.org>
7502
7503         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
7504         * lib/math_.h [__DECC]: Include the overridden include file through
7505         #include_next, outside the double-inclusion guard.
7506         * lib/stdio_.h [__DECC]: Likewise.
7507         * lib/stdlib_.h [__DECC]: Likewise.
7508         * lib/string_.h [__DECC]: Likewise.
7509         * lib/time_.h [__DECC]: Likewise.
7510         * lib/wchar_.h [__DECC]: Likewise.
7511         * lib/wctype_.h [__DECC]: Likewise.
7512         * lib/inttypes_.h [__DECC]: Likewise.
7513         Reported by Albert Chin <china@thewrittenword.com> in
7514         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
7515
7516 2007-04-04  Eric Blake  <ebb9@byu.net>
7517
7518         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
7519         1.5.x.
7520
7521 2007-04-04  Bruno Haible  <bruno@clisp.org>
7522
7523         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
7524         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
7525
7526 2007-04-04  Bruno Haible  <bruno@clisp.org>
7527
7528         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
7529         results for "%010a" of Infinity and NaN.
7530         * tests/test-vasprintf-posix.c (test_function): Likewise.
7531         * tests/test-snprintf-posix.h (test_function): Likewise.
7532         * tests/test-sprintf-posix.h (test_function): Likewise.
7533         * tests/test-fprintf-posix.h (test_function): Remove these tests.
7534         * tests/test-printf-posix.h (test_function): Likewise.
7535         * tests/test-fprintf-posix.out: Update.
7536         Needed for FreeBSD 6.1.
7537
7538 2007-04-04  Bruno Haible  <bruno@clisp.org>
7539
7540         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
7541         directly used by the gnulib modules nor by gnulib-tool.
7542
7543 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
7544
7545         * DEPENDENCIES: Give overall description of version dependency
7546         desirability.  Use more-typical names for apps.
7547         Add shell, coreutils, diffutils, grep, tar, gzip.
7548
7549 2007-04-04  Simon Josefsson  <simon@josefsson.org>
7550
7551         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
7552
7553 2007-04-04  Karl Berry  <karl@gnu.org>
7554
7555         * MODULES.html.sh (func_module): missing '.
7556
7557 2007-04-03  Bruno Haible  <bruno@clisp.org>
7558
7559         * modules/argmatch-tests (Makefile.am): New variable
7560         test_argmatch_LDADD.
7561         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
7562         * modules/array-list-tests (Makefile.am): New variable
7563         test_array_list_LDADD.
7564         * modules/array-oset-tests (Makefile.am): New variable
7565         test_array_oset_LDADD.
7566         * modules/avltree-list-tests (Makefile.am): New variable
7567         test_avltree_list_LDADD.
7568         * modules/avltree-oset-tests (Makefile.am): New variable
7569         test_avltree_oset_LDADD.
7570         * modules/avltreehash-list-tests (Makefile.am): New variable
7571         test_avltreehash_list_LDADD.
7572         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
7573         test_canonicalize_lgpl_LDADD.
7574         * modules/carray-list-tests (Makefile.am): New variable
7575         test_carray_list_LDADD.
7576         * modules/dirname-tests (Makefile.am): New variable
7577         test_dirname_LDADD.
7578         * modules/linked-list-tests (Makefile.am): New variable
7579         test_linked_list_LDADD.
7580         * modules/linkedhash-list-tests (Makefile.am): New variable
7581         test_linkedhash_list_LDADD.
7582         * modules/rbtree-list-tests (Makefile.am): New variable
7583         test_rbtree_list_LDADD.
7584         * modules/rbtree-oset-tests (Makefile.am): New variable
7585         test_rbtree_oset_LDADD.
7586         * modules/rbtreehash-list-tests (Makefile.am): New variable
7587         test_rbtreehash_list_LDADD.
7588         * modules/xvasprintf-tests (Makefile.am): New variable
7589         test_xvasprintf_LDADD.
7590         Reported by Eric Blake.
7591
7592 2007-04-03  Eric Blake  <ebb9@byu.net>
7593
7594         * DEPENDENCIES: Weaken m4 requirements.
7595
7596 2007-04-03  Bruno Haible  <bruno@clisp.org>
7597
7598         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
7599         * modules/isnanl-tests (configure.ac): Likewise.
7600
7601 2007-04-03  Ben Pfaff  <blp@gnu.org>
7602
7603         * modules/iconv_open: Add $(srcdir)/ to source directory
7604         references in Makefile fragments that call gperf, to fix VPATH
7605         builds.
7606
7607 2007-04-03  Bruno Haible  <bruno@clisp.org>
7608
7609         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
7610         * lib/ldexpl.c: Undo last change.
7611
7612 2007-04-03  Bruno Haible  <bruno@clisp.org>
7613
7614         * modules/printf-frexpl (Depends-on): Undo last change.
7615         (Files): Add m4/ldexpl.m4.
7616
7617 2007-04-03  Bruno Haible  <bruno@clisp.org>
7618
7619         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
7620         * modules/isnanl (Link): New section.
7621
7622         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
7623         * modules/frexp (Link): New section.
7624
7625         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
7626         * modules/frexpl (Link): New section.
7627
7628         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
7629         * modules/ldexpl (Link): New section.
7630
7631 2007-04-03  Bruno Haible  <bruno@clisp.org>
7632
7633         * modules/TEMPLATE-EXTENDED: New file.
7634         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
7635
7636 2007-04-03  Bruno Haible  <bruno@clisp.org>
7637
7638         * DEPENDENCIES: New file.
7639         Suggested by Simon Josefsson.
7640
7641 2007-04-03  Bruno Haible  <bruno@clisp.org>
7642
7643         * doc/gnulib.texi: Escape @.
7644
7645 2007-04-03  James Youngman  <jay@gnu.org>
7646         and Paul Eggert  <eggert@cs.ucla.edu>
7647
7648         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
7649         birthtime on all systems that have birthtime, not just those which
7650         use st_birthtimensec rather than st_birthtim.  Putting zero in
7651         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
7652         that the birth time is not available for files on an NFS mount.
7653
7654 2007-04-03  Simon Josefsson  <simon@josefsson.org>
7655
7656         * modules/memxor: Move back from crypto/, suggested by Bruno.
7657         * modules/crypto/hmac-sha1: Fix memxor dependency.
7658
7659         * modules/crypto/gc: Moved from ../.
7660
7661 2007-04-02  Eric Blake  <ebb9@byu.net>
7662
7663         * lib/ldexpl.c (includes): Avoid libm.
7664
7665         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
7666
7667 2007-04-02  Bruno Haible  <bruno@clisp.org>
7668
7669         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
7670         on IRIX.
7671
7672 2007-04-02  Bruno Haible  <bruno@clisp.org>
7673
7674         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
7675         x86 or x86_64 platforms running MacOS X.
7676         Reported by Ryan Schmidt <@ryandesign.com>.
7677
7678 2007-04-02  Bruno Haible  <bruno@clisp.org>
7679
7680         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
7681         i386.
7682
7683 2007-04-01  Simon Josefsson  <simon@josefsson.org>
7684
7685         * modules/crypto/arcfour: Moved from ../.
7686         * modules/crypto/arcfour-tests: Moved from ../.
7687         * modules/crypto/arctwo: Moved from ../.
7688         * modules/crypto/arctwo-tests: Moved from ../.
7689         * modules/crypto/des: Moved from ../.
7690         * modules/crypto/des-tests: Moved from ../.
7691         * modules/crypto/gc-arcfour: Moved from ../.
7692         * modules/crypto/gc-arcfour-tests: Moved from ../.
7693         * modules/crypto/gc-arctwo: Moved from ../.
7694         * modules/crypto/gc-arctwo-tests: Moved from ../.
7695         * modules/crypto/gc-des: Moved from ../.
7696         * modules/crypto/gc-des-tests: Moved from ../.
7697         * modules/crypto/gc-hmac-md5: Moved from ../.
7698         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
7699         * modules/crypto/gc-hmac-sha1: Moved from ../.
7700         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
7701         * modules/crypto/gc-md2: Moved from ../.
7702         * modules/crypto/gc-md2-tests: Moved from ../.
7703         * modules/crypto/gc-md4: Moved from ../.
7704         * modules/crypto/gc-md4-tests: Moved from ../.
7705         * modules/crypto/gc-md5: Moved from ../.
7706         * modules/crypto/gc-md5-tests: Moved from ../.
7707         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
7708         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
7709         * modules/crypto/gc-random: Moved from ../.
7710         * modules/crypto/gc-rijndael: Moved from ../.
7711         * modules/crypto/gc-rijndael-tests: Moved from ../.
7712         * modules/crypto/gc-sha1: Moved from ../.
7713         * modules/crypto/gc-sha1-tests: Moved from ../.
7714         * modules/crypto/gc-tests: Moved from ../.
7715         * modules/crypto/hmac-md5: Moved from ../.
7716         * modules/crypto/hmac-md5-tests: Moved from ../.
7717         * modules/crypto/hmac-sha1: Moved from ../.
7718         * modules/crypto/hmac-sha1-tests: Moved from ../.
7719         * modules/crypto/md2: Moved from ../.
7720         * modules/crypto/md2-tests: Moved from ../.
7721         * modules/crypto/md4: Moved from ../.
7722         * modules/crypto/md4-tests: Moved from ../.
7723         * modules/crypto/md5: Moved from ../.
7724         * modules/crypto/md5-tests: Moved from ../.
7725         * modules/crypto/memxor: Moved from ../.
7726         * modules/crypto/rijndael: Moved from ../.
7727         * modules/crypto/rijndael-tests: Moved from ../.
7728         * modules/crypto/sha1: Moved from ../.
7729
7730 2007-03-30  James Youngman  <jay@gnu.org>
7731
7732         * tests/test-stat-time.c (prepare_test): use chmod() rather than
7733         rename() to change the ctime of a file (because ctime is unaffected
7734         by rename on jfs2 on AIX 5.1).
7735         (main): Start by doing cleanup, in case a previous run failed leaving
7736         test files behind.
7737
7738 2007-03-31  Bruno Haible  <bruno@clisp.org>
7739
7740         Support old proprietary implementations of iconv.
7741         * modules/iconv_open: New file.
7742         * lib/iconv_.h: New file.
7743         * m4/iconv_h.m4: New file.
7744         * lib/iconv_open.c: New file.
7745         * lib/iconv_open-aix.gperf: New file.
7746         * lib/iconv_open-hpux.gperf: New file.
7747         * lib/iconv_open-irix.gperf: New file.
7748         * lib/iconv_open-osf.gperf: New file.
7749         * m4/iconv_open.m4: New file.
7750         * modules/linebreak (Depends-on): Add iconv_open.
7751         * modules/striconv (Depends-on): Likewise.
7752         * modules/striconveh (Depends-on): Likewise.
7753         * modules/unicodeio (Depends-on): Likewise.
7754         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
7755         (iconv_t)(-1).
7756         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
7757         conversion if cd is (iconv_t)(-1).
7758         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
7759         is not possible.
7760
7761 2007-03-31  Bruno Haible  <bruno@clisp.org>
7762
7763         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
7764         work on Solaris either. Protect also second use of "autodetect_jp".
7765
7766 2007-03-31  Bruno Haible  <bruno@clisp.org>
7767
7768         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
7769         the function is not present.
7770
7771 2007-03-31  Bruno Haible  <bruno@clisp.org>
7772
7773         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
7774         the function is not present.
7775
7776 2007-03-31  Bruno Haible  <bruno@clisp.org>
7777
7778         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
7779         a bug in HP-UX iconv_open().
7780
7781 2007-03-31  Bruno Haible  <bruno@clisp.org>
7782
7783         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
7784         (Mathematics <math.h>): New section, add fpieee.
7785         (Input/output <stdio.h>): Add fseterr.
7786         (Mathematics <math.h>): New section, add printf-frexp.
7787         (Container data structures): Add sublist.
7788         (Core language properties): Add fpucw, inline.
7789         (Functions for greatest-width integer types <inttypes.h>): Add
7790         imaxabs, imaxdiv, inttypes.
7791         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
7792         isnanl-nolibm, ldexp.
7793         (Mathematics <math.h>): New section, add printf-frexpl.
7794         (Support for systems lacking POSIX:2001): Add fprintf-posix,
7795         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
7796         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
7797         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
7798         (Unicode string functions): Add unistr/u*-mbtoucr.
7799         (Java): Add javacomp-script, javaexec-script.
7800         (C#): Add csharpcomp-script, csharpexec-script.
7801         (Support for building libraries and executables): Add havelib,
7802         relocatable-*.
7803         (Support for maintaining and releasing projects): Renamed from
7804         'Support for maintaining and release projects'. Add announce-gen.
7805
7806 2007-03-31  Bruno Haible  <bruno@clisp.org>
7807
7808         * README: Talk primarily about git.
7809         (git and CVS): Renamed from CVS.
7810         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
7811         gnulib is available through git.
7812         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
7813
7814 2007-03-30  Bruno Haible  <bruno@clisp.org>
7815
7816         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
7817         * lib/poll_.h: Likewise.
7818         * lib/stat_.h: Likewise.
7819         * lib/sys_time_.h: Likewise.
7820         * lib/sysexit_.h: Likewise.
7821         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
7822         * lib/stdbool_.h: Likewise.
7823         * lib/byteswap_.h: Add double-inclusion guard.
7824
7825 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
7826
7827         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
7828
7829 2007-03-30  Karl Berry  <karl@gnu.org>
7830
7831         * config/srclist-update: double space after USA in the license
7832         substitution, since that's how it's usually (?) written.
7833
7834 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
7835
7836         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
7837         reported by Bruno Haible.
7838
7839 2007-03-29  Bruno Haible  <bruno@clisp.org>
7840
7841         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
7842         a bug in AIX iconv().
7843
7844 2007-03-29  Bruno Haible  <bruno@clisp.org>
7845
7846         * modules/ldexpl-tests: New file.
7847         * tests/test-ldexpl.c: New file.
7848
7849 2007-03-29  Bruno Haible  <bruno@clisp.org>
7850
7851         * lib/ldexpl.c: Include fpucw.h.
7852         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
7853         multiplication.
7854         * modules/ldexpl (Depends-on): Add fpucw.
7855
7856 2007-03-29  Bruno Haible  <bruno@clisp.org>
7857
7858         * modules/ldexpl: New file.
7859         * m4/ldexpl.m4: New file.
7860         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
7861         set.
7862         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
7863         REPLACE_LDEXPL.
7864         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
7865         REPLACE_LDEXPL.
7866         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
7867         gl_FUNC_LDEXPL_WORKS.
7868         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
7869         * modules/mathl (Files): Remove lib/ldexpl.c.
7870         (Depends-on): Add ldexpl.
7871
7872 2007-03-29  Bruno Haible  <bruno@clisp.org>
7873
7874         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
7875
7876 2007-03-29  Bruno Haible  <bruno@clisp.org>
7877
7878         * tests/test-striconveh.c (main): Don't assume that a direct conversion
7879         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
7880         and possibly also HP-UX.
7881         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
7882         work on AIX, IRIX, HP-UX, OSF/1.
7883         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
7884         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
7885         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
7886         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
7887         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
7888         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
7889
7890 2007-03-29  Bruno Haible  <bruno@clisp.org>
7891
7892         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
7893
7894 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
7895
7896         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
7897         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
7898
7899 2007-03-29  Eric Blake  <ebb9@byu.net>
7900
7901         * lib/acl-internal.h: Remove redundant include.
7902         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
7903         Cygwin when a file is locked.
7904
7905 2007-03-29  Bruno Haible  <bruno@clisp.org>
7906
7907         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
7908         file.
7909         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
7910
7911 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
7912
7913         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
7914         try to remove a parent directory if the child couldn't be removed
7915         (except for the first rmdir, which could fail because the child
7916         doesn't exist).  Problem reported by Jeff Blaine in
7917         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
7918
7919 2007-03-28  Bruno Haible  <bruno@clisp.org>
7920
7921         * lib/striconveh.c (utf8conv_carefully): New function.
7922         (mem_cd_iconveh_internal): Invoke it.
7923
7924 2007-03-28  Bruno Haible  <bruno@clisp.org>
7925
7926         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
7927         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
7928         input.
7929         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
7930         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
7931         unistr/u8-uctomb.
7932
7933 2007-03-28  Bruno Haible  <bruno@clisp.org>
7934
7935         * modules/unistr/u8-mbtoucr: New file.
7936         * lib/unistr/u8-mbtoucr.c: New file.
7937         * modules/unistr/u16-mbtoucr: New file.
7938         * lib/unistr/u16-mbtoucr.c: New file.
7939         * modules/unistr/u16-mbtoucr: New file.
7940         * lib/unistr/u16-mbtoucr.c: New file.
7941         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
7942
7943 2007-03-27  Simon Josefsson  <simon@josefsson.org>
7944             Bruno Haible  <bruno@clisp.org>
7945
7946         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
7947         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
7948         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
7949
7950         * m4/stdio_h.m4: Add stubs for vasprintf too.
7951
7952         * modules/stdio: Support vasprintf in sed command.
7953
7954         * modules/vasprintf: Depend on stdio for prototypes.  Remove
7955         vasprintf.h.  Add stdio module indicator.
7956
7957         * lib/stdio_.h: Declare asprintf and vasprintf, based on
7958         vasprintf.h.
7959
7960         * lib/vasprintf.h: File removed.
7961
7962         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
7963         * lib/vasprintf.c: Ditto.
7964         * lib/xvasprintf.c: Ditto.
7965         * tests/test-vasprintf-posix.c: Ditto.
7966         * tests/test-vasprintf.c: Ditto.
7967
7968 2007-03-27  Bruno Haible  <bruno@clisp.org>
7969
7970         Make vasnprintf multithread-safe.
7971         * lib/vasnprintf.c (decimal_point_char): New function.
7972         (VASNPRINTF): Use it.
7973         Suggested by Simon Josefsson.
7974
7975 2007-03-27  Eric Blake  <ebb9@byu.net>
7976
7977         Support sub-second birthtime on cygwin.
7978         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
7979         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
7980         (get_stat_birthtime): Also work with st_birthtim.
7981
7982 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
7983
7984         * lib/stat-time.h (USE_BIRTHTIME): Remove.
7985         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
7986         (get_stat_birthtime_ns): Do not try to use "spare" fields.
7987         (get_stat_birthtime_ns): Simplify compile-time tests.
7988         (get_stat_birthtime): Change the API to look like
7989         get_stat_mtime etc., except return a negative tv_nsec on error.
7990         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
7991         Don't check for "spare" fields.
7992         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
7993         or for struct stat.st_birthtime, as these tests aren't used.
7994         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
7995
7996 2007-03-27  Bruno Haible  <bruno@clisp.org>
7997
7998         * lib/stat-time.h: Include <sys/stat.h>.
7999
8000 2007-03-27  James Youngman  <jay@gnu.org>
8001
8002         * lib/stat-time.h (get_stat_birthtime): New function for
8003           retrieving st_birthtime as provided by UFS2 (hence *BSD).
8004         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
8005           and its variants.
8006         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
8007         * modules/stat-time-test: New file.
8008         * tests/test-stat-time.c: New test, devised by Bruno Haible.
8009
8010 2007-03-26  Bruno Haible  <bruno@clisp.org>
8011
8012         Better support of signalling NaNs.
8013         * lib/atanl.c: Include isnanl.h.
8014         (atanl): Perform test for NaN at the beginning of the function and
8015         through a call to isnanl.
8016         * lib/cosl.c: Include isnanl.h.
8017         (cosl): Perform test for NaN at the beginning of the function and
8018         through a call to isnanl.
8019         * lib/ldexpl.c: Include isnanl.h.
8020         (ldexpl): Perform test for NaN through a call to isnanl.
8021         * lib/logl.c: Include isnanl.h.
8022         (logl): Perform test for NaN at the beginning of the function and
8023         through a call to isnanl.
8024         * lib/sinl.c: Include isnanl.h.
8025         (sinl): Perform test for NaN at the beginning of the function and
8026         through a call to isnanl.
8027         * lib/sqrtl.c: Include isnanl.h.
8028         (sqrtl): Perform test for NaN at the beginning of the function and
8029         through a call to isnanl.
8030         * lib/tanl.c: Include isnanl.h.
8031         (tanl): Perform test for NaN at the beginning of the function and
8032         through a call to isnanl.
8033         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
8034         * modules/mathl (Depends-on): Add isnanl.
8035
8036 2007-03-26  Eric Blake  <ebb9@byu.net>
8037
8038         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
8039         regression in logic sense of previous patch.
8040
8041 2007-03-26  Bruno Haible  <bruno@clisp.org>
8042
8043         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
8044         unportable shell command "if ! ...".
8045         Reported by Ralf Wildenhues.
8046
8047 2007-03-25  Bruno Haible  <bruno@clisp.org>
8048
8049         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
8050         <sysexits.h> file, and only add EX_CONFIG.
8051         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
8052         absolute file name and whether it is sufficient. Substitute also
8053         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
8054         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
8055         ABSOLUTE_SYSEXITS_H into sysexits.h.
8056
8057 2007-03-25  Bruno Haible  <bruno@clisp.org>
8058
8059         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
8060         hints is NULL.
8061
8062 2007-03-25  Bruno Haible  <bruno@clisp.org>
8063
8064         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
8065         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
8066
8067 2007-03-25  Bruno Haible  <bruno@clisp.org>
8068
8069         * lib/vasnprintf.c: Include langinfo.h.
8070         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
8071         multithread-safe.
8072         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
8073         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
8074         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8075         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8076         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8077         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8078         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8079         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
8080         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8081         Reported by Simon Josefsson.
8082
8083 2007-03-25  Bruno Haible  <bruno@clisp.org>
8084
8085         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
8086         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
8087         * modules/vasnprintf (Depends-on): Add stdint.
8088
8089 2007-03-25  Bruno Haible  <bruno@clisp.org>
8090
8091         * modules/fpieee: New file.
8092         * m4/fpieee.m4: New file.
8093         * modules/isnan-nolibm (Depends-on): Add fpieee.
8094         * modules/isnanl-nolibm (Depends-on): Add fpieee.
8095         * modules/isnanl (Depends-on): Add fpieee.
8096
8097 2007-03-25  Bruno Haible  <bruno@clisp.org>
8098
8099         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
8100
8101 2007-03-25  Bruno Haible  <bruno@clisp.org>
8102
8103         Avoid test failures on IRIX 6.5.
8104         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
8105         (main): Use it.
8106         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
8107         macros.
8108         (main): Use them.
8109
8110 2007-03-25  Bruno Haible  <bruno@clisp.org>
8111
8112         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
8113         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
8114         exists but doesn't work.
8115         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
8116         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
8117         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
8118         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
8119
8120 2007-03-25  Bruno Haible  <bruno@clisp.org>
8121
8122         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
8123         returns inf. Needed on IRIX 6.5.
8124
8125 2007-03-25  Bruno Haible  <bruno@clisp.org>
8126
8127         * tests/test-frexpl.c: Include isnanl-nolibm.h.
8128         (main): Use isnanl instead of x != x idiom.
8129         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
8130
8131         * tests/test-frexp.c: Include isnan.h.
8132         (main): Use isnan instead of x != x idiom.
8133         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
8134
8135 2007-03-25  Bruno Haible  <bruno@clisp.org>
8136
8137         * tests/test-frexp.c (NaN): New function/macro.
8138         (main): Use it instead of 0.0 / 0.0.
8139         * tests/test-isnan.c (NaN): New function/macro.
8140         (main): Use it instead of 0.0 / 0.0.
8141         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
8142         (test_function): Use it instead of 0.0 / 0.0.
8143         * tests/test-vasprintf-posix.c (NaN): New function/macro.
8144         (test_function): Use it instead of 0.0 / 0.0.
8145         * tests/test-snprintf-posix.h (NaN): New function/macro.
8146         (test_function): Use it instead of 0.0 / 0.0.
8147         * tests/test-sprintf-posix.h (NaN): New function/macro.
8148         (test_function): Use it instead of 0.0 / 0.0.
8149         * tests/test-fprintf-posix.h (NaN): New function/macro.
8150         (test_function): Use it instead of 0.0 / 0.0.
8151         * tests/test-printf-posix.h (NaN): New function/macro.
8152         (test_function): Use it instead of 0.0 / 0.0.
8153
8154         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
8155
8156 2007-03-25  Bruno Haible  <bruno@clisp.org>
8157
8158         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
8159
8160 2007-03-25  Bruno Haible  <bruno@clisp.org>
8161
8162         * lib/regexec.c (merge_state_with_log): Make static.
8163
8164 2007-03-25  Bruno Haible  <bruno@clisp.org>
8165
8166         * lib/trigl.c (kernel_rem_pio2): Make static.
8167
8168 2007-03-25  Bruno Haible  <bruno@clisp.org>
8169
8170         * lib/sincosl.c (sincosl_table): Make static.
8171
8172 2007-03-25  Bruno Haible  <bruno@clisp.org>
8173
8174         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
8175         if the compiler does not support C99.
8176
8177 2007-03-25  Bruno Haible  <bruno@clisp.org>
8178
8179         * modules/time (Makefile.am): Ensure all rule action lines start with a
8180         tab.
8181
8182 2007-03-24  Bruno Haible  <bruno@clisp.org>
8183
8184         * modules/tsearch-tests: New file.
8185         * tests/test-tsearch.sh: New file.
8186         * tests/test-tsearch.c: New file, mostly copied from glibc.
8187
8188         * modules/search-tests: New file.
8189         * tests/test-search.c: New file.
8190
8191         * modules/search: New file.
8192         * lib/search_.h: New file, incorporating lib/tsearch.h.
8193         * m4/search_h.m4: New file.
8194         * lib/tsearch.h: Remove file.
8195         * lib/tsearch.c: Include search.h instead of tsearch.h.
8196         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
8197         HAVE_TSEARCH.
8198         * modules/tsearch (Files): Remove lib/tsearch.h.
8199         (Depends-on): Add search.
8200         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
8201         (Include): Change tsearch.h into search.h.
8202
8203 2007-03-24  Bruno Haible  <bruno@clisp.org>
8204
8205         * modules/fpucw: New file.
8206         * lib/fpucw.h: New file.
8207         * lib/frexp.c: Include fpucw.h.
8208         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
8209         (FUNC): Use them.
8210         * lib/printf-frexp.c: Include fpucw.h.
8211         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
8212         (FUNC): Use them.
8213         * lib/vasnprintf.c: Include fpucw.h.
8214         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
8215         'long double' calculations.
8216         * tests/test-frexpl.c: Include fpucw.h.
8217         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
8218         * tests/test-printf-frexpl.c: Include fpucw.h.
8219         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
8220         * modules/frexpl (Depends-on): Add fpucw.
8221         * modules/printf-frexpl (Depends-on): Likewise.
8222         * modules/fprintf-posix (Depends-on): Likewise.
8223         * modules/snprintf-posix (Depends-on): Likewise.
8224         * modules/sprintf-posix (Depends-on): Likewise.
8225         * modules/vasnprintf-posix (Depends-on): Likewise.
8226         * modules/vasprintf-posix (Depends-on): Likewise.
8227         * modules/vfprintf-posix (Depends-on): Likewise.
8228         * modules/vsnprintf-posix (Depends-on): Likewise.
8229         * modules/vsprintf-posix (Depends-on): Likewise.
8230         * modules/frexpl-tests (Depends-on): Likewise.
8231         * modules/printf-frexpl-tests (Depends-on): Likewise.
8232
8233 2007-03-24  Bruno Haible  <bruno@clisp.org>
8234
8235         * lib/float+.h: New file.
8236         * lib/isnan.c: Include float+.h.
8237         (SIZE): New macro.
8238         (FUNC): Compare only SIZE bytes of the value.
8239         * lib/vasnprintf.c: Include float+.h.
8240         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
8241         SIZEOF_LDBL or SIZEOF_DBL bytes.
8242         * modules/isnan-nolibm (Files): Add lib/float+.h.
8243         * modules/isnanl-nolibm (Files): Add lib/float+.h.
8244         * modules/isnanl (Files): Add lib/float+.h.
8245         * modules/vasnprintf (Files): Add lib/float+.h.
8246
8247 2007-03-24  Bruno Haible  <bruno@clisp.org>
8248
8249         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
8250         include isnanl-nolibm.h.
8251
8252 2007-03-24  Bruno Haible  <bruno@clisp.org>
8253
8254         * tests/test-read-file.c (main): Don't produce spurious output for
8255         expected situations. Make the test fail if it encountered unexpected
8256         results.
8257
8258 2007-03-24  Bruno Haible  <bruno@clisp.org>
8259
8260         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
8261         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
8262
8263 2007-03-24  Bruno Haible  <bruno@clisp.org>
8264
8265         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
8266
8267 2007-03-24  Bruno Haible  <bruno@clisp.org>
8268
8269         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
8270         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
8271
8272         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
8273         * modules/utf8-ucs4: Turn into a symbolic link to module
8274         unistr/u8-mbtouc.
8275
8276         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
8277         utf8-ucs4-unsafe.
8278         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
8279         unistr/u8-mbtouc-unsafe.
8280
8281         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
8282         * modules/utf16-ucs4: Turn into a symbolic link to module
8283         unistr/u16-mbtouc.
8284
8285         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
8286         utf16-ucs4-unsafe.
8287         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
8288         unistr/u16-mbtouc-unsafe.
8289
8290         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
8291         * modules/ucs4-utf8: Turn into a symbolic link to module
8292         unistr/u8-ubtomb.
8293
8294         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
8295         * modules/ucs4-utf16: Turn into a symbolic link to module
8296         unistr/u16-ubtomb.
8297
8298 2007-03-24  Bruno Haible  <bruno@clisp.org>
8299
8300         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
8301         Enable the function only if HAVE_INLINE.
8302         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
8303         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
8304         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
8305         Enable the function only if HAVE_INLINE.
8306         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
8307         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
8308         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
8309         Enable the function only if HAVE_INLINE.
8310         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
8311         Enable the function only if HAVE_INLINE.
8312         * modules/utf8-ucs4: Update.
8313         * modules/utf8-ucs4-unsafe: Update.
8314         * modules/utf16-ucs4: Update.
8315         * modules/utf16-ucs4-unsafe: Update.
8316         * modules/ucs4-utf8: Update.
8317         * modules/ucs4-utf16: Update.
8318
8319 2007-03-24  Bruno Haible  <bruno@clisp.org>
8320
8321         * lib/utf8-ucs4.h: Remove file.
8322         * lib/utf8-ucs4-unsafe.h: Remove file.
8323         * lib/utf16-ucs4.h: Remove file.
8324         * lib/utf16-ucs4-unsafe.h: Remove file.
8325         * lib/ucs4-utf8.h: Remove file.
8326         * lib/ucs4-utf16.h: Remove file.
8327         * lib/unistr.h: Include their previous contents.
8328         * m4/utf-ucs4.m4: Remove file.
8329         * m4/ucs4-utf.m4: Remove file.
8330         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
8331         (Depends-on): Add unistr/base.
8332         (configure.ac): Remove gl_UTF_UCS4.
8333         (Makefile.am): Update.
8334         (Include): Change to unistr.h.
8335         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
8336         (Depends-on): Add unistr/base.
8337         (configure.ac): Remove gl_UTF_UCS4.
8338         (Makefile.am): Update.
8339         (Include): Change to unistr.h.
8340         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
8341         (Depends-on): Add unistr/base.
8342         (configure.ac): Remove gl_UTF_UCS4.
8343         (Makefile.am): Update.
8344         (Include): Change to unistr.h.
8345         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
8346         (Depends-on): Add unistr/base.
8347         (configure.ac): Remove gl_UTF_UCS4.
8348         (Makefile.am): Update.
8349         (Include): Change to unistr.h.
8350         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
8351         (Depends-on): Add unistr/base.
8352         (configure.ac): Remove gl_UCS4_UTF.
8353         (Makefile.am): Update.
8354         (Include): Change to unistr.h.
8355         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
8356         (Depends-on): Add unistr/base.
8357         (configure.ac): Remove gl_UCS4_UTF.
8358         (Makefile.am): Update.
8359         (Include): Change to unistr.h.
8360         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
8361         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
8362         utf8-ucs4-unsafe.h.
8363         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
8364         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
8365         utf16-ucs4-unsafe.h.
8366         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
8367         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
8368         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
8369         * lib/unistr/u8-strchr.c: Likewise.
8370         * lib/unistr/u8-strrchr.c: Likewise.
8371         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
8372         * lib/unistr/u16-strchr.c: Likewise.
8373         * lib/unistr/u16-strrchr.c: Likewise.
8374         * lib/striconveh.c: Update.
8375         * lib/linebreak.c: Update.
8376
8377 2007-03-24  Bruno Haible  <bruno@clisp.org>
8378
8379         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
8380         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
8381
8382 2007-03-22  Bruno Haible  <bruno@clisp.org>
8383
8384         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
8385
8386 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
8387
8388         * MODULES.html.sh (File system functions): New module write-any-file.
8389         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
8390         * m4/write-any-file.m4: New files.
8391
8392 2007-03-23  Eric Blake  <ebb9@byu.net>
8393
8394         * gnulib-tool: Rearrange space-tab sequences, since some editors
8395         like to eat them.
8396
8397 2007-03-23  Eric Blake  <ebb9@byu.net>
8398
8399         * lib/version-etc.c (version_etc_va): Update license wording to
8400         be more concise.  Recommended by Richard Stallman.
8401
8402 2007-03-22  Bruno Haible  <bruno@clisp.org>
8403
8404         * lib/poll.c (MSG_PEEK): New fallback definition.
8405
8406 2007-03-22  Bruno Haible  <bruno@clisp.org>
8407
8408         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
8409         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
8410         (main): Update.
8411         Fixes a compilation error on BeOS.
8412
8413 2007-03-22  Bruno Haible  <bruno@clisp.org>
8414
8415         * modules/frexpl-tests: New file.
8416         * tests/test-frexpl.c: New file.
8417
8418         * modules/frexpl: New file.
8419         * m4/frexpl.m4: New file.
8420         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
8421         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
8422         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
8423         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
8424         (Depends-on): Add frexpl. Remove isnanl-nolibm.
8425         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
8426
8427 2007-03-22  Bruno Haible  <bruno@clisp.org>
8428
8429         * lib/frexpl.c: Share code with lib/frexp.c.
8430         * modules/mathl (Files): Add lib/frexp.c.
8431         (Depends-on): Add isnanl-nolibm.
8432
8433 2007-03-22  Bruno Haible  <bruno@clisp.org>
8434
8435         * modules/printf-frexp (Files): Add m4/frexp.m4.
8436         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
8437         only if the found frexp function actually works.
8438
8439 2007-03-22  Bruno Haible  <bruno@clisp.org>
8440
8441         * lib/frexp.c: Remove older implementation that uses divisions.
8442
8443 2007-03-21  Bruno Haible  <bruno@clisp.org>
8444
8445         * modules/frexp-tests: New file.
8446         * tests/test-frexp.c: New file.
8447
8448         * modules/frexp: New file.
8449         * lib/frexp.c: New file.
8450         * m4/frexp.m4: New file.
8451         * lib/math_.h (frexp): New declaration.
8452         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
8453         REPLACE_FREXP.
8454         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
8455
8456 2007-03-21  Bruno Haible  <bruno@clisp.org>
8457
8458         * modules/isnanl-tests: New file.
8459         * tests/test-isnanl.c: New file.
8460
8461         * modules/isnanl: New file.
8462         * lib/isnanl.h: New file.
8463         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
8464         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
8465         gl_FUNC_ISNANL_WORKS.
8466         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
8467         New macros.
8468
8469 2007-03-21  Bruno Haible  <bruno@clisp.org>
8470
8471         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
8472         lib/isnanl.h.
8473         (Include): Update.
8474         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
8475         * lib/vasnprintf.c: Update.
8476         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
8477         tests/test-isnanl.h, remove tests/test-isnanl.c.
8478         (Makefile.am): Update.
8479         * tests/test-isnanl-nolibm.c: New file.
8480         * tests/test-isnanl.h: New file.
8481         * tests/test-isnanl.c: Remove file.
8482
8483 2007-03-21  Jim Meyering  <jim@meyering.net>
8484
8485         When trying to open ".", treat ESTALE like EACCES.
8486         * lib/savewd.c (savewd_save): Resort to forking not just upon
8487         failure with EACCES, but also when errno is ESTALE.
8488
8489 2007-03-20  Bruno Haible  <bruno@clisp.org>
8490
8491         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
8492         Needed on AIX 5.1. Reported by Matthew Woehlke.
8493
8494 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
8495
8496         Suggestions by Bruno Haible:
8497         * lib/acl-internal.h: Include "gettext.h" rather than rolling
8498         our own.
8499         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
8500         * modules/acl (Depends-on): Add gettext.
8501
8502 2007-03-19  Bruno Haible  <bruno@clisp.org>
8503
8504         * modules/iconvme: Remove file.
8505         * lib/iconvme.h: Remove file.
8506         * lib/iconvme.c: Remove file.
8507         * m4/iconvme.m4: Remove file.
8508
8509 2007-03-19  Bruno Haible  <bruno@clisp.org>
8510
8511         * doc/relocatable-maint.texi: Break long shell script line.
8512         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
8513
8514 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
8515
8516         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
8517         handle file_has_acl.
8518         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
8519         * lib/acl.c: Move header inclusions and related macro defns into
8520         lib/acl-internal.h.
8521         (S_ISLNK): Remove defn, since that's now done for us.
8522         (file_has_acl): Move to lib/file-has-acl.c.
8523         Call acl_trivial if available.  This is the crucial part of the fix.
8524         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
8525         shared within the library.  Rewrite a bit, partly to make it compatible
8526         with the GNU coding style.
8527         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
8528         Remove unnecessary double-quotes.
8529         Don't test for acl_to_text; the build will catch that.
8530         Replace acl_entries if it doesn't exist and it is needed.
8531         Check for -lsec and acl_trivial (as used on Solaris 10).
8532         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
8533         lib/file-has-acl.c.
8534         (Depends-on): Add sys_stat, for S_ISLNK.
8535
8536 2007-03-19  Ben Pfaff  <blp@gnu.org>
8537
8538         * doc/gnulib.texi: Fix typos.
8539         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
8540
8541 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
8542
8543         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
8544         If size is zero here, buf must be zero.
8545
8546 2007-03-19  Simon Josefsson  <simon@josefsson.org>
8547
8548         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
8549         <bruno@clisp.org>.
8550
8551 2007-03-18  Bruno Haible  <bruno@clisp.org>
8552
8553         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
8554         Suggested by Eric Blake.
8555
8556 2007-03-18  Ben Pfaff  <blp@gnu.org>
8557
8558         * doc/relocatable.texi: Recommend using as prefix a directory
8559         that does not exist and will never be created.  Based on
8560         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
8561         and others.
8562
8563 2007-03-17  Bruno Haible  <bruno@clisp.org>
8564
8565         * lib/fchownat.c: Include lchown.h.
8566
8567 2007-03-17  Bruno Haible  <bruno@clisp.org>
8568
8569         Fix endless loop when the given allocated size was > INT_MAX.
8570         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
8571         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
8572         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
8573         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
8574         * lib/sprintf.c (sprintf): Likewise.
8575
8576 2007-03-17  Bruno Haible  <bruno@clisp.org>
8577
8578         * tests/test-argp-2.sh (func_compare): Output a context diff.
8579
8580 2007-03-17  Bruno Haible  <bruno@clisp.org>
8581
8582         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
8583         locale's decimal-point character.
8584
8585 2007-03-17  Bruno Haible  <bruno@clisp.org>
8586
8587         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
8588         before comparing it. Needed because on some platforms (e.g. x86) a
8589         'long double' occupies less bytes than sizeof (long double).
8590
8591 2007-03-17  Bruno Haible  <bruno@clisp.org>
8592
8593         * tests/test-crc.c (main): Make printf statements 64-bit clean.
8594         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
8595         * tests/test-getaddrinfo.c (simple): Likewise.
8596         * tests/test-read-file.c (main): Likewise.
8597
8598 2007-03-17  Bruno Haible  <bruno@clisp.org>
8599
8600         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
8601
8602 2007-03-17  Bruno Haible  <bruno@clisp.org>
8603
8604         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
8605         unused variable.
8606
8607 2007-03-17  Bruno Haible  <bruno@clisp.org>
8608
8609         * tests/test-c-strcasecmp.c: Include c-strcase.h.
8610         * tests/test-c-strncasecmp.c: Likewise.
8611
8612 2007-03-17  Bruno Haible  <bruno@clisp.org>
8613
8614         * modules/stdlib (Depends-on): Add unistd.
8615         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
8616         Needed for MacOS X 10.3.
8617
8618 2007-03-17  Bruno Haible  <bruno@clisp.org>
8619
8620         * lib/unistr/u-strdup.h: Include <stdlib.h>.
8621
8622 2007-03-17  Bruno Haible  <bruno@clisp.org>
8623
8624         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
8625
8626 2007-03-17  Bruno Haible  <bruno@clisp.org>
8627
8628         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
8629         to reflect files copied from gnulib (with or without modifications).
8630         Suggested by Jim Meyering.
8631
8632 2007-03-17  Eric Blake  <ebb9@byu.net>
8633
8634         * NEWS: Document stdlib change from 2007-02-18.
8635
8636 2007-03-17  Jim Meyering  <jim@meyering.net>
8637
8638         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
8639         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
8640         someone uses a name containing shell meta-characters.
8641         Reported by Alfred M. Szmidt.
8642
8643         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
8644
8645 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
8646
8647         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
8648         and copy gettext configuration files only if configure.ac contains
8649         a use of AM_GNU_GETTEXT_VERSION.
8650
8651 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
8652
8653         * build-aux/bootstrap (gnulib_name): New variable.
8654         (gnulib_tool_options): Use it.
8655
8656 2007-03-13  Simon Josefsson  <simon@josefsson.org>
8657
8658         * tests/test-des.c: Use new namespace.
8659
8660 2007-03-15  Bruno Haible  <bruno@clisp.org>
8661
8662         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
8663         Reported by James Youngman <jay@gnu.org>.
8664
8665 2007-03-15  Bruno Haible  <bruno@clisp.org>
8666
8667         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
8668         declared prototype. Needed with cc on OSF/1 5.1.
8669
8670 2007-03-15  Bruno Haible  <bruno@clisp.org>
8671
8672         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
8673         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
8674         (struct gl_list_implementation): Add dispose_fn argument to the
8675         'create_empty', 'create' methods.
8676         (struct gl_list_impl_base): Add field 'dispose_fn'.
8677         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
8678         argument.
8679         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
8680         dispose_fn argument.
8681         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
8682         dispose_fn on the dropped values.
8683         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
8684         dispose_fn argument.
8685         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
8686         dropped values.
8687         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
8688         (gl_tree_remove_node): Call dispose_fn on the dropped value.
8689         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
8690         (gl_tree_remove_node): Call dispose_fn on the dropped value.
8691         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
8692         argument.
8693         (gl_tree_list_free): Call dispose_fn on the dropped values.
8694         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
8695         the dropped values.
8696         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
8697         Add dispose_fn argument.
8698         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
8699         Call dispose_fn on the dropped values.
8700         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
8701         Add dispose_fn argument.
8702         (gl_sublist_create): Initialize the 'dispose_fn' field.
8703         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
8704         * tests/test-array_list.c (main): Update.
8705         * tests/test-carray_list.c (main): Update.
8706         * tests/test-avltree_list.c (main): Update.
8707         * tests/test-rbtree_list.c (main): Update.
8708         * tests/test-avltreehash_list.c (main): Update.
8709         * tests/test-rbtreehash_list.c (main): Update.
8710         * tests/test-linked_list.c (main): Update.
8711         * tests/test-linkedhash_list.c (main): Update.
8712         * tests/test-array_oset.c (main): Update.
8713
8714 2007-03-15  Bruno Haible  <bruno@clisp.org>
8715
8716         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
8717         (gl_oset_create_empty): Add dispose_fn argument.
8718         (struct gl_oset_implementation): Add dispose_fn argument to
8719         'create_empty' method.
8720         (struct gl_oset_impl_base): Add dispose_fn field.
8721         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
8722         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
8723         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
8724         values.
8725         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
8726         (gl_tree_oset_free): Call dispose_fn on the dropped values.
8727         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
8728         dropped value.
8729         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
8730         dropped value.
8731         * tests/test-array_oset.c (main): Update.
8732         * tests/test-avltree_oset.c (main): Update.
8733         * tests/test-rbtree_oset.c (main): Update.
8734         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
8735
8736 2007-03-13  Bruno Haible  <bruno@clisp.org>
8737
8738         * tests/test-stdbool.c (i): Update after last patch.
8739
8740 2007-03-12  Bruno Haible  <bruno@clisp.org>
8741
8742         * lib/quotearg.c: Include <wctype.h> early, before the definition of
8743         the iswprint macro. Needed on Solaris 2.5.1.
8744
8745 2007-03-12  Bruno Haible  <bruno@clisp.org>
8746
8747         * tests/test-printf-frexp.c (main): Declare x as volatile.
8748
8749 2007-03-12  Simon Josefsson  <simon@josefsson.org>
8750
8751         * doc/gnulib.texi (Build robot for gnulib): New section.
8752
8753 2007-03-12  Jim Meyering  <jim@meyering.net>
8754
8755         * build-aux/bootstrap: New file.
8756         * build-aux/bootstrap.conf: New file, from coreutils.
8757
8758 2007-03-11  Bruno Haible  <bruno@clisp.org>
8759
8760         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
8761
8762 2007-03-12  Simon Josefsson  <simon@josefsson.org>
8763
8764         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
8765         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
8766         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
8767
8768 2007-03-11  Bruno Haible  <bruno@clisp.org>
8769
8770         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
8771         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
8772
8773 2007-03-11  Bruno Haible  <bruno@clisp.org>
8774
8775         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
8776         formula. Needed for SunPRO C 5.0.
8777
8778 2007-03-11  Bruno Haible  <bruno@clisp.org>
8779
8780         * modules/long-options (Depends-on): Add getopt.
8781
8782 2007-03-11  Bruno Haible  <bruno@clisp.org>
8783
8784         * modules/modechange (Depends-on): Add stdbool.
8785
8786 2007-03-11  Bruno Haible  <bruno@clisp.org>
8787
8788         * modules/i-ring (Depends-on): Add stdbool.
8789
8790 2007-03-11  Bruno Haible  <bruno@clisp.org>
8791
8792         * modules/gc-des (Depends-on): Add stdbool.
8793
8794 2007-03-11  Bruno Haible  <bruno@clisp.org>
8795
8796         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
8797
8798 2007-03-11  Bruno Haible  <bruno@clisp.org>
8799
8800         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
8801
8802 2007-03-11  Bruno Haible  <bruno@clisp.org>
8803
8804         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
8805
8806 2007-03-11  Bruno Haible  <bruno@clisp.org>
8807
8808         * lib/vasnprintf.c (sprintf): Undefine.
8809
8810 2007-03-11  Bruno Haible  <bruno@clisp.org>
8811
8812         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
8813         initializers in SunPRO C and Compaq C compilers.
8814
8815 2007-03-11  Bruno Haible  <bruno@clisp.org>
8816
8817         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
8818         decrementing code ANSI C compliant.
8819
8820 2007-03-11  Bruno Haible  <bruno@clisp.org>
8821
8822         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
8823         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
8824
8825 2007-03-11  Bruno Haible  <bruno@clisp.org>
8826
8827         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
8828         <stdbool.h> substitute doesn't pass.
8829
8830 2007-03-11  Bruno Haible  <bruno@clisp.org>
8831
8832         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
8833
8834 2007-03-11  Bruno Haible  <bruno@clisp.org>
8835
8836         * gnulib-tool (func_create_megatestdir): Create also an autobuild
8837         script, for submission to autobuild.josefsson.org.
8838
8839 2007-03-10  Bruno Haible  <bruno@clisp.org>
8840
8841         * modules/canonicalize-lgpl-tests: New file.
8842         * tests/test-canonicalize-lgpl.sh: New file.
8843         * tests/test-canonicalize-lgpl.c: New file.
8844
8845         * modules/c-strcase-tests: New file.
8846         * tests/test-c-strcase.sh: New file.
8847         * tests/test-c-strcasecmp.c: New file.
8848         * tests/test-c-strncasecmp.c: New file.
8849
8850         * modules/atexit-tests: New file.
8851         * tests/test-atexit.sh: New file.
8852         * tests/test-atexit.c: New file.
8853
8854 2007-03-10  Bruno Haible  <bruno@clisp.org>
8855
8856         * tests/test-binary-io.sh: Use temporary filenames that are not so
8857         likely to clash with those of other tests (in a parallel make).
8858         * tests/test-binary-io.c: Likewise.
8859
8860 2007-03-10  Bruno Haible  <bruno@clisp.org>
8861
8862         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
8863         fallback; use #error instead.
8864         Suggested by Simon Josefsson.
8865
8866 2007-03-10  Bruno Haible  <bruno@clisp.org>
8867
8868         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
8869         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
8870         first and the last.
8871
8872 2007-03-10  Bruno Haible  <bruno@clisp.org>
8873
8874         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
8875
8876 2007-03-10  Bruno Haible  <bruno@clisp.org>
8877
8878         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
8879         "make distcheck".
8880         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
8881         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
8882         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
8883
8884 2007-03-10  Bruno Haible  <bruno@clisp.org>
8885
8886         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
8887         variable.
8888         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
8889         variable.
8890
8891 2007-03-09  Eric Blake  <ebb9@byu.net>
8892         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
8893
8894         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
8895         types are not being provided by gnulib.
8896         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
8897         types are supported.
8898
8899 2007-03-10  Bruno Haible  <bruno@clisp.org>
8900
8901         * lib/stdio_.h (__attribute__): New macro.
8902         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
8903         vsprintf): Specify __attribute__ __format__ for GCC.
8904         Suggested by Eric Blake.
8905
8906 2007-03-09  Bruno Haible  <bruno@clisp.org>
8907
8908         * modules/printf-posix-tests: New file.
8909         * tests/test-printf-posix.sh: New file.
8910         * tests/test-printf-posix.c: New file.
8911
8912         * modules/printf-posix: New file.
8913         * lib/printf.c: New file.
8914         * m4/printf-posix-rpl.m4: New file.
8915         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
8916         REPLACE_PRINTF.
8917         * lib/stdio_.h (printf): New declaration.
8918         (format, __format__, ____printf____, ____scanf____, ____strftime____,
8919         ____strfmon____): New macros.
8920         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
8921         REPLACE_PRINTF.
8922
8923 2007-03-09  Bruno Haible  <bruno@clisp.org>
8924
8925         * tests/test-vasnprintf-posix2.sh: New file.
8926         * tests/test-vasnprintf-posix2.c: New file.
8927         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
8928         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
8929         (Makefile.am): Activate test-vasnprintf-posix2.sh.
8930
8931         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
8932         a locale dependent decimal point, rather than always '.'.
8933
8934 2007-03-09  Eric Blake  <ebb9@byu.net>
8935
8936         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
8937         spite of platforms like Tandem/NSK that define it to -1.
8938
8939 2007-03-08  Bruno Haible  <bruno@clisp.org>
8940
8941         * modules/vprintf-posix-tests: New file.
8942         * tests/test-vprintf-posix.sh: New file.
8943         * tests/test-vprintf-posix.c: New file.
8944         * tests/test-printf-posix.h: New file.
8945
8946         * modules/vprintf-posix: New file.
8947         * lib/vprintf.c: New file.
8948         * m4/vprintf-posix.m4: New file.
8949         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
8950         REPLACE_VPRINTF.
8951         * lib/stdio_.h (vprintf): New declaration.
8952         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
8953         REPLACE_VPRINTF.
8954
8955 2007-03-08  Bruno Haible  <bruno@clisp.org>
8956
8957         * modules/fprintf-posix-tests: New file.
8958         * tests/test-fprintf-posix.sh: New file.
8959         * tests/test-fprintf-posix.c: New file.
8960
8961         * modules/fprintf-posix: New file.
8962         * lib/fprintf.c: New file.
8963         * m4/fprintf-posix.m4: New file.
8964         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
8965         REPLACE_FPRINTF.
8966         * lib/stdio_.h (fprintf): New declaration.
8967         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
8968         REPLACE_FPRINTF.
8969
8970 2007-03-08  Bruno Haible  <bruno@clisp.org>
8971
8972         * modules/vfprintf-posix-tests: New file.
8973         * tests/test-vfprintf-posix.sh: New file.
8974         * tests/test-vfprintf-posix.c: New file.
8975         * tests/test-fprintf-posix.h: New file.
8976         * tests/test-fprintf-posix.out: New file.
8977
8978         * modules/vfprintf-posix: New file.
8979         * lib/vfprintf.c: New file.
8980         * m4/vfprintf-posix.m4: New file.
8981         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
8982         REPLACE_VFPRINTF.
8983         * lib/stdio_.h (vfprintf): New declaration.
8984         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
8985         REPLACE_VFPRINTF.
8986
8987 2007-03-08  Bruno Haible  <bruno@clisp.org>
8988
8989         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
8990
8991 2007-03-08  Bruno Haible  <bruno@clisp.org>
8992
8993         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
8994         instead of 'expr' invocations.
8995         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8996         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8997         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8998         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8999         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9000         Suggested by Paul Eggert.
9001
9002 2007-03-08  Bruno Haible  <bruno@clisp.org>
9003
9004         * modules/fseterr-tests: New file.
9005         * tests/test-fseterr.c: New file.
9006
9007         * modules/fseterr: New file.
9008         * lib/fseterr.h: New file.
9009         * lib/fseterr.c: New file.
9010
9011 2007-03-08  Bruno Haible  <bruno@clisp.org>
9012
9013         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
9014         * lib/getopt_.h: Likewise.
9015         * lib/mbswidth.h: Likewise.
9016         * lib/setenv.h: Likewise.
9017         * lib/vasnprintf.h: Likewise.
9018         * lib/vasprintf.h: Likewise.
9019         * lib/verror.h: Likewise.
9020         * lib/xsetenv.h: Likewise.
9021         * lib/xvasprintf.h: Likewise.
9022
9023 2007-03-08  Jim Meyering  <jim@meyering.net>
9024
9025         * users.txt: Add parted.
9026
9027         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
9028
9029 2007-03-07  Bruno Haible  <bruno@clisp.org>
9030
9031         * m4/printf.m4: Make the shell script snippets copy&pastable.
9032
9033 2007-03-02  Bruno Haible  <bruno@clisp.org>
9034
9035         * lib/netinet_in_.h: New file.
9036         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
9037         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
9038         * modules/netinet_in (Files): Add lib/netinet_in_.h.
9039         (Depends-on): Add absolute-header.
9040         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
9041         into netinet/in.h.
9042
9043 2007-03-03  Bruno Haible  <bruno@clisp.org>
9044
9045         * lib/sys_select_.h: New file.
9046         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
9047         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
9048         * modules/sys_select (Files): Add lib/sys_select_.h.
9049         (Depends-on): Add absolute-header.
9050         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
9051         into sys/select.h.
9052
9053 2007-03-02  Bruno Haible  <bruno@clisp.org>
9054
9055         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
9056         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
9057         values.
9058         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
9059         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
9060         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
9061         * modules/sys_socket (Depends-on): Add absolute-header.
9062         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
9063         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
9064         (Include): Remove requirement of inclusion of <sys/types.h>.
9065
9066 2007-03-02  Bruno Haible  <bruno@clisp.org>
9067
9068         * lib/byteswap_.h (bswap_32): Fix formula.
9069
9070 2007-03-06  Bruno Haible  <bruno@clisp.org>
9071
9072         * modules/sprintf-posix-tests: New file.
9073         * tests/test-sprintf-posix.c: New file.
9074
9075         * modules/sprintf-posix: New file.
9076         * lib/sprintf.c: New file.
9077         * m4/sprintf-posix.m4: New file.
9078         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
9079         REPLACE_SPRINTF.
9080         * lib/stdio_.h (sprintf): New declaration.
9081         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
9082         REPLACE_SPRINTF.
9083
9084 2007-03-06  Bruno Haible  <bruno@clisp.org>
9085
9086         * modules/vsprintf-posix-tests: New file.
9087         * tests/test-vsprintf-posix.c: New file.
9088         * tests/test-sprintf-posix.h: New file.
9089
9090         * modules/vsprintf-posix: New file.
9091         * lib/vsprintf.c: New file.
9092         * m4/vsprintf-posix.m4: New file.
9093         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
9094         REPLACE_VSPRINTF.
9095         * lib/stdio_.h (vsprintf): New declaration.
9096         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
9097         REPLACE_VSPRINTF.
9098
9099 2007-03-06  Bruno Haible  <bruno@clisp.org>
9100
9101         * modules/vsnprintf (Depend-on): Remove minmax.
9102
9103 2007-03-06  Bruno Haible  <bruno@clisp.org>
9104
9105         * modules/snprintf-posix-tests: New file.
9106         * tests/test-snprintf-posix.c: New file.
9107
9108         * modules/snprintf-posix: New file.
9109         * m4/snprintf-posix.m4: New file.
9110         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
9111         gl_FUNC_SNPRINTF.
9112         (gl_FUNC_SNPRINTF): Invoke it.
9113         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
9114         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
9115         is set.
9116         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
9117
9118 2007-03-06  Bruno Haible  <bruno@clisp.org>
9119
9120         * modules/vsnprintf-posix-tests: New file.
9121         * tests/test-vsnprintf-posix.c: New file.
9122         * tests/test-snprintf-posix.h: New file.
9123
9124         * modules/vsnprintf-posix: New file.
9125         * m4/vsnprintf-posix.m4: New file.
9126         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
9127         gl_FUNC_VSNPRINTF.
9128         (gl_FUNC_VSNPRINTF): Invoke it.
9129         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
9130         * lib/stdio_.h (vsnprintf): Define as a replacement if
9131         REPLACE_VSNPRINTF is set.
9132         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
9133
9134 2007-03-06  Bruno Haible  <bruno@clisp.org>
9135
9136         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
9137         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
9138
9139 2007-03-06  Bruno Haible  <bruno@clisp.org>
9140
9141         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
9142         (asinl): Declare also if HAVE_DECL_ASINL is set.
9143         (atanl): Declare also if HAVE_DECL_ATANL is set.
9144         (ceill): Declare also if HAVE_DECL_CEILL is set.
9145         (cosl): Declare also if HAVE_DECL_COSL is set.
9146         (expl): Declare also if HAVE_DECL_EXPL is set.
9147         (floorl): Declare also if HAVE_DECL_FLOORL is set.
9148         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
9149         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
9150         (logl): Declare also if HAVE_DECL_LOGL is set.
9151         (sinl): Declare also if HAVE_DECL_SINL is set.
9152         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
9153         (tanl): Declare also if HAVE_DECL_TANL is set.
9154         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
9155         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
9156         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
9157         declaration of frexpl, ldexpl.
9158         * modules/printf-frexpl (Depends-on): Add math.
9159         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
9160
9161 2007-03-05  Bruno Haible  <bruno@clisp.org>
9162
9163         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
9164         frexpl and ldexpl are declared.
9165         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
9166
9167 2007-03-05  Bruno Haible  <bruno@clisp.org>
9168
9169         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
9170         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
9171
9172 2007-03-05  Bruno Haible  <bruno@clisp.org>
9173
9174         * lib/stdio_.h: Include <stddef.h>.
9175
9176 2007-03-05  Bruno Haible  <bruno@clisp.org>
9177
9178         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
9179
9180 2007-03-05  Bruno Haible  <bruno@clisp.org>
9181
9182         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
9183         NetBSD 4, from Ralf Wildenhues.
9184
9185 2007-03-04  Bruno Haible  <bruno@clisp.org>
9186
9187         * lib/vasprintf.h: Update #if logic for the case when the functions
9188         exist but are overridden.
9189
9190 2007-03-04  Bruno Haible  <bruno@clisp.org>
9191
9192         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
9193         implementations: glibc-2.4 and MacOS X 10.3.
9194         * tests/test-vasnprintf-posix.c (test_function): Test also the case
9195         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
9196         * tests/test-vasprintf-posix.c (test_function): Likewise.
9197
9198 2007-03-04  Bruno Haible  <bruno@clisp.org>
9199
9200         * modules/vasprintf-posix-tests: New file.
9201         * tests/test-vasprintf-posix.c: New file.
9202
9203         * modules/vasprintf-posix: New file.
9204         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
9205         defined.
9206         * m4/vasprintf-posix.m4: New file.
9207         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
9208         gl_FUNC_VASPRINTF.
9209         (gl_FUNC_VASPRINTF): Invoke it.
9210         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
9211         here.
9212         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
9213
9214 2007-03-04  Bruno Haible  <bruno@clisp.org>
9215
9216         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
9217         REPLACE_GETTIMEOFDAY.
9218         * modules/sys_time (Makefile.am): Likewise.
9219         * m4/sys_time_h.m4: Likewise.
9220         * m4/gettimeofday.m4: Likewise.
9221
9222 2007-03-04  Bruno Haible  <bruno@clisp.org>
9223
9224         * modules/vasnprintf-posix-tests: New file.
9225         * tests/test-vasnprintf-posix.c: New file.
9226
9227         * modules/vasnprintf-posix: New file.
9228         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
9229         printf-frexpl.h.
9230         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
9231         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
9232         REPLACE_VASNPRINTF is defined.
9233         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
9234         gl_FUNC_VASNPRINTF.
9235         (gl_FUNC_VASNPRINTF): Invoke it.
9236         * m4/vasnprintf-posix.m4: New file.
9237         * m4/printf.m4: New file.
9238
9239 2007-03-04  Bruno Haible  <bruno@clisp.org>
9240
9241         Compile progreloc.c only if --enable-relocatable is specified.
9242         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
9243         if --enable-relocatable was specified.
9244         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
9245         lib_SOURCES.
9246
9247 2007-03-04  Jim Meyering  <jim@meyering.net>
9248
9249         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
9250         Use it consistently, rather than enumerating errno constants.
9251
9252 2007-03-04  Bruno Haible  <bruno@clisp.org>
9253
9254         * modules/xvasprintf-tests: New file.
9255         * tests/test-xvasprintf.c: New file.
9256
9257         * modules/vasprintf-tests: New file.
9258         * tests/test-vasprintf.c: New file.
9259
9260         * modules/vasnprintf-tests: New file.
9261         * tests/test-vasnprintf.c: New file.
9262
9263         * modules/vsnprintf-tests: New file.
9264         * tests/test-vsnprintf.c: New file.
9265
9266         * modules/snprintf-tests: New file.
9267         * tests/test-snprintf.c: New file.
9268
9269 2007-03-04  Bruno Haible  <bruno@clisp.org>
9270
9271         Compile relocatable.c only if --enable-relocatable is specified.
9272         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
9273         gl_RELOCATABLE_LIBRARY.
9274         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
9275         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
9276         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
9277         gl_RELOCATABLE_LIBRARY.
9278         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
9279         (Makefile.am): Remove lib_SOURCES.
9280         * modules/relocatable-lib-lgpl (configure.ac): Invoke
9281         gl_RELOCATABLE_LIBRARY.
9282         (Makefile.am): Remove lib_SOURCES.
9283         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
9284         always.
9285         * modules/relocatable-prog-wrapper (configure.ac): Invoke
9286         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
9287
9288 2007-03-04  Bruno Haible  <bruno@clisp.org>
9289
9290         * modules/argmatch-tests: New file.
9291         * tests/test-argmatch.c: New file.
9292
9293         * tests/test-allocsa.c (main): Halve the number of loop runs.
9294
9295         * modules/alloca-opt-tests: New file.
9296         * tests/test-alloca-opt.c: New file.
9297
9298 2007-03-04  Jim Meyering  <jim@meyering.net>
9299
9300         Work around difference between Linux ACLs and Solaris 10 ZFS.
9301         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
9302         for EINVAL.
9303
9304 2007-03-03  Bruno Haible  <bruno@clisp.org>
9305
9306         * modules/relocatable-prog (Depends-on): Add back progreloc's
9307         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
9308
9309 2007-03-03  Bruno Haible  <bruno@clisp.org>
9310
9311         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
9312         * modules/relocatable-lib: New file.
9313
9314 2007-03-03  Bruno Haible  <bruno@clisp.org>
9315
9316         * modules/relocatable-prog: Renamed from modules/relocatable.
9317         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
9318
9319 2007-03-03  Bruno Haible  <bruno@clisp.org>
9320
9321         * modules/relocatable-script (Files): Add doc/relocatable.texi,
9322         m4/relocatable-lib.m4.
9323         (Depends-on): Remove 'relocatable'.
9324         (configure.ac): Add gl_RELOCATABLE_NOP.
9325
9326 2007-03-03  Bruno Haible  <bruno@clisp.org>
9327
9328         * modules/relocatable-prog-wrapper: New file.
9329         * modules/relocatable (Depends-on): Add it. Remove all other
9330         dependencies except progname.
9331         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
9332
9333         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
9334         (gl_FUNC_STRERROR): Nop.
9335         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
9336
9337         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
9338         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
9339
9340         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
9341         (gl_FUNC_READLINK): Update.
9342
9343         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
9344
9345 2007-03-03  Bruno Haible  <bruno@clisp.org>
9346
9347         * lib/xreadlink.c: Include <unistd.h> unconditionally.
9348         * modules/xreadlink (Depends-on): Add unistd.
9349         * modules/xreadlink-with-size (Depends-on): Likewise.
9350
9351 2007-03-03  Bruno Haible  <bruno@clisp.org>
9352
9353         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
9354         extracted from gt_FUNC_SETENV.
9355         (gt_FUNC_SETENV): Remove macro.
9356         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
9357         remove gt_FUNC_SETENV.
9358
9359 2007-03-03  Bruno Haible  <bruno@clisp.org>
9360
9361         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
9362         ENABLE_RELOCATABLE here.
9363         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
9364
9365 2007-03-03  Bruno Haible  <bruno@clisp.org>
9366
9367         * modules/rbtreehash-list-tests (Depends-on): Add progname.
9368         * tests/test-rbtreehash_list.c: Include progname.h.
9369         (main): Call set_program_name.
9370
9371         * modules/rbtree-oset-tests (Depends-on): Add progname.
9372         * tests/test-rbtree_oset.c: Include progname.h.
9373         (main): Call set_program_name.
9374
9375         * modules/rbtree-list-tests (Depends-on): Add progname.
9376         * tests/test-rbtree_list.c: Include progname.h.
9377         (main): Call set_program_name.
9378
9379         * modules/linked-list-tests (Depends-on): Add progname.
9380         * tests/test-linked_list.c: Include progname.h.
9381         (main): Call set_program_name.
9382
9383 2007-03-03  Bruno Haible  <bruno@clisp.org>
9384
9385         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
9386         All uses of __restrict changed to _Restrict_.
9387         * lib/glob_.h (__restrict): Remove macro.
9388
9389 2007-03-02  Bruno Haible  <bruno@clisp.org>
9390
9391         * modules/gettext (configure.ac): Require gettext infrastructure
9392         from version 0.16.1.
9393
9394 2007-03-02  Bruno Haible  <bruno@clisp.org>
9395
9396         * modules/linkedhash-list-tests (Depends-on): Add progname.
9397         * tests/test-linkedhash_list.c: Include progname.h.
9398         (main): Call set_program_name.
9399
9400         * modules/carray-list-tests (Depends-on): Add progname.
9401         * tests/test-carray_list.c: Include progname.h.
9402         (main): Call set_program_name.
9403
9404         * modules/avltreehash-list-tests (Depends-on): Add progname.
9405         * tests/test-avltreehash_list.c: Include progname.h.
9406         (main): Call set_program_name.
9407
9408         * modules/avltree-oset-tests (Depends-on): Add progname.
9409         * tests/test-avltree_oset.c: Include progname.h.
9410         (main): Call set_program_name.
9411
9412         * modules/avltree-list-tests (Depends-on): Add progname.
9413         * tests/test-avltree_list.c: Include progname.h.
9414         (main): Call set_program_name.
9415
9416         * modules/array-oset-tests (Depends-on): Add progname.
9417         * tests/test-array_oset.c: Include progname.h.
9418         (main): Call set_program_name.
9419
9420         * modules/array-list-tests (Depends-on): Add progname.
9421         * tests/test-array_list.c: Include progname.h.
9422         (main): Call set_program_name.
9423
9424         * modules/argp-tests (Depends-on): Add progname.
9425         * tests/test-argp.c: Include argp.h first. Include progname.h.
9426         (main): Call set_program_name.
9427
9428 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
9429
9430         * doc/gnulib-tool.texi (Initial import): Reword description of
9431         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
9432         limited effect even if defined after the first system include.
9433
9434 2007-03-01  Bruno Haible  <bruno@clisp.org>
9435
9436         * build-aux/config.libpath: Update to libtool-1.5.22.
9437         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
9438
9439 2007-03-01  Bruno Haible  <bruno@clisp.org>
9440
9441         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
9442         foo_CFLAGS.
9443         Reported by Ralf Wildenhues.
9444
9445 2007-03-01  Bruno Haible  <bruno@clisp.org>
9446
9447         * build-aux/install-reloc: Remove object files left over by some
9448         compilers.
9449         Reported by Ralf Wildenhues.
9450
9451 2007-03-01  Bruno Haible  <bruno@clisp.org>
9452
9453         * build-aux/install-reloc: Break long lines.
9454
9455 2007-03-01  Bruno Haible  <bruno@clisp.org>
9456
9457         * doc/relocatable.texi: Document that it may not work on OpenBSD.
9458         Reported by Ralf Wildenhues.
9459
9460 2007-03-01  Bruno Haible  <bruno@clisp.org>
9461
9462         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
9463         include ordering constraints.
9464
9465 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9466
9467         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
9468         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
9469         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
9470         as another example.
9471         * lib/time_.h: Fix misspelling.
9472         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
9473         Require gl_HEADER_TIME_H_DEFAULTS.
9474         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
9475         * m4/time_r.m4 (gl_TIME_R): Likewise.
9476         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
9477
9478 2007-03-01  Bruno Haible  <bruno@clisp.org>
9479
9480         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
9481         * m4/utimens.m4 (gl_UTIMENS): Likewise.
9482
9483 2007-03-01  Jim Meyering  <jim@meyering.net>
9484
9485         * modules/xreadlink (Maintainer): Add my name.
9486         * modules/xreadlink-with-size (Depends-on): Alphabetize.
9487
9488 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
9489             Bruno Haible  <bruno@clisp.org>
9490
9491         * build-aux/install-reloc: Compile also c-ctype.c.
9492         * build-aux/relocatable.sh.in: New file.
9493         * doc/relocatable.texi: New file.
9494         * doc/relocatable-maint.texi: New file.
9495         * doc/gnulib.texi: Include relocatable-maint.texi.
9496         * lib/progreloc.c: Include unistd.h unconditionally.
9497         * lib/relocwrapper.c: Include unistd.h unconditionally.
9498         Include c-ctype.h.
9499         (add_dotbin): Use c_tolower.
9500         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
9501         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
9502         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
9503         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
9504         to m4/relocatable-lib.m4.
9505         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
9506         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
9507         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
9508         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
9509         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
9510         * modules/relocatable: New file.
9511         * modules/relocatable-lib: New file.
9512         * modules/relocatable-script: New file.
9513
9514 2007-02-28  Bruno Haible  <bruno@clisp.org>
9515
9516         Import --enable-relocatable infrastructure.
9517         * build-aux/config.libpath: New file, from GNU gettext.
9518         * build-aux/install-reloc: New file, from GNU gettext.
9519         * build-aux/reloc-ldflags: New file, from GNU gettext.
9520         * lib/relocatable.h: New file, from GNU gettext.
9521         * lib/relocatable.c: New file, from GNU gettext.
9522         * lib/relocwrapper.c: New file, from GNU gettext.
9523         * m4/relocatable.m4: New file, from GNU gettext.
9524
9525 2007-02-28  Bruno Haible  <bruno@clisp.org>
9526
9527         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
9528
9529         * modules/xreadlink: New file, from GNU gettext with modifications.
9530         * lib/xreadlink.c: New file, from GNU gettext.
9531         * lib/xreadlink.h: Add comments.
9532         (xreadlink): New declaration.
9533
9534         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
9535         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
9536         lib/xreadlink-with-size.c.
9537         (configure.ac): Remove gl_XREADLINK invocation.
9538         (Makefile.am): Augment lib_SOURCES.
9539         * m4/xreadlink.m4: Remove file.
9540         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
9541         (xreadlink_with_size): Renamed from xreadink.
9542         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
9543         * modules/canonicalize (Depends-on): Replace xreadlink with
9544         xreadlink-with-size.
9545         * lib/canonicalize.c (canonicalize_filename_mode): Update.
9546
9547 2007-02-25  Jim Meyering  <jim@meyering.net>
9548
9549         * build-aux/announce-gen: When complaining about excess arguments,
9550         list them.
9551
9552 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
9553
9554         * README: Document signed integer overflow situation more
9555         accurately.
9556
9557 2007-02-25  Bruno Haible  <bruno@clisp.org>
9558
9559         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
9560         'a' or 'A' conversion.
9561
9562 2007-02-25  Bruno Haible  <bruno@clisp.org>
9563
9564         * modules/filename: Renamed from modules/pathname.
9565         (Files): Replace lib/pathname.h with lib/filename.h. Replace
9566         lib/concatpath.c with lib/concat-filename.c.
9567         (Makefile.am): Update.
9568         (Include): Replace pathname.h with filename.h.
9569         * lib/filename.h: Renamed from lib/pathname.h.
9570         (concatenated_filename): Renamed from concatenated_pathname.
9571         * lib/concat-filename.c: Renamed from lib/concatpath.c.
9572         (concatenated_filename): Renamed from concatenated_pathname.
9573         * lib/findprog.c: Include filename.h instead of pathname.h.
9574         (find_in_path): Update.
9575         * lib/javacomp.c: Include filename.h instead of pathname.h.
9576         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
9577         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
9578         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
9579         is_oldgcj_14_13_usable, is_javac_usable): Update.
9580         * lib/javaexec.c: Include filename.h instead of pathname.h.
9581         (execute_java_class): Update.
9582         * modules/findprog: Update.
9583         * modules/javacomp: Update.
9584         * modules/javaexec: Update.
9585         * MODULES.html.sh (File system functions): Add 'filename', remove
9586         'pathname'.
9587
9588 2007-02-25  Bruno Haible  <bruno@clisp.org>
9589
9590         * modules/printf-frexpl-tests: New file.
9591         * tests/test-printf-frexpl.c: New file.
9592
9593         * modules/printf-frexpl: New file.
9594         * lib/printf-frexpl.h: New file.
9595         * lib/printf-frexpl.c: New file.
9596         * m4/printf-frexpl.m4: New file.
9597
9598 2007-02-25  Bruno Haible  <bruno@clisp.org>
9599
9600         * modules/printf-frexp-tests: New file.
9601         * tests/test-printf-frexp.c: New file.
9602
9603         * modules/printf-frexp: New file.
9604         * lib/printf-frexp.h: New file.
9605         * lib/printf-frexp.c: New file.
9606         * m4/printf-frexp.m4: New file.
9607
9608 2007-02-25  Bruno Haible  <bruno@clisp.org>
9609
9610         Assume automake >= 1.10 for the tests.
9611         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
9612         * modules/arctwo-tests: Likewise.
9613         * modules/argp-tests: Likewise.
9614         * modules/avltree-list-tests: Likewise.
9615         * modules/avltree-oset-tests: Likewise.
9616         * modules/avltreehash-list-tests: Likewise.
9617         * modules/carray-list-tests: Likewise.
9618         * modules/crc-tests: Likewise.
9619         * modules/des-tests: Likewise.
9620         * modules/gc-arcfour-tests: Likewise.
9621         * modules/gc-arctwo-tests: Likewise.
9622         * modules/gc-des-tests: Likewise.
9623         * modules/gc-hmac-md5-tests: Likewise.
9624         * modules/gc-hmac-sha1-tests: Likewise.
9625         * modules/gc-md2-tests: Likewise.
9626         * modules/gc-md4-tests: Likewise.
9627         * modules/gc-md5-tests: Likewise.
9628         * modules/gc-pbkdf2-sha1-tests: Likewise.
9629         * modules/gc-rijndael-tests: Likewise.
9630         * modules/gc-sha1-tests: Likewise.
9631         * modules/gc-tests: Likewise.
9632         * modules/getaddrinfo-tests: Likewise.
9633         * modules/hmac-md5-tests: Likewise.
9634         * modules/hmac-sha1-tests: Likewise.
9635         * modules/linked-list-tests: Likewise.
9636         * modules/linkedhash-list-tests: Likewise.
9637         * modules/lock-tests: Likewise.
9638         * modules/md2-tests: Likewise.
9639         * modules/md4-tests: Likewise.
9640         * modules/md5-tests: Likewise.
9641         * modules/rbtree-list-tests: Likewise.
9642         * modules/rbtree-oset-tests: Likewise.
9643         * modules/rbtreehash-list-tests: Likewise.
9644         * modules/read-file-tests: Likewise.
9645         * modules/rijndael-tests: Likewise.
9646         * modules/stdint-tests: Likewise.
9647         * modules/tls-tests: Likewise.
9648
9649 2007-02-24  Bruno Haible  <bruno@clisp.org>
9650
9651         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
9652         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
9653         function; instead check whether isnan with a double argument links.
9654         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
9655         function; instead check whether isnan with a 'long double' argument
9656         links.
9657         Reported by Eric Blake <ebb9@byu.net>.
9658
9659 2007-02-24  Bruno Haible  <bruno@clisp.org>
9660
9661         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
9662         defined.
9663         * lib/isnanl.c: Remove all code. Just include isnan.c.
9664         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
9665
9666 2007-02-25  Jim Meyering  <jim@meyering.net>
9667
9668         Avoid conflicting types for 'unsetenv' on FreeBSD.
9669         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
9670         conflicting with FreeBSD's (5.0 and 6.1) function declaration
9671         in stdlib.h.
9672
9673 2007-02-24  Bruno Haible  <bruno@clisp.org>
9674
9675         * modules/isnanl-nolibm-tests: New file.
9676         * tests/test-isnanl.c: New file.
9677
9678         * modules/isnanl-nolibm: New file.
9679         * lib/isnanl.h: New file.
9680         * lib/isnanl.c: New file.
9681         * m4/isnanl.m4: New file.
9682
9683 2007-02-24  Bruno Haible  <bruno@clisp.org>
9684
9685         * modules/isnan-nolibm-tests: New file.
9686         * tests/test-isnan.c: New file.
9687
9688         * modules/isnan-nolibm: New file.
9689         * lib/isnan.h: New file.
9690         * lib/isnan.c: New file.
9691         * m4/isnan.m4: New file.
9692
9693 2007-02-24  Bruno Haible  <bruno@clisp.org>
9694
9695         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
9696         assume that an exponent fits in 20 bits.
9697
9698 2007-02-24  Jim Meyering  <jim@meyering.net>
9699
9700         * m4/regex.m4: Update the description of the configure-time option,
9701         --without-included-regex, to state accurately what the defaults are,
9702         and perhaps to give people an idea why using this option is risky.
9703
9704 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
9705
9706         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
9707         loops on small arguments.  This attempts to avoid the problem
9708         Bruno Haible reported for AIX 4.3.2 in
9709         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
9710
9711 2007-02-23  Bruno Haible  <bruno@clisp.org>
9712
9713         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
9714         Needed for help2man.
9715
9716 2007-02-23  Karl Berry  <karl@gnu.org>
9717
9718         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
9719         exists, foo.h should be cvs-ignored, not committed.
9720
9721 2007-02-23  Eric Blake  <ebb9@byu.net>
9722
9723         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
9724         * lib/stat-time.h (includes): Likewise.
9725         * lib/utimecmp.c (includes): Likewise.
9726         * lib/utimens.h (includes): Likewise.
9727         * lib/getdate.y (includes): Also include "timespec.h" for use
9728         internal to the module.
9729         * modules/utimens (Depends-on): Revert yesterday's patch.
9730         * modules/nanosleep (Depends-on): Add missing dependency.
9731
9732 2007-02-22  Bruno Haible  <bruno@clisp.org>
9733
9734         * lib/glob.c: Don't include getlogin_r.h.
9735
9736 2007-02-22  Jim Meyering  <jim@meyering.net>
9737
9738         * modules/utimens (Depends-on): Add timespec, required for
9739         utimens.h's inclusion of timespec.h.
9740
9741 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
9742
9743         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
9744         long unreadable paths in GNU/Linux.  Problem reported by Andreas
9745         Schwab in
9746         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
9747         I'll try to think of a better way to fix the Solaris problem.
9748
9749         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
9750         like glibc; on Solaris 10, it fails with errno == EINVAL.
9751         POSIX says the behavior is unspecified if the first argument is NULL,
9752         so play it safe and never pass NULL to the system getcwd.
9753
9754 2007-02-21  Jim Meyering  <jim@meyering.net>
9755
9756         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
9757         of gettimeofday.  It would conflict with the one now always
9758         provided via sys_time_.h.  Reported by Matthew Woehlke, as
9759         an IRIX 6.5 build failure.
9760
9761 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
9762
9763         Minor fixups to port to Solaris 10 with Sun C 5.8.
9764         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
9765         * modules/getcwd (Depends-on): Add dirfd.
9766         * lib/putenv.c (putenv): #undef it.
9767         (rpl_putenv): New decl.
9768         (malloc, free): Include <stdlib.h> rather than prototyping separately.
9769
9770 2007-02-20  Bruno Haible  <bruno@clisp.org>
9771
9772         * modules/stdio-tests: New file.
9773         * tests/test-stdio.c: New file.
9774
9775         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
9776         (Depends-on): Add stdio.
9777         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
9778         (Include): Use <stdio.h> instead of vsnprintf.h.
9779         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
9780         HAVE_DECL_VSNPRINTF.
9781         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
9782
9783         * modules/snprintf (Files): Remove lib/snprintf.h.
9784         (Depends-on): Add stdio.
9785         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
9786         (Include): Use <stdio.h> instead of snprintf.h.
9787         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
9788         HAVE_DECL_SNPRINTF.
9789         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
9790         * lib/getaddrinfo.c: Likewise.
9791
9792         * modules/stdio: New file.
9793         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
9794         * lib/snprintf.h: Remove file.
9795         * lib/vsnprintf.h: Remove file.
9796         * lib/.cppi-disable: Remove snprintf.h.
9797         * m4/stdio_h.m4: New file.
9798         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
9799
9800 2007-02-20  Jim Meyering  <jim@meyering.net>
9801
9802         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
9803         used by e.g., mingw.  From Bruno Haible.
9804
9805 2007-02-19  Bruno Haible  <bruno@clisp.org>
9806
9807         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
9808         warnings.
9809         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9810
9811 2007-02-19  Bruno Haible  <bruno@clisp.org>
9812
9813         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
9814         from mingw users.
9815
9816 2007-02-19  Bruno Haible  <bruno@clisp.org>
9817
9818         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
9819         warnings.
9820         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
9821
9822 2007-02-19  Jim Meyering  <jim@meyering.net>
9823
9824         Don't use FD after a successful "fdopendir (fd)".
9825         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
9826         Reset it by calling dirfd on the just-obtained DIR*.
9827
9828         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
9829         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
9830
9831 2007-02-18  Bruno Haible  <bruno@clisp.org>
9832
9833         * lib/readlink.c: Include <unistd.h>.
9834         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
9835         HAVE_READLINK.
9836         * modules/readlink (Depends-on): Add unistd.
9837         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9838         (Include): Add <unistd.h>.
9839
9840         * lib/getlogin_r.h: Remove file.
9841         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
9842         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
9843         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
9844         HAVE_DECL_GETLOGIN_R.
9845         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
9846         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9847         (Include): Use <unistd.h> instead of getlogin_r.h.
9848
9849         * lib/getcwd.h: Remove file.
9850         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
9851         * lib/xgetcwd.c: Likewise.
9852         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
9853         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
9854         * modules/getcwd (Files): Remove lib/getcwd.h.
9855         (Depends-on): Add unistd.
9856         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9857         (Include): Use <unistd.h> instad of getcwd.h.
9858
9859         * lib/ftruncate.c: Include <unistd.h> first.
9860         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
9861         Set HAVE_FTRUNCATE.
9862         * modules/ftruncate (Depends-on): Add unistd.
9863         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9864
9865         * lib/fchdir.c: Include <unistd.h> first.
9866         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
9867         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
9868         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
9869         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9870         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
9871
9872         * lib/dup2.c: Include <unistd.h> first.
9873         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
9874         HAVE_DUP2.
9875         * modules/dup2 (Depends-on): Add unistd.
9876         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9877
9878         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
9879         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
9880         REPLACE_CHOWN. Don't define chown as a macro here.
9881         * modules/chown (Depends-on): Add unistd.
9882         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9883
9884         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
9885         Add definition for GL_LINK_WARNING.
9886         (chown, dup2): New declarations.
9887         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
9888         link warning.
9889         (ftruncate): New declaration.
9890         (getcwd): New declaration, taken from old getcwd.h.
9891         (getlogin_r): New declaration, taken from old getlogin_r.h.
9892         (readlink): New declaration.
9893         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
9894         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
9895         (gl_PREREQ_UNISTD): Remove macro.
9896         (gl_UNISTD_MODULE_INDICATOR): New macro.
9897         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
9898         many new variables. Don't set UNISTD_H.
9899         * modules/unistd (Description): Change.
9900         (Depends-on): Add link-warning.
9901         (configure.ac): Update.
9902         (Makefile.am): Create unistd.h always. Substitute many new variables
9903         into it.
9904
9905 2007-02-18  Bruno Haible  <bruno@clisp.org>
9906
9907         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
9908         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
9909         HAVE_GETSUBOPT.
9910         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
9911         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
9912         * lib/getsubopt.h: Remove file.
9913         * modules/getsubopt (Files): Remove lib/getsubopt.h.
9914         (Depends-on): Add stdlib.
9915         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9916         (Includes): Use <stdlib.h> instead of getsubopt.h.
9917         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
9918         Set HAVE_GETSUBOPT.
9919         * lib/getsubopt.c: Don't include getsubopt.h.
9920
9921 2007-02-18  Bruno Haible  <bruno@clisp.org>
9922
9923         * modules/fchdir (Depends-on): Add dup2.
9924
9925 2007-02-18  Bruno Haible  <bruno@clisp.org>
9926
9927         * lib/stdlib_.h: Handle glibc's special invocation convention
9928         specially.
9929
9930 2007-02-18  Bruno Haible  <bruno@clisp.org>
9931
9932         * modules/stdlib-tests: New file.
9933         * tests/test-stdlib.c: New file.
9934
9935         * modules/mkstemp (Files): Remove lib/mkstemp.h.
9936         (Depends-on): Add stdlib.
9937         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9938         (Includes): Use <stdlib.h> instead of mkstemp.h.
9939         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
9940         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
9941         * lib/mkstemp.c: Don't include mkstemp.h.
9942         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
9943         * lib/stdlib--.h: Don't include mkstemp.h.
9944
9945         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
9946         (Depends-on): Add stdlib.
9947         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9948         (Includes): Use <stdlib.h> instead of mkdtemp.h.
9949         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
9950         HAVE_MKDTEMP.
9951         * lib/mkdtemp.c: Don't include mkdtemp.h.
9952         * lib/clean-temp.c: Don't include mkdtemp.h.
9953
9954         * modules/exit (Files): Remove lib/exit.h.
9955         (Depends-on): Add stdlib.
9956         (Makefile.am): Remove lib_SOURCES.
9957         (Include): Use <stdlib.h> instead of exit.h.
9958         * lib/argmatch.c: Don't include exit.h.
9959         * lib/execute.c: Likewise.
9960         * lib/pagealign_alloc.c: Likewise.
9961         * lib/pipe.c: Likewise.
9962         * lib/wait-process.c: Likewise.
9963         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
9964         * lib/exitfail.c: Likewise.
9965         * lib/savewd.c: Likewise.
9966         * lib/xsetenv.c: Likewise.
9967
9968         * modules/stdlib: New file.
9969         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
9970         and extra comments about mkstemp().
9971         * lib/exit.h: Remove file.
9972         * lib/mkdtemp.h: Remove file.
9973         * lib/mkstemp.h: Remove file.
9974         * m4/stdlib_h.m4: New file.
9975         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
9976
9977 2007-02-18  Bruno Haible  <bruno@clisp.org>
9978
9979         * modules/math-tests: New file.
9980         * tests/test-math.c: New file.
9981
9982         * modules/math: New file.
9983         * modules/mathl (Files): Remove lib/mathl.h.
9984         (Depends-on): Add math.
9985         (Makefile.am): Don't mention mathl.h.
9986         (Include): Use <math.h> instead of mathl.h.
9987         * lib/math_.h: New file.
9988         * lib/mathl.h: Remove file.
9989         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
9990         mathl.h.
9991         * lib/asinl.c: Likewise.
9992         * lib/atanl.c: Likewise.
9993         * lib/ceill.c: Likewise.
9994         * lib/cosl.c: Likewise.
9995         * lib/expl.c: Likewise.
9996         * lib/floorl.c: Likewise.
9997         * lib/frexpl.c: Likewise.
9998         * lib/ldexpl.c: Likewise.
9999         * lib/logl.c: Likewise.
10000         * lib/sincosl.c: Likewise.
10001         * lib/sinl.c: Likewise.
10002         * lib/sqrtl.c: Likewise.
10003         * lib/tanl.c: Likewise.
10004         * lib/trigl.c: Likewise.
10005         * m4/math_h.m4: New file.
10006         * MODULES.html.sh (Mathematics): Add math.
10007
10008 2007-02-17  Bruno Haible  <bruno@clisp.org>
10009
10010         * modules/wctype-tests: New file.
10011         * tests/test-wctype.c: New file.
10012
10013         * modules/wchar-tests: New file.
10014         * tests/test-wchar.c: New file.
10015
10016         * modules/unistd-tests: New file.
10017         * tests/test-unistd.c: New file.
10018
10019         * modules/time-tests: New file.
10020         * tests/test-time.c: New file.
10021
10022         * modules/sysexits-tests: New file.
10023         * tests/test-sysexits.c: New file.
10024
10025         * modules/sys_time-tests: New file.
10026         * tests/test-sys_time.c: New file.
10027
10028         * modules/sys_stat-tests: New file.
10029         * tests/test-sys_stat.c: New file.
10030
10031         * modules/sys_socket-tests: New file.
10032         * tests/test-sys_socket.c: New file.
10033
10034         * modules/sys_select-tests: New file.
10035         * tests/test-sys_select.c: New file.
10036
10037         * modules/string-tests: New file.
10038         * tests/test-string.c: New file.
10039
10040         * modules/stdbool-tests: New file.
10041         * tests/test-stdbool.c: New file.
10042
10043         * modules/netinet_in-tests: New file.
10044         * tests/test-netinet_in.c: New file.
10045
10046         * modules/inttypes-tests: New file.
10047         * tests/test-inttypes.c: New file.
10048
10049         * modules/fcntl-tests: New file.
10050         * tests/test-fcntl.c: New file.
10051
10052         * modules/byteswap-tests: New file.
10053         * tests/test-byteswap.c: New file.
10054
10055         * modules/arpa_inet-tests: New file.
10056         * tests/test-arpa_inet.c: New file.
10057
10058 2007-02-17  Bruno Haible  <bruno@clisp.org>
10059
10060         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
10061         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
10062         if the corresponding module is not enabled. Emit link warnings if
10063         the function is used nevertheless.
10064         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
10065         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
10066         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
10067         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
10068         * modules/inttypes (Depends-on): Add link-warning.
10069         (Makefile.am): Copy the contents of build-aux/link-warning.h into
10070         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
10071         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
10072         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
10073         * modules/imaxdiv (configure.ac): Likewise.
10074         * modules/strtoimax (configure.ac): Likewise.
10075         * modules/strtoumax (configure.ac): Likewise.
10076
10077 2007-02-17  Bruno Haible  <bruno@clisp.org>
10078
10079         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
10080         gl_STRING_MODULE_INDICATOR_DEFAULTS.
10081         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
10082         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
10083
10084 2007-02-17  Bruno Haible  <bruno@clisp.org>
10085
10086         * modules/link-warning: New file.
10087         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
10088         * lib/string_.h (GL_LINK_WARNING): Remove definition.
10089         * modules/string (Depends-on): Add link-warning.
10090         (Makefile.am): Copy the contents of build-aux/link-warning.h into
10091         string.h.
10092         * MODULES.html.sh (Support for building libraries and executables): Add
10093         link-warning.
10094
10095 2007-02-17  Bruno Haible  <bruno@clisp.org>
10096
10097         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
10098         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
10099         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
10100         long lines.
10101
10102 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
10103             Bruno Haible  <bruno@clisp.org>
10104
10105         * modules/tmpfile: New file.
10106         * lib/tmpfile.c: New file.
10107         * m4/tmpfile.m4: New file.
10108         * MODULES.html.sh (func_all_modules): New section "Input/output".
10109
10110 2007-02-15  Bruno Haible  <bruno@clisp.org>
10111
10112         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
10113         (supports_delete_on_close): New function.
10114         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
10115
10116 2007-02-14  Bruno Haible  <bruno@clisp.org>
10117
10118         * modules/mbspcasecmp-tests: New file.
10119         * tests/test-mbspcasecmp.sh: New file.
10120         * tests/test-mbspcasecmp.c: New file.
10121
10122         New module mbspcasecmp.
10123         * modules/mbspcasecmp: New file.
10124         * lib/mbspcasecmp.c: New file.
10125         * lib/string_.h (strncasecmp): Change warning message.
10126         (mbspcasecmp): New declaration.
10127         * m4/mbspcasecmp.m4: New file.
10128         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10129         GNULIB_MBSPCASECMP.
10130         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
10131         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
10132
10133 2007-02-14  Bruno Haible  <bruno@clisp.org>
10134
10135         * modules/mbsncasecmp-tests: New file.
10136         * tests/test-mbsncasecmp.sh: New file.
10137         * tests/test-mbsncasecmp.c: New file.
10138
10139         New module mbsncasecmp.
10140         * modules/mbsncasecmp: New file.
10141         * lib/mbsncasecmp.c: New file.
10142         * lib/string_.h (mbsncasecmp): New declaration.
10143         * m4/mbsncasecmp.m4: New file.
10144         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10145         GNULIB_MBSNCASECMP.
10146         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
10147         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
10148
10149 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
10150
10151         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
10152         Verify that it doesn't overlap with our flags.
10153         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
10154         do not have the desired effect in multibyte locales; instead, use
10155         mbscasecmp.
10156         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
10157         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
10158         we don't require GNU fnmatch ourselves (if our users require it, they
10159         should do so explicitly).
10160
10161         Fix regex code so it doesn't rely on strcasecmp.
10162         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
10163         Otherwise, include gnulib's langinfo.h.
10164         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
10165         undesirable behavior in non-C locales.  Instead, rely on localecharset.
10166         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
10167         * modules/regex (FILES): Remove m4/codeset.m4.
10168         (Depends-on): Add localcharset.  Remove strcase.
10169
10170 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10171
10172         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
10173         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
10174
10175 2007-02-13  Bruno Haible  <bruno@clisp.org>
10176
10177         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
10178         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10179
10180 2007-02-12  Bruno Haible  <bruno@clisp.org>
10181
10182         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
10183         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
10184         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
10185         time warning rather than a link error.
10186
10187 2007-02-12  Bruno Haible  <bruno@clisp.org>
10188
10189         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
10190         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
10191         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10192
10193 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
10194
10195         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
10196         args, not 2.
10197
10198 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
10199
10200         New module 'time', so that apps can include <time.h> as per
10201         POSIX and GNU instead of separate include files like time_r.h
10202         and timegm.h.  This implementation tries out a simpler approach
10203         for replacing decls in standard include files (as compared to
10204         the string module), somewhat as an experiment.
10205
10206         * config/srclist.txt: Comment out mktime.c for now.
10207         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
10208         since it doesn't apply any more.  Use generic wording instead.
10209         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
10210         'time'.
10211         * lib/time_.h, m4/time_h.m4, modules/time: New files.
10212         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
10213         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
10214         Don't include <sys/types.h>; no longer needed since we assume C89.
10215         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
10216         * lib/strftime.c: Likewise.
10217         * lib/time_r.c: Likewise.
10218         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
10219         * lib/nanosleep.c: Include <time.h> first, to check interface.
10220         * lib/strptime.c: Likewise.
10221         * lib/time_r.c: Likewise.
10222         * lib/timegm.c: Likewise.
10223         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
10224         needed.
10225         * lib/timegm.c: Don't include timegm.h; no longer needed.
10226         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
10227         time.h now handles any problems in that area.
10228         (struct timespec, nanosleep): Remove; time.h now arranges for these.
10229         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
10230         that time.h defines struct timespec.
10231         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
10232         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
10233         handles that.
10234         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
10235         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
10236         needed.  Set REPLACE_LOCALTIME.
10237         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
10238         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
10239         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
10240         nanosleep; time_h.m4 now does that.  Don't require
10241         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
10242         module handles this now.
10243         * modules/getdate (Depends-on): Remove timespec.  Add time.
10244         * modules/nanosleep (Depends-on): Likewise.
10245         * modules/stat-time (Depends-on): Likewise.
10246         * modules/nanosleep (Include): Include time.h, not timespec.h.
10247         * modules/strptime (Files): Remove lib/strptime.h.
10248         (Depends-on): Add extensions, time.
10249         (Include): Include time.h, not strptime.h.
10250         * modules/time_r (Files): Remove lib/time_r.h.
10251         (Depends-on): Add time.
10252         (Include): Include time.h, not time_r.h.
10253         * modules/timegm: Likewise.
10254         * modules/timespec (Description): Now does timespec-related decls
10255         of our own, instead of struct timespec itself.
10256         (Depends-on): Add time; remove extensions.
10257         (Maintainer): Add self.
10258         * modules/utimecmp (Depends-on): Add time; remove timespec.
10259         * modules/utimens (Depends-on): Likewise.
10260         * modules/xnanosleep (Depends-on): Likewise.
10261
10262 2007-02-11  Bruno Haible  <bruno@clisp.org>
10263
10264         * lib/c-strstr.c: Include allocsa.h.
10265         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
10266         * lib/c-strcasestr.c: Include allocsa.h.
10267         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
10268         * lib/strcasestr.c: Include allocsa.h.
10269         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
10270         * lib/mbsstr.c: Include allocsa.h.
10271         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
10272         allocsa/freesa instead of malloc/free.
10273         * lib/mbscasestr.c: Include allocsa.h.
10274         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
10275         allocsa/freesa instead of malloc/free.
10276         * modules/c-strstr (Depends-on): Add allocsa.
10277         * modules/c-strcasestr (Depends-on): Likewise.
10278         * modules/strcasestr (Depends-on): Likewise.
10279         * modules/mbsstr (Depends-on): Likewise.
10280         * modules/mbscasestr (Depends-on): Likewise.
10281
10282 2007-02-11  Bruno Haible  <bruno@clisp.org>
10283
10284         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
10285
10286         * modules/mbsspn-tests: New file.
10287         * tests/test-mbsspn.sh: New file.
10288         * tests/test-mbsspn.c: New file.
10289
10290 2007-02-11  Bruno Haible  <bruno@clisp.org>
10291
10292         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
10293
10294         * modules/mbspbrk-tests: New file.
10295         * tests/test-mbspbrk.sh: New file.
10296         * tests/test-mbspbrk.c: New file.
10297
10298 2007-02-11  Bruno Haible  <bruno@clisp.org>
10299
10300         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
10301         unneeded cast.
10302
10303         * modules/mbscspn-tests: New file.
10304         * tests/test-mbscspn.sh: New file.
10305         * tests/test-mbscspn.c: New file.
10306
10307 2007-02-11  Bruno Haible  <bruno@clisp.org>
10308
10309         * modules/mbscasecmp-tests: New file.
10310         * tests/test-mbscasecmp.sh: New file.
10311         * tests/test-mbscasecmp.c: New file.
10312
10313 2007-02-11  Bruno Haible  <bruno@clisp.org>
10314
10315         Ensure O(n) worst-case complexity of mbscasestr.
10316         * lib/mbscasestr.c: Include stdbool.h.
10317         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
10318         functions.
10319         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
10320         the bookkeeping indicates that it's worth it.
10321         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
10322
10323         * modules/mbscasestr-tests: New file.
10324         * tests/test-mbscasestr1.c: New file.
10325         * tests/test-mbscasestr2.sh: New file.
10326         * tests/test-mbscasestr2.c: New file.
10327         * tests/test-mbscasestr3.sh: New file.
10328         * tests/test-mbscasestr3.c: New file.
10329         * tests/test-mbscasestr4.sh: New file.
10330         * tests/test-mbscasestr4.c: New file.
10331         * m4/locale-tr.m4: New file.
10332
10333 2007-02-11  Bruno Haible  <bruno@clisp.org>
10334
10335         Ensure O(n) worst-case complexity of mbsstr.
10336         * lib/mbsstr.c: Include stdbool.h.
10337         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
10338         functions.
10339         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
10340         bookkeeping indicates that it's worth it.
10341         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
10342
10343         * modules/mbsstr-tests: New file.
10344         * tests/test-mbsstr1.c: New file.
10345         * tests/test-mbsstr2.sh: New file.
10346         * tests/test-mbsstr2.c: New file.
10347         * tests/test-mbsstr3.sh: New file.
10348         * tests/test-mbsstr3.c: New file.
10349         * m4/locale-fr.m4: New file.
10350
10351 2007-02-11  Bruno Haible  <bruno@clisp.org>
10352
10353         * lib/mbsrchr.c (mbsrchr): Fix bug.
10354
10355         * modules/mbsrchr-tests: New file.
10356         * tests/test-mbsrchr.sh: New file.
10357         * tests/test-mbsrchr.c: New file.
10358
10359 2007-02-11  Bruno Haible  <bruno@clisp.org>
10360
10361         * lib/mbschr.c (mbschr): Fix bug.
10362
10363         * modules/mbschr-tests: New file.
10364         * tests/test-mbschr.sh: New file.
10365         * tests/test-mbschr.c: New file.
10366         * m4/locale-zh.m4: New file.
10367
10368 2007-02-11  Bruno Haible  <bruno@clisp.org>
10369
10370         Support for copying multibyte string iterators.
10371         * lib/mbiter.h: Include <string.h>.
10372         (mbiter_multi_copy): New function.
10373         (mbi_copy): New macro.
10374         * lib/mbuiter.h: Include <string.h>.
10375         (mbuiter_multi_copy): New function.
10376         (mbui_copy): New macro.
10377
10378 2007-02-11  Bruno Haible  <bruno@clisp.org>
10379
10380         New module mbslen.
10381         * modules/mbslen: New file.
10382         * lib/mbslen.c: New file.
10383         * lib/string_.h (mbslen): New declaration.
10384         * m4/mbslen.m4: New file.
10385         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10386         GNULIB_MBSLEN.
10387         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
10388         * MODULES.html.sh (Internationalization functions): Add mbslen.
10389
10390 2007-02-11  Bruno Haible  <bruno@clisp.org>
10391
10392         Ensure O(n) worst-case complexity of strcasestr substitute.
10393         * lib/strcasestr.c: Include stdbool.h.
10394         (knuth_morris_pratt): New function.
10395         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
10396         bookkeeping indicates that it's worth it.
10397         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
10398
10399         * modules/strcasestr-tests: New file.
10400         * tests/test-strcasestr.c: New file.
10401
10402 2007-02-11  Bruno Haible  <bruno@clisp.org>
10403
10404         Ensure O(n) worst-case complexity of c_strcasestr.
10405         * lib/c-strcasestr.c: Include stdbool.h, string.h.
10406         (knuth_morris_pratt): New function.
10407         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
10408         the bookkeeping indicates that it's worth it.
10409         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
10410
10411         * modules/c-strcasestr-tests: New file.
10412         * tests/test-c-strcasestr.c: New file.
10413
10414 2007-02-11  Bruno Haible  <bruno@clisp.org>
10415
10416         Ensure O(n) worst-case complexity of c_strstr.
10417         * lib/c-strstr.c: Include stdbool.h, string.h.
10418         (knuth_morris_pratt): New function.
10419         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
10420         bookkeeping indicates that it's worth it.
10421         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
10422
10423         * lib/c-strstr.c: Complete rewrite for maintainability.
10424
10425         * modules/c-strstr-tests: New file.
10426         * tests/test-c-strstr.c: New file.
10427
10428 2007-02-11  Bruno Haible  <bruno@clisp.org>
10429
10430         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
10431         5.2.1 and earlier, whereby \055 was treated just like the range
10432         delimiter '-'.
10433         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
10434
10435 2007-02-08  Bruno Haible  <bruno@clisp.org>
10436
10437         * modules/regex (Depends-on): Add stdbool.
10438         Reported by Dalibor Topic <robilad@kaffe.org>.
10439
10440 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
10441
10442         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
10443         Prefer returning from main to exiting from it.
10444         Remove unnecessary parens after sizeof.
10445
10446 2007-02-05  Bruno Haible  <bruno@clisp.org>
10447
10448         New module mbssep.
10449         * modules/mbssep: New file.
10450         * lib/mbssep.c: New file.
10451         * lib/string_.h (strsep): Add a conditional link warning.
10452         (mbssep): New declaration.
10453         * m4/mbssep.m4: New file.
10454         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10455         GNULIB_MBSSEP.
10456         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
10457         * MODULES.html.sh (Internationalization functions): Add mbssep.
10458
10459 2007-02-05  Bruno Haible  <bruno@clisp.org>
10460
10461         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
10462         Optimize search in case of 1 delimiter.
10463
10464 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
10465
10466         * lib/acl.h: Include sys/types.h before sys/acl.h.
10467
10468 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
10469
10470         Merge upstream fix for glibc bugzilla #3957:
10471
10472         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
10473
10474         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
10475         bit for RE_HAT_LISTS_NOT_NEWLINE.
10476         (build_charclass_op): Remove bogus comment.
10477
10478 2007-02-05  Simon Josefsson  <simon@josefsson.org>
10479
10480         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
10481
10482 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
10483
10484         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
10485         * lib/memmem.c [!defined _LIBC]: Include config.h.
10486
10487 2007-02-04  Bruno Haible  <bruno@clisp.org>
10488
10489         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
10490         warning message.
10491
10492 2007-02-04  Bruno Haible  <bruno@clisp.org>
10493
10494         New module mbstok_r.
10495         * modules/mbstok_r: New file.
10496         * lib/mbstok_r.c: New file.
10497         * lib/string_.h (strtok_r): Change argument names to match the
10498         comments. Add a conditional link warning.
10499         (mbstok_r): New declaration.
10500         * m4/mbstok_r.m4: New file.
10501         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10502         GNULIB_MBSTOK_R.
10503         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
10504         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
10505
10506 2007-02-04  Bruno Haible  <bruno@clisp.org>
10507
10508         New module mbsspn.
10509         * modules/mbsspn: New file.
10510         * lib/mbsspn.c: New file.
10511         * lib/string_.h (strspn): Add a conditional link warning.
10512         (mbsspn): New declaration.
10513         * m4/mbsspn.m4: New file.
10514         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10515         GNULIB_MBSSPN.
10516         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
10517         * MODULES.html.sh (Internationalization functions): Add mbsspn.
10518
10519 2007-02-04  Bruno Haible  <bruno@clisp.org>
10520
10521         New module mbspbrk.
10522         * modules/mbspbrk: New file.
10523         * lib/mbspbrk.c: New file.
10524         * lib/string_.h (strpbrk): Add a conditional link warning.
10525         (mbspbrk): New declaration.
10526         * m4/mbspbrk.m4: New file.
10527         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10528         GNULIB_MBSPBRK.
10529         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
10530         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
10531
10532 2007-02-04  Bruno Haible  <bruno@clisp.org>
10533
10534         New module mbscspn.
10535         * modules/mbscspn: New file.
10536         * lib/mbscspn.c: New file.
10537         * lib/string_.h (strcspn): Add a conditional link warning.
10538         (mbscspn): New declaration.
10539         * m4/mbscspn.m4: New file.
10540         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10541         GNULIB_MBSCSPN.
10542         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
10543         * MODULES.html.sh (Internationalization functions): Add mbscspn.
10544
10545 2007-02-04  Bruno Haible  <bruno@clisp.org>
10546
10547         New module mbscasestr, reduced goal of strcasestr.
10548         * modules/mbscasestr: New file.
10549         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
10550         (mbscasestr): Renamed from strcasestr.
10551         * lib/strcasestr.c: Don't include mbuiter.h.
10552         (strcasestr): Remove support for multibyte locales.
10553         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
10554         Change the conditional link warning.
10555         (mbscasestr): New declaration.
10556         * m4/mbscasestr.m4: New file.
10557         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
10558         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
10559         REPLACE_STRCASESTR.
10560         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
10561         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10562         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
10563         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
10564         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
10565         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
10566         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
10567         (Depends-on): Remove mbuiter.
10568         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
10569
10570 2007-02-04  Bruno Haible  <bruno@clisp.org>
10571
10572         Simplify handling of strncasecmp.
10573         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
10574         the conditional link warning.
10575         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10576         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
10577         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
10578         * modules/strcase (configure.ac): Don't invoke
10579         gl_STRING_MODULE_INDICATOR.
10580         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
10581
10582 2007-02-04  Bruno Haible  <bruno@clisp.org>
10583
10584         New module mbscasecmp, reduced goal of strcasecmp.
10585         * modules/mbscasecmp: New file.
10586         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
10587         (mbscasecmp): Renamed from strcasecmp.
10588         * lib/strcasecmp.c: Don't include mbuiter.h.
10589         (strcasecmp): Remove support for multibyte locales.
10590         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
10591         Change the conditional link warning.
10592         (mbscasecmp): New declaration.
10593         * m4/mbscasecmp.m4: New file.
10594         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
10595         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
10596         REPLACE_STRCASECMP.
10597         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
10598         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10599         GNULIB_MBSCASECMP.
10600         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
10601         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
10602         * modules/strcase (Files): Remove m4/mbrtowc.m4.
10603         (Depends-on): Remove mbuiter.
10604         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
10605
10606 2007-02-04  Bruno Haible  <bruno@clisp.org>
10607
10608         New module mbsstr. Remove module strstr.
10609         * modules/mbsstr: New file.
10610         * modules/strstr: Remove file.
10611         * lib/mbsstr.c: Renamed from lib/strstr.c.
10612         (mbsstr): Renamed from strstr.
10613         * lib/string_.h (strstr): Remove declaration. Change the conditional
10614         link warning.
10615         (mbsstr): New declaration.
10616         * m4/mbsstr.m4: New file.
10617         * m4/strstr.m4: Remove file.
10618         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
10619         REPLACE_STRSTR.
10620         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
10621         Don't initialize GNULIB_STRSTR.
10622         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
10623         substitute GNULIB_STRSTR and REPLACE_STRSTR.
10624         * MODULES.html.sh (Internationalization functions): Add mbsstr.
10625         (Support for systems lacking ANSI C 89): Remove strstr.
10626
10627 2007-02-04  Bruno Haible  <bruno@clisp.org>
10628
10629         New module mbsrchr.
10630         * modules/mbsrchr: New file.
10631         * lib/mbsrchr.c: New file.
10632         * lib/string_.h (strrchr): Add a conditional link warning.
10633         (mbsrchr): New declaration.
10634         * m4/mbsrchr.m4: New file.
10635         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10636         GNULIB_MBSRCHR.
10637         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
10638         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
10639
10640 2007-02-04  Bruno Haible  <bruno@clisp.org>
10641
10642         New module mbschr.
10643         * modules/mbschr: New file.
10644         * lib/mbschr.c: New file.
10645         * lib/string_.h (strchr): Add a conditional link warning.
10646         (mbschr): New declaration.
10647         * m4/mbschr.m4: New file.
10648         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
10649         GNULIB_MBSCHR.
10650         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
10651         * MODULES.html.sh (Internationalization functions): Add mbschr.
10652
10653 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
10654
10655         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
10656
10657         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
10658
10659 2007-02-04  Bruno Haible  <bruno@clisp.org>
10660
10661         New module description section 'configure.ac-early'.
10662         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
10663         (func_get_autoconf_early_snippet): New function.
10664         (func_import, func_create_testdir): Use it. Remove special cases for
10665         modules 'extensions' and 'lock'.
10666         * modules/extensions (configure.ac-early): Require
10667         gl_USE_SYSTEM_EXTENSIONS.
10668         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
10669
10670 2007-02-04  Bruno Haible  <bruno@clisp.org>
10671
10672         Make use of gcj-4.3's -fsource and -ftarget option.
10673         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
10674         and if so try the options -fsource and -ftarget.
10675         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
10676         source_version, ftarget_option, target_version arguments.
10677         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
10678         (is_envjavac_oldgcj_14_14_usable): Renamed from
10679         is_envjavac_gcj_14_14_usable.
10680         (is_envjavac_oldgcj_14_13_usable): Renamed from
10681         is_envjavac_gcj_14_13_usable.
10682         (is_gcj_present): Update.
10683         (is_gcj_43, is_gcj43_usable): New functions.
10684         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
10685         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
10686         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
10687         try the options -fsource and -ftarget.
10688
10689 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
10690
10691         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
10692         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
10693         larger value.
10694
10695 2007-02-03  Jim Meyering  <jim@meyering.net>
10696
10697         Give tools a better chance to allocate space for very large buffers.
10698         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
10699
10700         Make pwd and readlink work also when run with an unreadable parent dir
10701         on systems with openat support.
10702         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
10703         provided getcwd function, even when we have openat support.
10704         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
10705
10706 2007-02-02  Bruno Haible  <bruno@clisp.org>
10707
10708         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
10709         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
10710         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
10711         portability problems if one of these functions is only used on specific
10712         platforms.
10713         Reported by Paul Eggert.
10714
10715 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
10716
10717         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
10718         is causing more trouble than it's curing.
10719         * lib/regex_internal.h (__mempcpy): Remove.
10720         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
10721         (and make the code a tad smaller to boot).
10722         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
10723
10724 2007-02-02  Jim Meyering  <jim@meyering.net>
10725
10726         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
10727         section, not in the Makefile.am: one.
10728
10729 2007-02-02  Eric Blake  <ebb9@byu.net>
10730
10731         * lib/strchrnul.c: Always include config.h first.
10732
10733         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
10734         gnulib strstr is not necessary here.
10735
10736 2007-02-02  Simon Josefsson  <simon@josefsson.org>
10737
10738         * m4/socklen.m4: Fix typo.
10739
10740 2007-02-02  Eric Blake  <ebb9@byu.net>
10741
10742         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
10743         * modules/netinet_in (Makefile.am): Likewise.
10744
10745 2007-02-01  Bruno Haible  <bruno@clisp.org>
10746
10747         * lib/string_.h (GL_LINK_WARNING): New macro.
10748         (strcasecmp, strstr, strcasestr): If provided by the system,
10749         conditionally define as a macro that leads to a warning instead of to
10750         an error.
10751         (strncasecmp): Conditionally define as a macro that leads to a warning.
10752
10753 2007-02-01  Karl Berry  <karl@gnu.org>
10754
10755         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
10756
10757 2007-02-01  Bruno Haible  <bruno@clisp.org>
10758
10759         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
10760         renamings.
10761
10762 2007-02-01  Eric Blake  <ebb9@byu.net>
10763
10764         * modules/regex (Depends-on): Revert dependence on mempcpy.
10765         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
10766         module's definition of mempcpy.
10767         Reported by Paul Eggert.
10768
10769 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
10770
10771         * lib/string_.h: If the gnulib module XYZ is not present, undefine
10772         the symbol XYZ before redefining it.  This fixes a problem with
10773         programs that don't use XYZ, when compiled on systems that define
10774         XYZ to something else.
10775
10776 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
10777
10778         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
10779         occurs when "mkdir -m foo" creates a setgid directory that is (1)
10780         writeable to group or other and (2) is intended to have a special
10781         mode bit that is set or cleared.  In such a case, the directory
10782         should be neither group- nor other-writeable until the special
10783         mode bits are right.
10784
10785 2007-01-31  Eric Blake  <ebb9@byu.net>
10786
10787         * modules/mountlist (Depends-on): Add strstr.
10788
10789         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
10790         bug.
10791         * modules/string (Makefile.am): Remove redundant replacement.
10792         * modules/regex (Depends-on): Add mempcpy.
10793
10794 2007-01-31  Bruno Haible  <bruno@clisp.org>
10795
10796         New module description field 'Link'.
10797         * gnulib-tool (func_usage): Document --extract-link-directive.
10798         (sed_extract_prog): Recognize 'Link' directive.
10799         (func_get_link_directive): New function.
10800         (func_import): Show summary of link directives.
10801         Handle --extract-link-directive option.
10802         * modules/acl (Link): New section.
10803         * modules/clock-time (Link): New section.
10804         * modules/euidaccess (Link): New section.
10805         * modules/gettext (Link): New section.
10806         * modules/iconv (Link): New section.
10807         * modules/lock (Link): New section.
10808         * modules/nanosleep (Link): New section.
10809         * modules/readline (Link): New section.
10810
10811 2007-01-27  Bruno Haible  <bruno@clisp.org>
10812
10813         Enforce the use of gnulib modules for unportable <string.h> functions.
10814         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
10815         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
10816         (gl_HEADER_STRING_H_BODY): Require it.
10817         * lib/string_.h: If the gnulib module XYZ is not present, redefine
10818         the symbol XYZ to one that gives a link error.
10819         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
10820         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
10821         * modules/mempcpy (configure.ac): Likewise.
10822         * modules/memrchr (configure.ac): Likewise.
10823         * modules/stpcpy (configure.ac): Likewise.
10824         * modules/stpncpy (configure.ac): Likewise.
10825         * modules/strcase (configure.ac): Likewise.
10826         * modules/strcasestr (configure.ac): Likewise.
10827         * modules/strchrnul (configure.ac): Likewise.
10828         * modules/strdup (configure.ac): Likewise.
10829         * modules/strndup (configure.ac): Likewise.
10830         * modules/strnlen (configure.ac): Likewise.
10831         * modules/strpbrk (configure.ac): Likewise.
10832         * modules/strsep (configure.ac): Likewise.
10833         * modules/strstr (configure.ac): Likewise.
10834         * modules/strtok_r (configure.ac): Likewise.
10835
10836 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
10837
10838         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
10839
10840 2007-01-30  Jim Meyering  <jim@meyering.net>
10841
10842         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
10843
10844 2007-01-29  Bruno Haible  <bruno@clisp.org>
10845
10846         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
10847         * lib/execute.c: Likewise.
10848         * lib/pipe.c: Likewise.
10849         * lib/printf-args.h: Likewise.
10850         * lib/printf-args.c: Likewise.
10851         * lib/printf-parse.c: Likewise.
10852         * lib/vasnprintf.c: Likewise.
10853
10854 2007-01-29  Eric Blake  <ebb9@byu.net>
10855
10856         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
10857         declaration.
10858
10859 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
10860
10861         * lib/strptime.h (strptime): Use 'restrict' for args where
10862         POSIX requires this.
10863         * lib/strptime.c (strptime): Likewise.
10864         Change license notice from LGPL to GPL, since gnulib-tool will
10865         change this as needed.
10866         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
10867         defined.
10868         Include "strptime.h" first, to check interface.
10869         Do not #undef _LIBC and _NL_CURRENT.
10870         Do not include <stdlib.h>; no longer needed.
10871         Include "time_r.h" and declare ptime_locale_status
10872         only if _LIBC is not defined.
10873         (__P): Remove unused macro.
10874         (match_string): Bring back glibc version, but use it only if _LIBC
10875         is defined.
10876         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
10877         Remove unnecessary assertion and abort() call.
10878         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
10879         * m4/strptime.m4: Fix serial number comment.
10880         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
10881         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
10882         (Depends-on): Add time_r.
10883
10884 2007-01-29  Bruno Haible  <bruno@clisp.org>
10885
10886         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10887         strptime.
10888         * modules/strptime (Depends-on): Add stdbool.
10889         * lib/strptime.h: Include <time.h> always. Add comments.
10890
10891 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
10892
10893         * modules/strptime: New file.
10894         * lib/strptime.h: New file.
10895         * lib/strptime.c: New file.
10896         * m4/strptime.m4: New file.
10897
10898 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
10899
10900         * MODULES.html.sh: New module mpsort.
10901         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
10902
10903         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
10904         a circularity problem with HP-UX ia64 reported by Bob Proulx in
10905         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
10906         All uses changed.
10907         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
10908         All uses changed.
10909         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
10910         to _Restrict_.
10911         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
10912         the parameter matches the prototype.
10913
10914 2007-01-28  Jim Meyering  <jim@meyering.net>
10915
10916         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
10917         sys/time.h here, reverting that part of the previous patch:
10918         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
10919
10920 2007-01-28  Bruno Haible  <bruno@clisp.org>
10921
10922         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
10923         value of $(SYS_TIME_H).
10924         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
10925         remove it conditionally, too. [added by Jim Meyering]
10926         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
10927         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
10928         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
10929         GETTIMEOFDAY_REPLACEMENT to 1.
10930
10931 2007-01-28  Bruno Haible  <bruno@clisp.org>
10932
10933         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
10934         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
10935         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
10936         Set UNISTD_H instead of UNISTD_H2.
10937         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
10938
10939 2007-01-28  Bruno Haible  <bruno@clisp.org>
10940
10941         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
10942         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
10943
10944 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10945
10946         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
10947         (func_create_testdir): Ensure C locale for `grep' and `tr'
10948         character ranges.
10949         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
10950         ACLOCAL_AMFLAGS parsing state machine.
10951
10952 2007-01-27  Bruno Haible  <bruno@clisp.org>
10953
10954         * modules/unistr/base: Update.
10955
10956 2007-01-27  Bruno Haible  <bruno@clisp.org>
10957
10958         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
10959         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
10960         * modules/unistr/u32-mbtouc-unsafe: Renamed from
10961         modules/unistr/u32-mbtouc.
10962         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
10963         * lib/unistr.h: Update.
10964         * lib/linebreak.c: Update.
10965         * modules/unistr/u32-mbtouc: Renamed from
10966         modules/unistr/u32-mbtouc-safe.
10967         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
10968         * lib/unistr.h: Update.
10969         * lib/unistr/u32-to-u8.c: Update.
10970         * lib/unistr/u32-to-u16.c: Update.
10971
10972 2007-01-27  Bruno Haible  <bruno@clisp.org>
10973
10974         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
10975         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
10976         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
10977         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
10978         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
10979         * modules/unistr/u16-mbtouc-unsafe: Renamed from
10980         modules/unistr/u16-mbtouc.
10981         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
10982         * lib/unistr.h: Update.
10983         * lib/linebreak.c: Update.
10984         * modules/linebreak: Update.
10985         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
10986         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
10987         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
10988         * modules/unistr/u16-mbtouc: Renamed from
10989         modules/unistr/u16-mbtouc-safe.
10990         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
10991         * lib/unistr.h: Update.
10992         * lib/unistr/u16-to-u8.c: Update.
10993         * modules/unistr/u16-to-u8: Update.
10994         * lib/unistr/u16-to-u32.c: Update.
10995         * modules/unistr/u16-to-u32: Update.
10996
10997 2007-01-27  Bruno Haible  <bruno@clisp.org>
10998
10999         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
11000         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
11001         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
11002         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
11003         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
11004         * modules/unistr/u8-mbtouc-unsafe: Renamed from
11005         modules/unistr/u8-mbtouc.
11006         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
11007         * lib/unistr.h: Update.
11008         * lib/striconveh.c: Update.
11009         * modules/striconveh: Update.
11010         * lib/linebreak.c: Update.
11011         * modules/linebreak: Update.
11012         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
11013         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
11014         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
11015         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
11016         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
11017         * lib/unistr.h: Update.
11018         * lib/striconveh.c: Update.
11019         * modules/striconveh: Update.
11020         * lib/unistr/u8-to-u16.c: Update.
11021         * modules/unistr/u8-to-u16: Update.
11022         * lib/unistr/u8-to-u32.c: Update.
11023         * modules/unistr/u8-to-u32: Update.
11024
11025 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11026
11027         Sync from Libtool.
11028         * lib/argz.c: Do not include strings.h nor memory.h, include
11029         string.h unconditionally.  Patch by Simon Josefsson.
11030
11031 2007-01-27  Bruno Haible  <bruno@clisp.org>
11032
11033         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
11034         from gl_HEADER_STRING_H_BODY.
11035         (gl_HEADER_STRING_H_BODY): Require it.
11036         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
11037         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
11038         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
11039         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
11040         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
11041         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
11042         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11043         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
11044         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
11045         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
11046         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
11047         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
11048         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
11049         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11050         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
11051
11052 2007-01-27  Bruno Haible  <bruno@clisp.org>
11053
11054         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
11055         check_PROGRAMS into noinst_PROGRAMS.
11056         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
11057         check_PROGRAMS in this case.
11058         (func_import): Set for_test to false.
11059         (func_create_testdir): Set for_test to true.
11060
11061 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11062             Bruno Haible  <bruno@clisp.org>
11063
11064         * modules/strcasestr (Files): Remove lib/strcasestr.h.
11065         (Depends-on): Add string.
11066         (Includes): Use <string.h> instead of strcasestr.h.
11067         * modules/string (Makefile.am): Also substitute the value of
11068         REPLACE_STRCASESTR.
11069         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
11070         assume strcasestr is declared in <string.h> not <strings.h>. Also
11071         set REPLACE_STRCASESTR.
11072         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
11073         REPLACE_STRCASESTR.
11074         * lib/strcasestr.h: Remove file.
11075         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
11076         * lib/string_.h (strcasestr): New declaration.
11077
11078 2007-01-27  Bruno Haible  <bruno@clisp.org>
11079
11080         * lib/string_.h: Use 'extern'.
11081
11082 2007-01-27  Jim Meyering  <jim@meyering.net>
11083
11084         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
11085         of set-but-not-used local, "q".
11086
11087         * lib/mempcpy.c: Include <config.h> before <string.h>.
11088         This fixes a compilation error on HP-UX, due to the system's
11089         "restrict"-using mempcpy prototype.
11090
11091 2007-01-26  Bruno Haible  <bruno@clisp.org>
11092
11093         Small optimization.
11094         * lib/javacomp.c: Include c-strstr.h.
11095          (is_envjavac_gcj): Use c_strstr instead of strstr.
11096         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
11097
11098 2007-01-26  Bruno Haible  <bruno@clisp.org>
11099
11100         * MODULES.html.sh (Unicode string functions): Add the new modules.
11101
11102         * modules/uniconv/u32-strconv-to-locale: New file.
11103         * lib/uniconv/u32-strconv-to-locale.c: New file.
11104
11105         * modules/uniconv/u16-strconv-to-locale: New file.
11106         * lib/uniconv/u16-strconv-to-locale.c: New file.
11107
11108         * modules/uniconv/u8-strconv-to-locale: New file.
11109         * lib/uniconv/u8-strconv-to-locale.c: New file.
11110
11111         * modules/uniconv/u32-strconv-from-locale: New file.
11112         * lib/uniconv/u32-strconv-from-locale.c: New file.
11113
11114         * modules/uniconv/u16-strconv-from-locale: New file.
11115         * lib/uniconv/u16-strconv-from-locale.c: New file.
11116
11117         * modules/uniconv/u8-strconv-from-locale: New file.
11118         * lib/uniconv/u8-strconv-from-locale.c: New file.
11119
11120         * modules/uniconv/u32-strconv-to-enc: New file.
11121         * lib/uniconv/u32-strconv-to-enc.c: New file.
11122         * modules/uniconv/u32-strconv-to-enc-tests: New file.
11123         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
11124
11125         * modules/uniconv/u16-strconv-to-enc: New file.
11126         * lib/uniconv/u16-strconv-to-enc.c: New file.
11127         * lib/uniconv/u-strconv-to-enc.h: New file.
11128         * modules/uniconv/u16-strconv-to-enc-tests: New file.
11129         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
11130
11131         * modules/uniconv/u8-strconv-to-enc: New file.
11132         * lib/uniconv/u8-strconv-to-enc.c: New file.
11133         * modules/uniconv/u8-strconv-to-enc-tests: New file.
11134         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
11135
11136         * modules/uniconv/u32-strconv-from-enc: New file.
11137         * lib/uniconv/u32-strconv-from-enc.c: New file.
11138         * modules/uniconv/u32-strconv-from-enc-tests: New file.
11139         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
11140
11141         * modules/uniconv/u16-strconv-from-enc: New file.
11142         * lib/uniconv/u16-strconv-from-enc.c: New file.
11143         * modules/uniconv/u16-strconv-from-enc-tests: New file.
11144         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
11145
11146         * modules/uniconv/u8-strconv-from-enc: New file.
11147         * lib/uniconv/u8-strconv-from-enc.c: New file.
11148         * lib/uniconv/u-strconv-from-enc.h: New file.
11149         * modules/uniconv/u8-strconv-from-enc-tests: New file.
11150         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
11151
11152         * modules/uniconv/u32-conv-from-enc: New file.
11153         * lib/uniconv/u32-conv-from-enc.c: New file.
11154         * modules/uniconv/u32-conv-from-enc-tests: New file.
11155         * tests/uniconv/test-u32-conv-from-enc.c: New file.
11156
11157         * modules/uniconv/u16-conv-from-enc: New file.
11158         * lib/uniconv/u16-conv-from-enc.c: New file.
11159         * lib/uniconv/u-conv-from-enc.h: New file.
11160         * modules/uniconv/u16-conv-from-enc-tests: New file.
11161         * tests/uniconv/test-u16-conv-from-enc.c: New file.
11162
11163         * modules/uniconv/u8-conv-from-enc: New file.
11164         * lib/uniconv/u8-conv-from-enc.c: New file.
11165         * modules/uniconv/u8-conv-from-enc-tests: New file.
11166         * tests/uniconv/test-u8-conv-from-enc.c: New file.
11167
11168         * modules/uniconv/base: New file.
11169         * lib/uniconv.h: New file.
11170
11171 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
11172
11173         * doc/gnulib-tool.texi (Initial import): Update to match current
11174         behavior with strdup module.
11175         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
11176         * lib/memmem.h: Remove; all uses removed.  This is now done
11177         by <string.h>.
11178         * lib/mempcpy.h: Likewise.
11179         * lib/memrchr.h: Likewise.
11180         * lib/stpcpy.h: Likewise.
11181         * lib/stpncpy.h: Likewise.
11182         * lib/strcase.h: Likewise.
11183         * lib/strchrnul.h: Likewise.
11184         * lib/strdup.h: Likewise.
11185         * lib/strndup.h: Likewise.
11186         * lib/strnlen.h: Likewise.
11187         * lib/strpbrk.h: Likewise.
11188         * lib/strsep.h: Likewise.
11189         * lib/strstr.h: Likewise.
11190         * lib/strtok_r.h: Likewise.
11191         * lib/string_.h: New file.
11192         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
11193         Rely on <string.h> instead.
11194         * lib/canon-host.c: Likewise.
11195         * lib/chdir-long.c: Likewise.
11196         * lib/concatpath.c: Likewise.
11197         * lib/exclude.c: Likewise.
11198         * lib/fchdir.c: Likewise.
11199         * lib/getaddrinfo.c: Likewise.
11200         * lib/getcwd.c: Likewise.
11201         * lib/getsubopt.c: Likewise.
11202         * lib/glob.c: Likewise.
11203         * lib/hard-locale.c: Likewise.
11204         * lib/iconvme.c: Likewise.
11205         * lib/javacomp.c: Likewise.
11206         * lib/mempcpy.c: Likewise.
11207         * lib/memrchr.c: Likewise.
11208         * lib/regex_internal.h: Likewise.
11209         * lib/stpncpy.c: Likewise.
11210         * lib/strcasecmp.c: Likewise.
11211         * lib/strchrnul.c: Likewise.
11212         * lib/strdup.c: Likewise.
11213         * lib/striconv.c: Likewise.
11214         * lib/striconveh.c: Likewise.
11215         * lib/striconveha.c: Likewise.
11216         * lib/strncasecmp.c: Likewise.
11217         * lib/strndup.c: Likewise.
11218         * lib/strnlen.c: Likewise.
11219         * lib/strsep.c: Likewise.
11220         * lib/strstr.c: Likewise.
11221         * lib/strtok_r.c: Likewise.
11222         * lib/userspec.c: Likewise.
11223         * lib/w32spawn.h: Likewise.
11224         * lib/xstrndup.c: Likewise.
11225         * lib/mountlist.c (strstr): Remove decl.
11226         * m4/string_h.m4: New file.
11227         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
11228         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
11229         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
11230         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
11231         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
11232         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
11233         Set REPLACE_STRCASECMP if necessary.
11234         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
11235         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
11236         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
11237         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
11238         HAVE_DECL_STRDUP if necessary.
11239         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
11240         since gl_FUNC_STRNDUP does that now.
11241         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
11242         Check for decl here...
11243         (gl_PREREQ_STRNLEN): ... not here.
11244         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
11245         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
11246         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
11247         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
11248         necessary.
11249         * modules/string: New file.
11250         * modules/memmem (Files): Remove special-purpose include file.
11251         (Depends-on): Add string.
11252         (Include): Include <string.h>, not the removed file.
11253         * modules/mempcpy: Likewise.
11254         * modules/memrchr: Likewise.
11255         * modules/stpcpy: Likewise.
11256         * modules/stpncpy: Likewise.
11257         * modules/strcase: Likewise.
11258         * modules/strchrnul: Likewise.
11259         * modules/strdup: Likewise.
11260         * modules/strndup: Likewise.
11261         * modules/strnlen: Likewise.
11262         * modules/strpbrk: Likewise.
11263         * modules/strsep: Likewise.
11264         * modules/strstr: Likewise.
11265         * modules/strtok_r: Likewise.
11266         * tests/test-dirname.c: Don't include "strdup.h", since
11267         <string.h> now suffices.
11268         * tests/test-memmem.c: Don't include "memmem.h", since
11269         <string.h> now suffices.
11270
11271 2007-01-25  Bruno Haible  <bruno@clisp.org>
11272
11273         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
11274         *resultp is 0.
11275
11276         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
11277         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
11278         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
11279         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
11280
11281         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
11282         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
11283         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
11284         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
11285         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
11286         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
11287
11288 2007-01-24  Bruno Haible  <bruno@clisp.org>
11289
11290         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
11291         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
11292         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
11293         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
11294         gl_FUNC_FTS_CORE.
11295         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
11296         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
11297         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
11298         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
11299         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
11300         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
11301         gl_FUNC_FCHOWNAT.
11302         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
11303         gl_FUNC_STRFTIME.
11304         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
11305         Reported by Ralf Wildenhues.
11306
11307 2007-01-24  Bruno Haible  <bruno@clisp.org>
11308
11309         Drop AC_REQUIRE calls that are redundant with the module dependencies.
11310         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
11311         gl_GETADDRINFO.
11312         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
11313         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
11314         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
11315
11316 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
11317
11318         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
11319         Don't use 'exit'; just return from 'main'.
11320         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
11321
11322         * lib/fnmatch_.h: Readjust white space and comments to match
11323         glibc, to avoid spurious diffs.
11324
11325 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
11326
11327         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
11328         2004-12-01 change by Jakub Jelinek, since this code won't compile
11329         if !LIBC.  Problem reported by Bob Proulx.
11330
11331 2007-01-23  Bruno Haible  <bruno@clisp.org>
11332
11333         * lib/striconveh.c: Include c-strcaseeq.h.
11334         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
11335         * modules/striconveh (Depends-on): Add c-strcaseeq.
11336
11337 2007-01-23  Bruno Haible  <bruno@clisp.org>
11338
11339         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
11340
11341         * modules/c-strcaseeq: New file.
11342         * lib/c-strcaseeq.h: New file.
11343
11344         * modules/streq: New file.
11345         * lib/streq.h: New file.
11346
11347 2007-01-23  Bruno Haible  <bruno@clisp.org>
11348
11349         * modules/striconveha-tests: New file.
11350         * tests/test-striconveha.c: New file.
11351
11352         * lib/striconveha.h: Include <stdbool.h>.
11353         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
11354         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
11355         (mem_iconveha_notranslit): Renamed from mem_iconveha.
11356         (mem_iconveha): New function.
11357         (str_iconveha_notranslit): Renamed from str_iconveha.
11358         (str_iconveha): New function.
11359         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
11360         c-strcase.
11361
11362 2007-01-23  Bruno Haible  <bruno@clisp.org>
11363
11364         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
11365         encodings without forgiving before trying any encoding with handler.
11366         (str_iconveha): Try all encodings without forgiving before trying any
11367         encoding with handler.
11368
11369 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
11370
11371         Import the following changes from libc.
11372
11373         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
11374
11375         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
11376
11377         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
11378
11379         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
11380         normal_bracket label.
11381
11382         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
11383
11384         [BZ #361]
11385         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
11386         to normal_bracket after fetching the next character.
11387
11388 2007-01-22  Bruno Haible  <bruno@clisp.org>
11389
11390         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
11391         argument.
11392         * lib/striconveh.c (iconv_carefully_1): New function.
11393         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
11394         argument.
11395         (str_cd_iconveh): Update.
11396         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
11397         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
11398         * tests/test-striconveh.c (MAGIC): New macro.
11399         (new_offsets): New function.
11400         (main): Test call with and without offsets.
11401
11402 2007-01-22  Bruno Haible  <bruno@clisp.org>
11403
11404         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
11405         * modules/sys_select (Makefile.am): Likewise.
11406         * modules/sys_socket (Makefile.am): Likewise.
11407         * modules/sys_time (Makefile.am): Likewise.
11408
11409 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
11410
11411         * modules/gettimeofday (License): Change from GPL to LGPL, since
11412         gettimeofday is a library function.
11413
11414 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11415
11416         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
11417
11418 2007-01-21  Bruno Haible  <bruno@clisp.org>
11419
11420         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
11421
11422 2007-01-21  Bruno Haible  <bruno@clisp.org>
11423
11424         * modules/striconveha: New file.
11425         * lib/striconveha.h: New file.
11426         * lib/striconveha.c: New file.
11427         * MODULES.html.sh (Internationalization functions): Add striconveha.
11428         * lib/striconv.c (str_iconv): Optimize the case of an empty input
11429         string.
11430         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
11431
11432 2007-01-21  Bruno Haible  <bruno@clisp.org>
11433
11434         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
11435         * lib/striconveh.c (str_iconveh): Likewise.
11436
11437 2007-01-21  Bruno Haible  <bruno@clisp.org>
11438
11439         * lib/striconveh.h (mem_iconveh): New declaration.
11440         * lib/striconveh.c (mem_iconveh): New function.
11441         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
11442
11443 2007-01-21  Bruno Haible  <bruno@clisp.org>
11444
11445         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
11446
11447         * lib/striconveh.h (mem_cd_iconveh): Change specification.
11448         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
11449         original result buffer.
11450         (str_cd_iconveh): Update.
11451         * tests/test-striconveh.c (main): Update.
11452
11453         * lib/striconv.h (mem_cd_iconv): Change specification.
11454         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
11455         result buffer.
11456         (str_cd_iconv): Update.
11457         * tests/test-striconv.c (main): Update.
11458
11459 2007-01-21  Bruno Haible  <bruno@clisp.org>
11460
11461         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
11462
11463 2007-01-20  Jim Meyering  <jim@meyering.net>
11464
11465         * lib/userspec.c (parse_with_separator): If a user or group string
11466         starts with "+", skip the corresponding name-to-ID look-up, since
11467         such a look-up must fail: user and group names may not include "+".
11468
11469 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
11470
11471         * lib/poll.c: Include sys/time.h and time.h unconditionally,
11472         since we now assume the sys_time module.
11473         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
11474         check for sys/time.h; no longer needed.
11475         * modules/poll (Depends-on): Depend on sys_time.
11476
11477 2007-01-18  Bruno Haible  <bruno@clisp.org>
11478
11479         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
11480         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
11481
11482         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
11483         gettimeofday.
11484
11485         * tests/test-gettimeofday.c: Include <time.h>.
11486         (dummy): Remove variable.
11487
11488         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
11489         gl_HEADER_SYS_TIME_H.
11490         (gl_HEADER_SYS_TIME_H): New macro.
11491
11492         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
11493         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11494         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
11495         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
11496         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11497         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
11498         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
11499         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11500         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
11501         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
11502         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11503
11504         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
11505         last change; it caused a compilation error when cross-compiling to
11506         Cygwin.
11507
11508 2007-01-18  Jim Meyering  <jim@meyering.net>
11509
11510         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
11511         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
11512         than the race-prone "test -d sys || mkdir sys".
11513         (configure.ac): Use AC_PROG_MKDIR_P.
11514         * modules/sys_select: Likewise.
11515         * modules/sys_socket: Likewise.
11516         * modules/sys_time: Likewise.
11517
11518 2007-01-18  Eric Blake  <ebb9@byu.net>
11519
11520         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
11521         replace gettimeofday.
11522         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
11523         name, to avoid infinite recursion.
11524
11525 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
11526
11527         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
11528         module sys_time.
11529         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
11530         assume timespec.h defines struct timeval.
11531         * lib/settime.c: Likewise.
11532         * lib/utimens.c: Likewise.
11533         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
11534         since we now assume the gettimeofday module.
11535         * lib/tempname.c (__gen_tempname): Likewise.
11536         * lib/gettimeofday.h: Remove.
11537         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
11538         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
11539         Include <time.h>, for 'time()'.
11540         (localtime_buffer_addr): Also use this workaround if
11541         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
11542         to simplify the uses.  All uses changed.
11543         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
11544         that #undef is inside {}, and 'const' follows type name consistently.
11545         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
11546         (gettimeofday): Do not use the maximum possible value for
11547         tv->tv_usec, since that might break usages other than ls.c.
11548         Instead, we'll leave ls.c alone.  This undoes today's patch
11549         by Bruno.  Add a compile-time warning for 1s-clock resolution;
11550         we've never observed the problem but might as well keep the
11551         canary.
11552         * lib/nanosleep.c: Include timespec.h first, for interface check.
11553         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
11554         now assume the sys_time module.
11555         * lib/tempname.c: Likewise.
11556         * lib/timespec.h: Likewise.
11557         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
11558         needed.
11559         * lib/strftime.c: Likewise.
11560         * lib/timespec.h: Likewise.
11561         * lib/posixtm.c: Include posixtm.h first, for interface check.
11562         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
11563         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
11564         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
11565         * lib/sys_time_.h: New file.
11566         * lib/timespec.h (struct timespec): Use long int, not long.
11567         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
11568         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
11569         Remove obsolescent call to AC_HEADER_TIME.
11570         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
11571         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
11572         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
11573         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
11574         Likewise.
11575         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
11576         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
11577         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
11578         into the sys_time module.  Check for gettimeofday just once.
11579         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
11580         for gettimeofday signature to just check the signature.  Merely
11581         compile it, since linking doesn't test signature.  Improve test for
11582         whether gettimeofday.o is actually needed.
11583         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
11584         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
11585         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
11586         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11587         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
11588         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
11589         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
11590         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
11591         than worrying about sys/time.h.
11592         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
11593         Don't bother worrying about TIME_WITH_SYS_TIME.
11594         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
11595         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
11596         * m4/sys_time_h.m4: New file.
11597         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
11598         Don't include sys/time.h.  Return from main rather than exiting.
11599         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
11600         all uses changed.
11601         * modules/gethrxtime (Depends-on): Add sys_time.
11602         * modules/gettime (Depends-on): Likewise.
11603         * modules/gettimeofday (Depends-on): Likewise.
11604         * modules/nanosleep (Depends-on): Likewise.
11605         * modules/settime (Depends-on): Likewise.
11606         * modules/tempname (Depends-on): Likewise.
11607         * modules/utimens (Depends-on): Likewise.
11608         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
11609         (Include:) Change back to <sys/time.h>.
11610         (Maintainer:) Add self.
11611         * modules/sys_time: New file.
11612         * modules/tempname (Depends-on): Add gettimeofday.
11613         * tests/test-gettimeofday.c: Include <sys/time.h>
11614         rather than gettimeofday.h.
11615
11616 2007-01-17  Bruno Haible  <bruno@clisp.org>
11617
11618         * gnulib-tool (func_get_license): Revert last patch. Instead, let
11619         the license default to GPL.
11620         (func_create_testdir): Don't complain if a module is LGPL and its
11621         tests module depends on GPLed modules.
11622
11623 2007-01-17  Bruno Haible  <bruno@clisp.org>
11624
11625         * lib/gettimeofday.c (gettimeofday): Add code for the case
11626         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
11627         maximum possible value for tv->tv_usec, rather than the minimum one.
11628
11629 2005-10-08  Martin Lambers  <marlam@marlam.de>
11630 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
11631 2007-01-16  Bruno Haible  <bruno@clisp.org>
11632
11633         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
11634         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
11635         gl_FUNC_GETTIMEOFDAY.
11636         (Include): Add gettimeofday.h.
11637         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
11638         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
11639         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
11640         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
11641         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
11642         * lib/gettimeofday.h: New file.
11643         * lib/gettimeofday.c: Include <sys/timeb.h>.
11644         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
11645         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
11646         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
11647         fall back on time().
11648
11649         * tests/test-gettimeofday.c: New file.
11650         * modules/gettimeofday-tests: New file.
11651
11652 2007-01-16  Eric Blake  <ebb9@byu.net>
11653
11654         * modules/fnmatch (Depends-on): Depend on wchar.
11655         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
11656         * m4/fnmatch.m4: Likewise.
11657         * modules/mbchar (Makefile.am): Assume <wchar.h>.
11658         * m4/mbchar.m4: Likewise.
11659         * modules/mbswidth (Depends-on): Depend on wchar.
11660         * lib/mbswidth.c: Assume <wchar.h>.
11661         * m4/mbswidth.m4: Likewise.
11662         * modules/quotearg (Depends-on): Depend on wchar.
11663         * lib/quotearg.c: Assume <wchar.h>.
11664         * m4/quotearg.m4: Likewise.
11665         * modules/regex (Depends-on): Depend on wchar.
11666         * lib/regex_internal.h: Assume <wchar.h>.
11667         * m4/regex.m4: Likewise.
11668         * modules/stdint (Depends-on): Depend on wchar.
11669         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
11670         * m4/stdint.m4: Likewise.
11671         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
11672         * modules/strftime (Depends-on): Depend on wchar.
11673         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
11674         * modules/strtol (Depends-on): Depend on wchar.
11675         * lib/strtol.c: Assume <wchar.h>.
11676         * modules/wcwidth (Depends-on): Depend on wchar.
11677         * lib/wcwidth.h: Assume <wchar.h>.
11678         * m4/wcwidth.m4: Likewise.
11679
11680 2007-01-16  Bruno Haible  <bruno@clisp.org>
11681
11682         * modules/csharpexec-script: New, created from...
11683         * modules/csharpexec: ... this.
11684
11685 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
11686
11687         * modules/javaexec-script: New, created from...
11688         * modules/javaexec: ... this.
11689
11690 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11691
11692         * modules/poll (Dependencies): Add sys_select.
11693
11694 2007-01-15  Jim Meyering  <jim@meyering.net>
11695
11696         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
11697         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
11698         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
11699         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
11700
11701 2007-01-15  Bruno Haible  <bruno@clisp.org>
11702
11703         * modules/striconveh: New file.
11704         * lib/striconveh.h: New file.
11705         * lib/striconveh.c: New file.
11706         * MODULES.html.sh (Internationalization functions): Add striconveh.
11707
11708         * modules/striconveh-tests: New file.
11709         * tests/test-striconveh.c: New file.
11710
11711 2007-01-15  Bruno Haible  <bruno@clisp.org>
11712
11713         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
11714         not from GNU libiconv or GNU libc.
11715
11716 2007-01-15  Bruno Haible  <bruno@clisp.org>
11717
11718         * doc/gnulib-intro.texi (Copyright): Explain the different license
11719         terms for module descriptions, autoconf macros, tests, documentation.
11720
11721 2007-01-14  Bruno Haible  <bruno@clisp.org>
11722
11723         * modules/striconv-tests: New file.
11724         * tests/test-striconv.c: New file.
11725
11726 2007-01-14  Bruno Haible  <bruno@clisp.org>
11727
11728         * modules/iconv-tests: New file.
11729         * tests/test-iconv.c: New file.
11730
11731 2007-01-14  Bruno Haible  <bruno@clisp.org>
11732
11733         * gnulib-tool (func_get_license): For test modules, use the license of
11734         the main module.
11735
11736 2007-01-14  Bruno Haible  <bruno@clisp.org>
11737
11738         * modules/iconv (Include): Clarify that <iconv.h> can only be included
11739         if iconv is found to exist.
11740
11741 2007-01-14  Bruno Haible  <bruno@clisp.org>
11742
11743         * modules/c-ctype-tests: New file.
11744         * tests/test-c-ctype.c: New file.
11745
11746 2007-01-14  Bruno Haible  <bruno@clisp.org>
11747
11748         * modules/binary-io-tests: New file.
11749         * tests/test-binary-io.sh: New file.
11750         * tests/test-binary-io.c: New file.
11751
11752 2007-01-14  Bruno Haible  <bruno@clisp.org>
11753
11754         * modules/array-oset-tests: New file.
11755         * tests/test-array_oset.c: New file.
11756
11757 2007-01-14  Bruno Haible  <bruno@clisp.org>
11758
11759         * modules/array-list-tests: New file.
11760         * tests/test-array_list.c: New file.
11761
11762 2007-01-14  Bruno Haible  <bruno@clisp.org>
11763
11764         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
11765         and make.
11766         Reported by Simon Josefsson in
11767         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
11768
11769 2007-01-14  Bruno Haible  <bruno@clisp.org>
11770
11771         * modules/allocsa-tests: New file.
11772         * tests/test-allocsa.c: New file.
11773
11774 2007-01-14  Bruno Haible  <bruno@clisp.org>
11775
11776         * modules/fchdir (Depends-on): Add absolute-header.
11777         * modules/unistd (Depends-on): Likewise.
11778
11779 2006-12-30  Bruno Haible  <bruno@clisp.org>
11780
11781         * modules/fchdir: New file.
11782         * modules/unistd (Files): Add lib/unistd_.h.
11783         (Makefile.am): Generate unistd.h from unistd_.h.
11784         * lib/fchdir.c: New file.
11785         * lib/dirent_.h: New file.
11786         * lib/unistd_.h: New file.
11787         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
11788         * m4/fchdir.m4: New file.
11789         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
11790         (gl_HEADER_UNISTD): Invoke it.
11791         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
11792         function.
11793         * lib/backupfile.c (opendir, closedir): Undefine.
11794         * lib/chown.c (open, close): Undefine.
11795         * lib/clean-temp.c (open, close): Undefine.
11796         * lib/copy-file.c (open, close): Undefine.
11797         * lib/execute.c (open, close): Undefine.
11798         * lib/fsusage.c (open, close): Undefine.
11799         * lib/gc-gnulib.c (open, close): Undefine.
11800         * lib/getcwd.c (opendir, closedir): Undefine.
11801         * lib/glob.c (opendir, closedir): Undefine.
11802         * lib/javacomp.c (open, close): Undefine.
11803         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
11804         * lib/openat-proc.c (open, close): Undefine.
11805         * lib/pagealign_alloc.c (open, close): Undefine.
11806         * lib/pipe.c (open, close): Undefine.
11807         * lib/progreloc.c (open, close): Undefine.
11808         * lib/savedir.c (opendir, closedir): Undefine.
11809         * lib/utime.c (open, close): Undefine.
11810         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
11811
11812 2007-01-10  Bruno Haible  <bruno@clisp.org>
11813
11814         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
11815
11816 2007-01-12  Eric Blake  <ebb9@byu.net>
11817
11818         Provide a robust <wchar.h>.  Further simplifications are now
11819         possible in other modules, but not included here.
11820         * modules/wchar: New module.
11821         * m4/wchar.m4: New file.
11822         * lib/wchar_.h: Likewise.
11823         * modules/mbchar (Depends-on): Depend on wchar, as the first use
11824         of the new module.
11825         * MODULES.html.sh (Extended multibyte and wide character utilities):
11826         New section.
11827
11828 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
11829
11830         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
11831         to a reasonable default for memory allocation.
11832         (xreadlink): Don't allocate a huge buffer, to work around a buggy
11833         file system that reports garbage st_size values for symlinks.
11834         Problem reported by Liyang Hu.
11835
11836 2007-01-11  Simon Josefsson  <simon@josefsson.org>
11837
11838         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
11839         Emacs .#* auto-save files).
11840
11841 2007-01-11  Bruno Haible  <bruno@clisp.org>
11842
11843         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
11844         directory.
11845
11846 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
11847
11848         Use @...@ consistently in lib/wctype_.h.
11849         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
11850         on it being set to 1 or 0.
11851         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
11852         go back to AC_SUBSTing it.
11853         * modules/wctype (Makefile.am): Undo previous change.
11854
11855 2007-01-10  Eric Blake  <ebb9@byu.net>
11856
11857         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
11858         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
11859         * modules/wctype (Makefile.am): Likewise.
11860         Reported by Chris McGuire.
11861
11862 2007-01-10  Jim Meyering  <jim@meyering.net>
11863
11864         fts.c: a small readability/maintainability improvement
11865         * lib/fts.c (fts_read): Make this code slightly more readable and
11866         maintainable by hoisting the "sp->fts_cur = p" assignments to
11867         immediately follow the statements that set P.  Derived from
11868         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
11869
11870 2007-01-10  Eric Blake  <ebb9@byu.net>
11871
11872         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
11873         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
11874         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
11875         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11876         Reported by Chris McGuire.
11877
11878 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11879
11880         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
11881         in sed script.
11882
11883 2007-01-09  Bruno Haible  <bruno@clisp.org>
11884
11885         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
11886         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
11887         variables.
11888         (func_module): Use them.
11889
11890 2007-01-09  Bruno Haible  <bruno@clisp.org>
11891
11892         * modules/unistr/base: New file.
11893         * lib/unistr.h: New file.
11894
11895         * modules/unistr/u8-to-u16: New file.
11896         * lib/unistr/u8-to-u16.c: New file.
11897
11898         * modules/unistr/u8-to-u32: New file.
11899         * lib/unistr/u8-to-u32.c: New file.
11900
11901         * modules/unistr/u16-to-u8: New file.
11902         * lib/unistr/u16-to-u8.c: New file.
11903
11904         * modules/unistr/u16-to-u32: New file.
11905         * lib/unistr/u16-to-u32.c: New file.
11906
11907         * modules/unistr/u32-to-u8: New file.
11908         * lib/unistr/u32-to-u8.c: New file.
11909
11910         * modules/unistr/u32-to-u16: New file.
11911         * lib/unistr/u32-to-u16.c: New file.
11912
11913         * modules/unistr/u8-check: New file.
11914         * modules/unistr/u16-check: New file.
11915         * modules/unistr/u32-check: New file.
11916         * lib/unistr/u8-check.c: New file.
11917         * lib/unistr/u16-check.c: New file.
11918         * lib/unistr/u32-check.c: New file.
11919
11920         * modules/unistr/u8-chr: New file.
11921         * modules/unistr/u16-chr: New file.
11922         * modules/unistr/u32-chr: New file.
11923         * lib/unistr/u8-chr.c: New file.
11924         * lib/unistr/u16-chr.c: New file.
11925         * lib/unistr/u32-chr.c: New file.
11926
11927         * modules/unistr/u8-cmp: New file.
11928         * modules/unistr/u16-cmp: New file.
11929         * modules/unistr/u32-cmp: New file.
11930         * lib/unistr/u8-cmp.c: New file.
11931         * lib/unistr/u16-cmp.c: New file.
11932         * lib/unistr/u32-cmp.c: New file.
11933
11934         * modules/unistr/u8-cpy: New file.
11935         * modules/unistr/u16-cpy: New file.
11936         * modules/unistr/u32-cpy: New file.
11937         * lib/unistr/u8-cpy.c: New file.
11938         * lib/unistr/u16-cpy.c: New file.
11939         * lib/unistr/u32-cpy.c: New file.
11940         * lib/unistr/u-cpy.h: New file.
11941
11942         * modules/unistr/u8-cpy-alloc: New file.
11943         * modules/unistr/u16-cpy-alloc: New file.
11944         * modules/unistr/u32-cpy-alloc: New file.
11945         * lib/unistr/u8-cpy-alloc.c: New file.
11946         * lib/unistr/u16-cpy-alloc.c: New file.
11947         * lib/unistr/u32-cpy-alloc.c: New file.
11948         * lib/unistr/u-cpy-alloc.h: New file.
11949
11950         * modules/unistr/u8-endswith: New file.
11951         * modules/unistr/u16-endswith: New file.
11952         * modules/unistr/u32-endswith: New file.
11953         * lib/unistr/u8-endswith.c: New file.
11954         * lib/unistr/u16-endswith.c: New file.
11955         * lib/unistr/u32-endswith.c: New file.
11956         * lib/unistr/u-endswith.h: New file.
11957
11958         * modules/unistr/u8-mblen: New file.
11959         * modules/unistr/u16-mblen: New file.
11960         * modules/unistr/u32-mblen: New file.
11961         * lib/unistr/u8-mblen.c: New file.
11962         * lib/unistr/u16-mblen.c: New file.
11963         * lib/unistr/u32-mblen.c: New file.
11964
11965         * modules/unistr/u8-mbtouc: New file.
11966         * modules/unistr/u16-mbtouc: New file.
11967         * modules/unistr/u32-mbtouc: New file.
11968         * lib/unistr/u8-mbtouc.c: New file.
11969         * lib/unistr/u16-mbtouc.c: New file.
11970         * lib/unistr/u32-mbtouc.c: New file.
11971
11972         * modules/unistr/u8-mbtouc-safe: New file.
11973         * modules/unistr/u16-mbtouc-safe: New file.
11974         * modules/unistr/u32-mbtouc-safe: New file.
11975         * lib/unistr/u8-mbtouc-safe.c: New file.
11976         * lib/unistr/u16-mbtouc-safe.c: New file.
11977         * lib/unistr/u32-mbtouc-safe.c: New file.
11978
11979         * modules/unistr/u8-move: New file.
11980         * modules/unistr/u16-move: New file.
11981         * modules/unistr/u32-move: New file.
11982         * lib/unistr/u8-move.c: New file.
11983         * lib/unistr/u16-move.c: New file.
11984         * lib/unistr/u32-move.c: New file.
11985         * lib/unistr/u-move.h: New file.
11986
11987         * modules/unistr/u8-next: New file.
11988         * modules/unistr/u16-next: New file.
11989         * modules/unistr/u32-next: New file.
11990         * lib/unistr/u8-next.c: New file.
11991         * lib/unistr/u16-next.c: New file.
11992         * lib/unistr/u32-next.c: New file.
11993
11994         * modules/unistr/u8-prev: New file.
11995         * modules/unistr/u16-prev: New file.
11996         * modules/unistr/u32-prev: New file.
11997         * lib/unistr/u8-prev.c: New file.
11998         * lib/unistr/u16-prev.c: New file.
11999         * lib/unistr/u32-prev.c: New file.
12000
12001         * modules/unistr/u8-set: New file.
12002         * modules/unistr/u16-set: New file.
12003         * modules/unistr/u32-set: New file.
12004         * lib/unistr/u8-set.c: New file.
12005         * lib/unistr/u16-set.c: New file.
12006         * lib/unistr/u32-set.c: New file.
12007         * lib/unistr/u-set.h: New file.
12008
12009         * modules/unistr/u8-startswith: New file.
12010         * modules/unistr/u16-startswith: New file.
12011         * modules/unistr/u32-startswith: New file.
12012         * lib/unistr/u8-startswith.c: New file.
12013         * lib/unistr/u16-startswith.c: New file.
12014         * lib/unistr/u32-startswith.c: New file.
12015         * lib/unistr/u-startswith.h: New file.
12016
12017         * modules/unistr/u8-stpcpy: New file.
12018         * modules/unistr/u16-stpcpy: New file.
12019         * modules/unistr/u32-stpcpy: New file.
12020         * lib/unistr/u8-stpcpy.c: New file.
12021         * lib/unistr/u16-stpcpy.c: New file.
12022         * lib/unistr/u32-stpcpy.c: New file.
12023         * lib/unistr/u-stpcpy.h: New file.
12024
12025         * modules/unistr/u8-stpncpy: New file.
12026         * modules/unistr/u16-stpncpy: New file.
12027         * modules/unistr/u32-stpncpy: New file.
12028         * lib/unistr/u8-stpncpy.c: New file.
12029         * lib/unistr/u16-stpncpy.c: New file.
12030         * lib/unistr/u32-stpncpy.c: New file.
12031         * lib/unistr/u-stpncpy.h: New file.
12032
12033         * modules/unistr/u8-strcat: New file.
12034         * modules/unistr/u16-strcat: New file.
12035         * modules/unistr/u32-strcat: New file.
12036         * lib/unistr/u8-strcat.c: New file.
12037         * lib/unistr/u16-strcat.c: New file.
12038         * lib/unistr/u32-strcat.c: New file.
12039         * lib/unistr/u-strcat.h: New file.
12040
12041         * modules/unistr/u8-strchr: New file.
12042         * modules/unistr/u16-strchr: New file.
12043         * modules/unistr/u32-strchr: New file.
12044         * lib/unistr/u8-strchr.c: New file.
12045         * lib/unistr/u16-strchr.c: New file.
12046         * lib/unistr/u32-strchr.c: New file.
12047
12048         * modules/unistr/u8-strcmp: New file.
12049         * modules/unistr/u16-strcmp: New file.
12050         * modules/unistr/u32-strcmp: New file.
12051         * lib/unistr/u8-strcmp.c: New file.
12052         * lib/unistr/u16-strcmp.c: New file.
12053         * lib/unistr/u32-strcmp.c: New file.
12054
12055         * modules/unistr/u8-strcpy: New file.
12056         * modules/unistr/u16-strcpy: New file.
12057         * modules/unistr/u32-strcpy: New file.
12058         * lib/unistr/u8-strcpy.c: New file.
12059         * lib/unistr/u16-strcpy.c: New file.
12060         * lib/unistr/u32-strcpy.c: New file.
12061         * lib/unistr/u-strcpy.h: New file.
12062
12063         * modules/unistr/u8-strcspn: New file.
12064         * modules/unistr/u16-strcspn: New file.
12065         * modules/unistr/u32-strcspn: New file.
12066         * lib/unistr/u8-strcspn.c: New file.
12067         * lib/unistr/u16-strcspn.c: New file.
12068         * lib/unistr/u32-strcspn.c: New file.
12069         * lib/unistr/u-strcspn.h: New file.
12070
12071         * modules/unistr/u8-strdup: New file.
12072         * modules/unistr/u16-strdup: New file.
12073         * modules/unistr/u32-strdup: New file.
12074         * lib/unistr/u8-strdup.c: New file.
12075         * lib/unistr/u16-strdup.c: New file.
12076         * lib/unistr/u32-strdup.c: New file.
12077         * lib/unistr/u-strdup.h: New file.
12078
12079         * modules/unistr/u8-strlen: New file.
12080         * modules/unistr/u16-strlen: New file.
12081         * modules/unistr/u32-strlen: New file.
12082         * lib/unistr/u8-strlen.c: New file.
12083         * lib/unistr/u16-strlen.c: New file.
12084         * lib/unistr/u32-strlen.c: New file.
12085         * lib/unistr/u-strlen.h: New file.
12086
12087         * modules/unistr/u8-strmblen: New file.
12088         * modules/unistr/u16-strmblen: New file.
12089         * modules/unistr/u32-strmblen: New file.
12090         * lib/unistr/u8-strmblen.c: New file.
12091         * lib/unistr/u16-strmblen.c: New file.
12092         * lib/unistr/u32-strmblen.c: New file.
12093
12094         * modules/unistr/u8-strmbtouc: New file.
12095         * modules/unistr/u16-strmbtouc: New file.
12096         * modules/unistr/u32-strmbtouc: New file.
12097         * lib/unistr/u8-strmbtouc.c: New file.
12098         * lib/unistr/u16-strmbtouc.c: New file.
12099         * lib/unistr/u32-strmbtouc.c: New file.
12100
12101         * modules/unistr/u8-strncat: New file.
12102         * modules/unistr/u16-strncat: New file.
12103         * modules/unistr/u32-strncat: New file.
12104         * lib/unistr/u8-strncat.c: New file.
12105         * lib/unistr/u16-strncat.c: New file.
12106         * lib/unistr/u32-strncat.c: New file.
12107         * lib/unistr/u-strncat.h: New file.
12108
12109         * modules/unistr/u8-strncmp: New file.
12110         * modules/unistr/u16-strncmp: New file.
12111         * modules/unistr/u32-strncmp: New file.
12112         * lib/unistr/u8-strncmp.c: New file.
12113         * lib/unistr/u16-strncmp.c: New file.
12114         * lib/unistr/u32-strncmp.c: New file.
12115
12116         * modules/unistr/u8-strncpy: New file.
12117         * modules/unistr/u16-strncpy: New file.
12118         * modules/unistr/u32-strncpy: New file.
12119         * lib/unistr/u8-strncpy.c: New file.
12120         * lib/unistr/u16-strncpy.c: New file.
12121         * lib/unistr/u32-strncpy.c: New file.
12122         * lib/unistr/u-strncpy.h: New file.
12123
12124         * modules/unistr/u8-strnlen: New file.
12125         * modules/unistr/u16-strnlen: New file.
12126         * modules/unistr/u32-strnlen: New file.
12127         * lib/unistr/u8-strnlen.c: New file.
12128         * lib/unistr/u16-strnlen.c: New file.
12129         * lib/unistr/u32-strnlen.c: New file.
12130         * lib/unistr/u-strnlen.h: New file.
12131
12132         * modules/unistr/u8-strpbrk: New file.
12133         * modules/unistr/u16-strpbrk: New file.
12134         * modules/unistr/u32-strpbrk: New file.
12135         * lib/unistr/u8-strpbrk.c: New file.
12136         * lib/unistr/u16-strpbrk.c: New file.
12137         * lib/unistr/u32-strpbrk.c: New file.
12138         * lib/unistr/u-strpbrk.h: New file.
12139
12140         * modules/unistr/u8-strrchr: New file.
12141         * modules/unistr/u16-strrchr: New file.
12142         * modules/unistr/u32-strrchr: New file.
12143         * lib/unistr/u8-strrchr.c: New file.
12144         * lib/unistr/u16-strrchr.c: New file.
12145         * lib/unistr/u32-strrchr.c: New file.
12146
12147         * modules/unistr/u8-strspn: New file.
12148         * modules/unistr/u16-strspn: New file.
12149         * modules/unistr/u32-strspn: New file.
12150         * lib/unistr/u8-strspn.c: New file.
12151         * lib/unistr/u16-strspn.c: New file.
12152         * lib/unistr/u32-strspn.c: New file.
12153         * lib/unistr/u-strspn.h: New file.
12154
12155         * modules/unistr/u8-strstr: New file.
12156         * modules/unistr/u16-strstr: New file.
12157         * modules/unistr/u32-strstr: New file.
12158         * lib/unistr/u8-strstr.c: New file.
12159         * lib/unistr/u16-strstr.c: New file.
12160         * lib/unistr/u32-strstr.c: New file.
12161         * lib/unistr/u-strstr.h: New file.
12162
12163         * modules/unistr/u8-strtok: New file.
12164         * modules/unistr/u16-strtok: New file.
12165         * modules/unistr/u32-strtok: New file.
12166         * lib/unistr/u8-strtok.c: New file.
12167         * lib/unistr/u16-strtok.c: New file.
12168         * lib/unistr/u32-strtok.c: New file.
12169         * lib/unistr/u-strtok.h: New file.
12170
12171         * modules/unistr/u8-uctomb: New file.
12172         * modules/unistr/u16-uctomb: New file.
12173         * modules/unistr/u32-uctomb: New file.
12174         * lib/unistr/u8-uctomb.c: New file.
12175         * lib/unistr/u16-uctomb.c: New file.
12176         * lib/unistr/u32-uctomb.c: New file.
12177
12178         * MODULES.html.sh (Unicode string functions): Add the new modules.
12179
12180 2007-01-08  Bruno Haible  <bruno@clisp.org>
12181
12182         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
12183         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
12184         subdirectories.
12185
12186 2007-01-08  Karl Berry  <karl@gnu.org>
12187
12188         * doc/error.texi: mention that main() fns must set program_name
12189         when progname is used.
12190
12191 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
12192
12193         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
12194         WCTYPE_H is empty, for the benefit of builds from non-distclean
12195         directories.  Problem reported by Eric Blake in
12196         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
12197
12198 2007-01-08  Bruno Haible  <bruno@clisp.org>
12199
12200         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
12201         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
12202         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
12203         PROVIDE_CANONICALIZE_FILENAME_MODE.
12204         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
12205
12206 2007-01-08  Bruno Haible  <bruno@clisp.org>
12207
12208         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
12209         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
12210         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
12211         * lib/fts.c: Likewise.
12212         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
12213
12214 2006-12-25  Bruno Haible  <bruno@clisp.org>
12215
12216         * modules/utf8-ucs4-safe: New file.
12217         * lib/utf8-ucs4-safe.h: New file.
12218         * lib/unistr/utf8-ucs4-safe.c: New file.
12219
12220         * modules/utf16-ucs4-safe: New file.
12221         * lib/utf16-ucs4-safe.h: New file.
12222         * lib/unistr/utf16-ucs4-safe.c: New file.
12223
12224         * MODULES.html.sh (Unicode string functions): Add the new modules.
12225
12226 2007-01-08  Bruno Haible  <bruno@clisp.org>
12227
12228         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
12229         (Depends-on): Add unitypes.
12230         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
12231         (u8_mbtouc_aux): Move out to separate file.
12232         (u8_mbtouc): Use ucs4_t, uint8_t types.
12233         * lib/unistr/utf8-ucs4.c: New file.
12234
12235         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
12236         (Depends-on): Add unitypes.
12237         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
12238         (u16_mbtouc_aux): Move out to separate file.
12239         (u16_mbtouc): Use ucs4_t, uint16_t types.
12240         * lib/unistr/utf16-ucs4.c: New file.
12241
12242         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
12243         (Depends-on): Add unitypes.
12244         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
12245         (u8_uctomb_aux): Move out to separate file.
12246         (u8_uctomb): Use ucs4_t, uint8_t types.
12247         * lib/unistr/ucs4-utf8.c: New file.
12248
12249         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
12250         (Depends-on): Add unitypes.
12251         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
12252         (u16_uctomb_aux): Move out to separate file.
12253         (u16_uctomb): Use ucs4_t, uint16_t types.
12254         * lib/unistr/ucs4-utf16.c: New file.
12255
12256 2006-12-25  Bruno Haible  <bruno@clisp.org>
12257
12258         * modules/unitypes: New file.
12259         * lib/unitypes.h: New file.
12260         * MODULES.html.sh (func_all_modules): New section "Unicode string
12261         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
12262         this section. Add unitypes.
12263
12264 2007-01-08  Bruno Haible  <bruno@clisp.org>
12265
12266         Avoid variable names that conflict with those from libtool.
12267         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
12268         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
12269         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
12270         library_names_spec to acl_library_names_spec, hardcode_* to
12271         acl_hardcode_*.
12272         Reported by Ralf Wildenhues.
12273
12274 2007-01-08  Bruno Haible  <bruno@clisp.org>
12275
12276         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
12277         definition.
12278         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
12279         definition.
12280         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
12281         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
12282         definition.
12283         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
12284         definition.
12285         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
12286         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
12287         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
12288         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
12289         definition.
12290         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
12291         definition.
12292         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
12293         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
12294         GC_USE_<algorithm>.
12295         * lib/gc-libgcrypt.c: Likewise.
12296         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
12297         * modules/gc-arctwo (configure.ac): Likewise.
12298         * modules/gc-des (configure.ac): Likewise.
12299         * modules/gc-hmac-md5 (configure.ac): Likewise.
12300         * modules/gc-hmac-sha1 (configure.ac): Likewise.
12301         * modules/gc-md2 (configure.ac): Likewise.
12302         * modules/gc-md4 (configure.ac): Likewise.
12303         * modules/gc-md5 (configure.ac): Likewise.
12304         * modules/gc-random (configure.ac): Likewise.
12305         * modules/gc-rijndael (configure.ac): Likewise.
12306         * modules/gc-sha1 (configure.ac): Likewise.
12307
12308 2007-01-08  Bruno Haible  <bruno@clisp.org>
12309
12310         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
12311         macro definition.
12312         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
12313         definition.
12314         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
12315         definition.
12316         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
12317         * modules/fcntl-safer (configure.ac): Likewise.
12318         * modules/fopen-safer (configure.ac): Likewise.
12319         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
12320         GNULIB_FWRITEERROR macro definition.
12321
12322 2007-01-08  Bruno Haible  <bruno@clisp.org>
12323
12324         * m4/gnulib-common.m4: New file.
12325         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
12326         (func_get_filelist): Add m4/gnulib-common.m4.
12327
12328 2007-01-08  Bruno Haible  <bruno@clisp.org>
12329
12330         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
12331         command.
12332
12333 2007-01-08  Jim Meyering  <jim@meyering.net>
12334
12335         Use a more robust test for a "can't happen" condition.
12336         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
12337         narrowed the st_size value.  Presuming the "can't happen" condition
12338         is true, that narrowing could conceivably convert an invalid st_size
12339         value into a valid one.  Instead, use a change based on Matthew
12340         Woehlke's original patch.
12341
12342         Slight readability improvement: use an assert-like macro
12343         in place of literal "abort ()" uses.
12344         * lib/fts.c (fts_assert): Define.
12345         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
12346         Use this macro instead of a bare 'abort'.
12347
12348 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
12349
12350         Don't worry about using IRIX 5.3's wctype.h broken definitions;
12351         simply work around them.
12352         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
12353         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
12354         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
12355         declaring.
12356         Don't bother to define as macros, since the standard doesn't require it.
12357         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
12358         longer worry about IRIX 5.3.
12359         (HAVE_WCTYPE_CTMP_BUG): Remove.
12360
12361 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
12362
12363         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
12364         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
12365         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
12366         Problems reported by Georg Schwarz for IRIX 5.3.
12367
12368         * gnulib-tool (autoconf_minversion): Take the maximum version number
12369         found, not the minimum.  Problem reported by James Youngman.
12370
12371 2007-01-03  Karl Berry  <karl@gnu.org>
12372
12373         * doc/error.texi: new file, explaining interaction with progname.
12374         * doc/gnulib.texi: include it.  Update copyright.
12375
12376 2007-01-03  Simon Josefsson  <simon@josefsson.org>
12377
12378         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
12379         AC_CANONICAL_HOST, to improve autobuild outputs.
12380
12381 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
12382             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
12383
12384         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
12385         sockets, server sockets, and other file descriptors.  Count errors
12386         to compute the return value.  Reorder the code a bit to be easier
12387         to follow.  Don't set event bits that were not requested (except
12388         POLLERR and POLLHUP).
12389
12390 2007-01-01  Bruno Haible  <bruno@clisp.org>
12391
12392         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
12393
12394 2007-01-03  Jim Meyering  <jim@meyering.net>
12395
12396         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
12397
12398 2007-01-02  Bruno Haible  <bruno@clisp.org>
12399
12400         * modules/settime (Include): Require timespec.h.
12401         * modules/nanosleep (Include): Likewise.
12402
12403 2007-01-01  Bruno Haible  <bruno@clisp.org>
12404
12405         * gnulib-tool (func_emit_copyright_notice): Bump year.
12406         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
12407
12408 2007-01-01  Bruno Haible  <bruno@clisp.org>
12409
12410         Improve support for OpenBSD.
12411         * build-aux/config.rpath (libname_spec): Export.
12412         (library_names_spec): New variable. Export.
12413         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
12414         library_names_spec from the config.rpath output. Locate shared library
12415         through the name pattern in library_names_spec.
12416
12417 2007-01-01  Eric Blake  <ebb9@byu.net>
12418
12419         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
12420
12421 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
12422
12423         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
12424         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
12425         assume the C locale, and avoid an "eval" that could cause trouble.
12426         Problem with SORT reported by Bob Proulx.
12427
12428         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
12429         Define.  Trivial patch from Henning Nielsen Lund, originally
12430         sent to bug-grep@gnu.org today.
12431
12432 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
12433
12434         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
12435         struct stat.  Problem reported by Henning Nielsen Lund.
12436         * lib/acl.c: Include acl.h first, to check interface.  Don't
12437         bother to include sys/types.h and sys/stat.h again.
12438
12439 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
12440
12441         Import the following change from libc; problem reported by
12442         Sven Verdoolaege.
12443
12444         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
12445
12446         [BZ #1373]
12447         * lib/argp.h: Remove __NTH for __argp_usage inline function.
12448
12449 2006-12-28  Jim Meyering  <jim@meyering.net>
12450
12451         * build-aux/announce-gen: Do not assume that the package
12452         builds any of tar.gz, tar.bz2, and .xdelta files.
12453         Suggestion from Simon Josefsson.
12454
12455 2006-12-28  Simon Josefsson  <simon@josefsson.org>
12456
12457         * modules/announce-gen: New file.
12458
12459 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
12460
12461         * lib/mbchar.h: Just include <wctype.h>; the wctype module
12462         handles its gotchas now.
12463         * lib/mbswidth.c: Likewise.
12464         * lib/wcwidth.h: Likewise.
12465         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
12466         and iswcntrl; the wctype module does this stuff now.
12467         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12468         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
12469         * modules/mbchar (Depends-on): Add wctype.
12470         * modules/mbswidth (Depends-on): Likewise.
12471         * modules/wcwidth (Depends-on): Likewise.
12472
12473 2006-12-27  Eric Blake  <ebb9@byu.net>
12474
12475         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
12476         module uses more than what <wctype.h> is required to provide.
12477
12478 2006-12-26  Eric Blake  <ebb9@byu.net>
12479
12480         * gnulib-tool (sed_extract_prog): Avoid space-tab.
12481
12482 2006-12-26  Eric Blake  <ebb9@byu.net>
12483
12484         * modules/absolute-header: New module.
12485         * modules/fcntl (Depends-on): Depend on it.
12486         * modules/inttypes (Depends-on): Likewise.
12487         * modules/stdint (Depends-on): Likewise.
12488         * modules/sys_stat (Depends-on): Likewise.
12489         * modules/wctype (Depends-on): Likewise.
12490         * MODULES.html.sh (Support for building libraries and
12491         executables): Document it.
12492
12493 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
12494
12495         * gnulib-tool (SED): Remove, undoing previous change.
12496         The problem was that it broke coreutils on Solaris, because
12497         "sed --posix" leaked into a makefile.
12498         (sed): New alias, if 'alias' and GNU sed.
12499
12500 2006-12-24  Jim Meyering  <jim@meyering.net>
12501
12502         Work around an fchownat bug in glibc-2.4:
12503         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
12504         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
12505         in spite of the -P option.
12506         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
12507         New macros.
12508         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
12509         * modules/openat (Files): Add lib/fchownat.c.
12510         * lib/openat.c (fchownat): Don't define here.  Move to...
12511         * lib/fchownat.c: ...this new file.
12512
12513 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12514
12515         Fix bug reported by Bruno Haible in
12516         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
12517         where quotearg.c didn't compile on Mac OS X 10.2 because it
12518         lacks <wchar.h> and wint_t.
12519         * lib/wctype_.h (__wctype_wint_t): New type.
12520         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
12521         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
12522         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
12523         Arg is now of type __wctype_wint_t, not wint_t.
12524         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
12525         substitute HAVE_WINT_T.
12526         * modules/wctype (Files): Add m4/wint_t.m4.
12527         (wctype.h): Substitute HAVE_WINT_T.
12528
12529 2006-12-23  Bruno Haible  <bruno@clisp.org>
12530
12531         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
12532
12533 2006-12-23  Bruno Haible  <bruno@clisp.org>
12534
12535         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
12536         S_ISLNK.
12537         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
12538         mingw.
12539
12540 2006-12-22  Bruno Haible  <bruno@clisp.org>
12541
12542         * lib/copy-file.c: Include acl.h.
12543         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
12544         Close the file descriptors only after being done with copy_acl.
12545         * modules/copy-file (Depends-on): Add acl.
12546
12547 2006-12-22  Bruno Haible  <bruno@clisp.org>
12548
12549         * gnulib-tool (SED): New variable.
12550         Use $SED instead of sed everywhere.
12551
12552 2006-12-22  Bruno Haible  <bruno@clisp.org>
12553
12554         * modules/no-c++: New file.
12555         * m4/no-c++.m4: New file.
12556         * MODULES.html.sh (Support for building libraries and executables):
12557         Add no-c++.
12558
12559 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
12560
12561         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
12562         Include <limits.h>, and use its INT_MAX to rewrite the
12563         j loop so that it does not overflow 'int'.  Problem reported by
12564         Ralf Wildenhues in
12565         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
12566         Play it safe by shifting left by 1 rather than multiplying by 2,
12567         as GCC is less likely to optimize this away when the value
12568         is signed (when it assumes overflow leads to undefined behavior).
12569         Also, don't assume time_t uses two's complement.
12570
12571 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
12572
12573         * MODULES.html.sh: New module wctype.
12574         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
12575         * lib/fnmatch.c: Don't bother to include <wchar.h> before
12576         <wctype.h>, since the new wctype module should fix this.
12577         * lib/quotearg.c: Include <wctype.h> unconditionally, since
12578         the wctype module should arrange for it.
12579         * lib/regex_internal.h: Likewise.
12580         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
12581         since the wctype module should handle this now.
12582         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
12583         * modules/fnmatch (Depends-on): Add wctype.
12584         * modules/quotearg (Depends-on): Likewise.
12585         * modules/regex (Depends-on): Likewise.
12586
12587 2006-12-19  Bruno Haible  <bruno@clisp.org>
12588
12589         * lib/strdup.h [C++]: Wrap definitions in extern "C".
12590         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
12591
12592 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12593
12594         * modules/savewd (Depends-on): Fix dependency on fcntl.
12595
12596 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
12597
12598         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
12599         conforms to C99, rather than relying on the user's environment
12600         setting of STDINT_H.
12601
12602 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
12603         and Eric Blake  <ebb9@byu.net>
12604
12605         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
12606         This is more consistent with the other defines here.
12607         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
12608         Port to z/OS.  Problem reported by Paul Gilmartin.
12609         Change local vars to use gl_ prefix rather than ac_.
12610         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
12611         with other defines.
12612         * modules/double-slash-root: New module.
12613         * modules/dirname (Files): Remove m4/double-slash-root.m4.
12614         (Depends-on): Add double-slash-root.
12615         * MODULES.html.sh (File system functions): Mention new module.
12616
12617 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
12618
12619         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
12620         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
12621         This is for the benefit of gzip, which doesn't do i18n.
12622
12623 2006-12-12  Jim Meyering  <jim@meyering.net>
12624
12625         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
12626         Reported by Andreas Schwab <schwab@suse.de>.
12627
12628 2006-12-12  Bruno Haible  <bruno@clisp.org>
12629
12630         Merge these changes.
12631         2006-09-05  Bruno Haible  <bruno@clisp.org>
12632         * lib/iconvme.c (iconv_string): No need to save and restore errno when
12633         iconv_alloc succeeded.
12634         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
12635         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
12636         test for " && dest " at the end - dest is always != NULL there. Call
12637         iconv with 4xNULL arguments initially, to reset the state. Call iconv
12638         with 2xNULL arguments, also to flush the state storage. Handle the
12639         IRIX iconv behaviour. Realloc the final result, to throw away unused
12640         memory.
12641
12642 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
12643
12644         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
12645         and fchmodat unconditionally, since glibc 2.4 has them.
12646         Problem reported by Arkadiusz Miskiewicz.
12647
12648 2006-12-10  Bruno Haible  <bruno@clisp.org>
12649
12650         * gnulib-tool (func_import): Show the include files only for those
12651         modules that are copied and specified.
12652         Reported by Karl Berry.
12653
12654 2006-12-08  Jim Meyering  <jim@meyering.net>
12655
12656         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
12657         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
12658
12659         * build-aux/announce-gen: Add two new options, both optional:
12660         --bootstrap-tools=TOOL_LIST
12661               a comma-separated list of tools, e.g.,
12662               autoconf,automake,bison,gnulib
12663         --gnulib-snapshot-date=DATE
12664               if gnulib is in the bootstrap tool list,
12665               then report this as the snapshot date.
12666               If not specified, use the current date/time.
12667               If you specify a date here, be sure it's UTC.
12668
12669 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12670
12671         * tests/test-argp-2.sh: Fix test to match actual output.
12672         (func_compare): Fix sed script to be portable.
12673
12674 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
12675
12676         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
12677         workaround for this case.  It is not autoconfigured now; offhand
12678         it's hard to see how to autoconfigure it.
12679
12680 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
12681
12682         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
12683         a directory that is about to be chowned.  Such a directory's
12684         initial file permissions should permit the owner only and this
12685         should not be changed until after the chown, since the group and
12686         other bits would be incorrect if they granted permission before
12687         the chown.
12688
12689         Fix porting problem for iswctype reported by Georg Schwarz in:
12690         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
12691         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
12692         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
12693         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
12694         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
12695
12696 2006-12-03  Jim Meyering  <jim@meyering.net>
12697
12698         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
12699         p->fts_statp may not yet be defined.
12700         (fts_read): Instead, set it in the caller, once p->fts_statp is
12701         sure to be defined, and corresponds to a top-level directory.
12702         This bug made du -x fail.  Here's the coreutils test case:
12703         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
12704         Reported by Mike Frysinger.
12705
12706 2006-12-01  Jim Meyering  <jim@meyering.net>
12707
12708         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
12709         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
12710         Reported by Simon Josefsson.
12711
12712 2006-11-30  Jim Meyering  <jim@meyering.net>
12713
12714         * m4/warning.m4: Use the all-permissive copyright notice
12715         recommended by RMS (rather than LGPL).
12716         * m4/vararrays.m4: Likewise.
12717         * m4/flexmember.m4: Likewise.
12718
12719 2006-11-29  Bruno Haible  <bruno@clisp.org>
12720
12721         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
12722         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
12723         using +=.
12724         Reported by Simon Josefsson <simon@josefsson.org>.
12725
12726 2006-11-28  James Youngman <jay@gnu.org>
12727
12728         * README: Advise users that they might find the bug-gnulib@gnu.org
12729         and autotools-announce@gnu.org mailing lists useful.
12730
12731 2006-11-28  Bruno Haible  <bruno@clisp.org>
12732
12733         * m4/ptrdiff_max.m4: Remove file.
12734
12735 2006-11-21  Bruno Haible  <bruno@clisp.org>
12736
12737         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
12738         _AC_COMPUTE_INT.
12739         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
12740         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
12741         _AC_COMPUTE_INT.
12742         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
12743         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
12744         _AC_COMPUTE_INT.
12745         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
12746
12747 2006-11-28  Jim Meyering  <jim@meyering.net>
12748
12749         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
12750         warning from "gcc -Wshadow" about shadowing the builtin.
12751
12752 2006-11-27  Bruno Haible  <bruno@clisp.org>
12753
12754         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
12755         _AC_COMPUTE_INT.
12756         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
12757
12758 2006-11-27  Bruno Haible  <bruno@clisp.org>
12759             Paul Eggert  <eggert@cs.ucla.edu>
12760
12761         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
12762
12763 2006-11-26  Bruno Haible  <bruno@clisp.org>
12764
12765         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
12766         noinst_LTLIBRARIES.
12767
12768 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
12769             Bruno Haible  <bruno@clisp.org>
12770
12771         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
12772         if compiling with "gcc -ansi".
12773
12774 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
12775
12776         Fix some incompatibilities with gcc -ansi -pedantic.
12777         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
12778         if compiling pedantically with GCC, unless it's C99 or later.
12779         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
12780         it mishandles gcc -ansi -pedantic as well.
12781         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
12782         if gcc -pedantic.
12783         * lib/regexec.c (check_node_accept_bytes): Don't use auto
12784         initializers for struct if -pedantic, unless it's C99 or later.
12785
12786 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
12787
12788         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
12789         Don't close an fd more than once. Identical atimes indicate
12790         success, not failure.
12791
12792 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
12793
12794         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
12795
12796 2006-11-23  Jim Meyering  <jim@meyering.net>
12797
12798         * build-aux/announce-gen: New file.  From coreutils.
12799
12800 2006-11-22  Jim Meyering  <jim@meyering.net>
12801
12802         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
12803         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
12804         (fts_read): Use a temporary to narrow the overused st_size member
12805         before using it in a switch statement.  Reported by Matthew Woehlke.
12806
12807         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
12808         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
12809
12810 2006-11-20  Bruno Haible  <bruno@clisp.org>
12811
12812         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
12813         changequote instead of pairs of brackets.
12814         Reported by Andreas Schwab <schwab@suse.de>.
12815
12816 2006-11-21  Jim Meyering  <jim@meyering.net>
12817
12818         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
12819         so as to remain compatible with older compilers.
12820         Patch from Michael Deutschmann.
12821
12822 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
12823
12824         * MODULES.html.sh (File system functions): Add openat.
12825
12826         * lib/openat.h (rpl_fstatat): New macro, if
12827         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
12828         (fstatat): Define to rpl_fstatat under the same conditions,
12829         unless COMPILING_FSTATAT.
12830         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
12831         seems to have the bug.
12832         * lib/fstatat.c: New file.
12833         * modules/openat (Files): Add it.
12834
12835 2006-11-20  Bruno Haible  <bruno@clisp.org>
12836
12837         * Makefile: New file.
12838
12839 2006-11-20  Jim Meyering  <jim@meyering.net>
12840
12841         The beginnings of syntax-related checks for gnulib.
12842         * lib/Makefile: New file.
12843         * lib/t-idcache: New script.  Ensure that the two halves of
12844         idcache.c stay in sync.
12845
12846         * lib/idcache.c: Adjust comments in user- and group- portions to
12847         be more accurate, and to be consistent with one another.
12848
12849 2006-11-20  Jim Meyering  <jim@meyering.net>
12850
12851         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
12852         continue using the flexible array member (thus, this module performs
12853         half as many malloc calls), with the addition that...
12854         (getgroup, getuser): Consistently record a non-match via an empty
12855         "name" string, and map an empty string match to a NULL return value.
12856         * modules/idcache (Depends-on): Re-add flexmember.
12857
12858         * lib/idcache.c (getuser): Remove all uses of the register keyword.
12859         (getuidbyname, getgroup, getgidbyname): Likewise.
12860
12861         Use cleaner syntax: NULL rather than 0.
12862         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
12863
12864 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
12865
12866         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
12867         It mishandled the case where the group was missing.
12868         Problem reported by Greg Schafer.
12869         * modules/idcache: Likewise.
12870
12871 2006-11-18  Jim Meyering  <jim@meyering.net>
12872
12873         * check-module (%exempt_header): Add exception for some
12874         conditionally-included headers.
12875
12876         * modules/i-ring (Depends-on): Add verify.
12877         (License): Change to LGPL.
12878
12879 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12880
12881         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
12882         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
12883         and inttostr.h.  Use snprintf rather than uinttostr, so that
12884         LGPLed code doesn't depend on GPLed.
12885
12886 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
12887
12888         * modules/inline (License): Change from GPL to LGPL.
12889
12890 2006-11-17  Jim Meyering  <jim@meyering.net>
12891
12892         * modules/d-type (License): Switch to LGPL.
12893
12894 2006-11-15  Bruno Haible  <bruno@clisp.org>
12895
12896         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
12897
12898 2006-11-15  Eric Blake  <ebb9@byu.net>
12899
12900         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
12901         the module dependency.
12902
12903 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12904             Bruno Haible  <bruno@clisp.org>
12905
12906         * gnulib-tool (func_create_testdir): Add license consistency check.
12907
12908 2006-11-15  Eric Blake  <ebb9@byu.net>
12909
12910         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
12911         random "(cached)" in configure output.
12912
12913 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12914
12915         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
12916         test for conforming inttypes.h is both announced and cached.
12917
12918         * MODULES.html.sh (seen_modules, seen_files): New variables.
12919         (func_module): Rewrite to use a few less gnulib-tool and sed
12920         invocations.  Avoid a couple of quadratic algorithms for ...
12921         (missed_modules, missed_files): ... these, with ...
12922         (func_append, func_tmpdir): ... these new functions, from
12923         gnulib-tool.  Analogously, install traps for cleanup.
12924
12925         * tests/test-gc.c (main): Remove unused variables.
12926         * tests/test-read-file.c: Include stdlib.h, for 'free'.
12927
12928 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
12929
12930         * modules/inttostr (License): Change to LGPL.
12931
12932 2006-11-14  Eric Blake  <ebb9@byu.net>
12933
12934         * modules/tempname (License): Change to LGPL.
12935
12936 2006-11-14  Eric Blake  <ebb9@byu.net>
12937
12938         * doc/functions.texi (Function Portability): *printf functions on
12939         Cygwin now understand all POSIX size specifiers.
12940
12941 2006-11-14  Bruno Haible  <bruno@clisp.org>
12942
12943         * modules/c-ctype (License): Change to LGPL.
12944
12945 2006-11-12  Bruno Haible  <bruno@clisp.org>
12946
12947         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
12948         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
12949         for GNOME libraries, for which the include files are installed in
12950         subdirectories of $prefix/include.
12951
12952 2006-11-12  Bruno Haible  <bruno@clisp.org>
12953
12954         * m4/lib-link.m4: Require at least autoconf-2.54.
12955         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
12956         name to underscores for the --with option.
12957
12958 2006-11-13  Bruno Haible  <bruno@clisp.org>
12959
12960         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
12961         the tests directory.
12962         Reported by Ralf Wildenhues.
12963
12964 2006-11-13  Bruno Haible  <bruno@clisp.org>
12965
12966         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
12967         (func_emit_initmacro_end): Undo the override here.
12968         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
12969         Works around the famous automake error in coreutils.
12970
12971 2006-11-13  Eric Blake  <ebb9@byu.net>
12972
12973         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
12974         element, not its node.
12975
12976 2006-11-12  Bruno Haible  <bruno@clisp.org>
12977
12978         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
12979         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
12980
12981 2006-11-12  Bruno Haible  <bruno@clisp.org>
12982
12983         * gnulib-tool: New option --local-symlink.
12984         (func_usage): Document it.
12985         (lsymbolic): New variable.
12986         (func_import, func_create_testdir): If --symlink was not specified,
12987         test whether --local-symlink was specified and the file comes from
12988         the local_gnulib_dir.
12989
12990 2006-11-12  Bruno Haible  <bruno@clisp.org>
12991
12992         * gnulib-tool (func_ln): New function.
12993         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
12994
12995 2006-11-12  Bruno Haible  <bruno@clisp.org>
12996
12997         Finish support for source files in subdirectories.
12998         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
12999         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
13000         AUTOMAKE_OPTIONS.
13001         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
13002
13003 2006-11-12  Bruno Haible  <bruno@clisp.org>
13004
13005         * gnulib-tool (func_get_automake_snippet): Synthesize also an
13006         EXTRA_lib_SOURCES augmentation.
13007         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
13008
13009 2006-11-12  Jim Meyering  <jim@meyering.net>
13010
13011         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
13012         file descriptors.  This also averts a failure on systems with
13013         native openat support when a traversed directory lacks "x" access.
13014         * lib/fts_.h: Include "i-ring.h"
13015         (struct FTS) [fts_fd_ring]: New member.
13016         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
13017         (FCHDIR): Add parentheses.
13018         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
13019         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
13020         When descending, rather than simply closing the previous
13021         fts_cwd_fd value, push that file descriptor onto the ring.
13022         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
13023         (fts_open): Initialize the new fd_ring member.
13024         (fts_close): Clear the ring.
13025         (fts_safe_changedir): When possible, use our new fd_ring to skip
13026         the diropen and fstat and dev/ino comparison that would normally
13027         accompany a virtual `chdir ("..")'.
13028
13029         * modules/fts (Depends-on): Add i-ring.
13030         * modules/i-ring: New module.
13031         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
13032         * m4/i-ring.m4: New file.
13033
13034 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13035
13036         * gnulib-tool (func_create_testdir): Fix replacement of
13037         `build-aux' in configure.ac.  Run autotools in gltests
13038         subdirectory.
13039         (func_create_testdir, func_create_megatestdir, test): There is
13040         no need for '--force' in most autotool invocations in a new
13041         tree.  Actually fail the whole test if any of the tools, or the
13042         configure or make stages fail.
13043
13044         Sync from Automake.
13045         * build-aux/gnupload: Revert last change.  Add pointer to upload
13046         instructions of the GNU Maintenance Instructions.
13047         Suggestion by Karl Berry.
13048
13049 2006-11-10  Jim Meyering  <jim@meyering.net>
13050
13051         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
13052
13053 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13054
13055         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
13056         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
13057         (bind_textdomain_codeset) [! ENABLE_NLS]:
13058         Evaluate all the arguments.  That way, callers get compatible behavior
13059         if the arguments have side effects.  Also, it avoids some GCC
13060         diagnostics in some cases; Joel E. Denny reported problems when Bison
13061         was configured with --enable-gcc-warnigs.
13062
13063 2006-11-10  Jim Meyering  <jim@meyering.net>
13064
13065         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
13066         relevant options in CFLAGS (like -O, -fno-inline) are taken into
13067         account.
13068
13069 2006-11-10  Jim Meyering  <jim@meyering.net>
13070
13071         * modules/inline: New file/module.
13072         * modules/xalloc (Files): Remove m4/inline.m4.
13073         (Depends-on): Add inline, instead.
13074         * modules/oset: Likewise.
13075         * modules/list: Likewise.
13076
13077 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13078
13079         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
13080         Problem reported by Matthew Woehlke.
13081
13082 2006-11-09  Bruno Haible  <bruno@clisp.org>
13083
13084         * lib/tempname.c (gen_tempname): Remove variant that invokes
13085         __gen_tempname.
13086         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
13087         __gen_tempname.
13088
13089 2006-11-08  Bruno Haible  <bruno@clisp.org>
13090
13091         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
13092         to 'yes' instead of 'cross-compiling'.
13093
13094 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
13095
13096         * lib/quotearg.h (quotearg_free): New decl.
13097         * lib/quotearg.c (quotearg_free): New function.
13098         (slot0, nslots, slotvec0, slotvec):
13099         Now file-scope so that quotearg_free can get at them.
13100
13101 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13102
13103         Sync from Automake.
13104         * build-aux/gnupload: Add missing 'gnu' to example URL.
13105         Report by Karl Berry.
13106
13107 2006-11-08  Bruno Haible  <bruno@clisp.org>
13108
13109         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
13110         Suggested by Paul Eggert.
13111
13112 2006-11-08  Jim Meyering  <jim@meyering.net>
13113
13114         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
13115         It's already included if !_LIBC.
13116         (fts_safe_changedir): Add a comment.
13117
13118 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
13119
13120         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
13121         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
13122         Matthew Woehlke.
13123
13124         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
13125         definitions up, to avoid colliding with change below.
13126         (static_inline) [HAVE_INLINE]: New macro.
13127         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
13128         Provide extern decls when !HAVE_INLINE.  Do not define unless
13129         static_inline is defined, either by us or by xmalloc.c.  Use
13130         static_inline rather than static inline.
13131         (XCALLOC): Optimize sizeof(T) = 1 case.
13132         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
13133
13134 2006-11-07  Bruno Haible  <bruno@clisp.org>
13135
13136         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
13137         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
13138         AC_C_INLINE.
13139         * modules/xalloc (Files): Add m4/inline.m4.
13140
13141 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13142
13143         * README: Fix typo.
13144         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
13145         (Miscellanous Notes): ...from this.
13146
13147 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
13148
13149         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
13150         Mention that offsetof should be used instead of sizeof.
13151         From Bruno Haible.
13152
13153 2006-11-07  Bruno Haible  <bruno@clisp.org>
13154
13155         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
13156
13157 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
13158
13159         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
13160         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
13161         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
13162         (gl_tree_add_before, gl_tree_add_after):
13163         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
13164         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
13165         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
13166         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
13167         (gl_linked_add_after, gl_linked_add_at): Likewise.
13168         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
13169         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
13170         (gl_tree_add_before, gl_tree_add_after): Likewise.
13171         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
13172         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
13173         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
13174
13175 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13176
13177         * lib/gl_oset.h: Use C comment style, not C++ comment style.
13178
13179 2006-11-06  Bruno Haible  <bruno@clisp.org>
13180
13181         * m4/inline.m4: New file.
13182         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
13183         * modules/list (Files): Add m4/inline.m4.
13184         * modules/oset (Files): Likewise.
13185
13186 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
13187
13188         * lib/idcache.c: Include <stddef.h>, for offsetof.
13189         (struct userid.name): Change from char * to a flexible array member.
13190         All uses changed.
13191         * modules/idcache (Depends-on): Add flexmember.
13192
13193         * MODULES.html.sh (Core language properties): New module flexmember.
13194         * modules/flexmember, m4/flexmember.m4: New files.
13195
13196         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
13197         inline functions that are identical with the old xnmalloc_inline,
13198         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
13199         that we can avoid some unnecessary integer multiplications and
13200         divisions in the common case where the element size is known at
13201         compile time.
13202         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
13203         needed.
13204         (xnboundedmalloc): Remove.
13205         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
13206         arguments, for consistency with rest of this header.
13207         (xcharalloc): Rewrite using XNMALLOC.
13208         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
13209         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
13210         versions have been moved to lib/xalloc.h and renamed to be the
13211         non-*_inline versions.
13212         (xmalloc, xrealloc): Implement without reference to the xnmalloc
13213         and xnrealloc functions, since those functions are now inline and
13214         now call us.
13215         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
13216         renaming described above.
13217         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
13218         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
13219         captures the dependency in AC_C_INLINE.
13220
13221         New module canonicalize-lgpl, proposed by Charles Wilson in
13222         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
13223         with a few small changes afterwards.
13224         * MODULES.html.sh (File system functions): New module
13225         canonicalize-lgpl.
13226         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
13227         and canonicalize_file_name.
13228         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
13229         * modules/canonicalize-lgpl: New files.
13230
13231 2006-11-05  Bruno Haible  <bruno@clisp.org>
13232
13233         * gnulib-tool (func_import, func_create_testdir): Create directories
13234         also for files in subdirectories of lib/.
13235
13236 2006-11-05  Bruno Haible  <bruno@clisp.org>
13237
13238         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
13239         ANSI C compliant.
13240
13241 2006-11-03  Bruno Haible  <bruno@clisp.org>
13242
13243         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
13244         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
13245         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
13246         (xnboundedmalloc): New inline function.
13247         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
13248         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
13249         xmalloc.
13250         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
13251         xmalloc.
13252         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
13253         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
13254         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
13255         xmalloc.
13256         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
13257         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
13258         xmalloc.
13259         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
13260         gl_tree_add_after): Use XMALLOC instead of xmalloc.
13261         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
13262         xmalloc.
13263         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
13264         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
13265         gl_tree_add_after): Use XMALLOC instead of xmalloc.
13266         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
13267         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
13268         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
13269         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
13270
13271 2006-11-03  Bruno Haible  <bruno@clisp.org>
13272
13273         * lib/c-ctype.h [C++]: Define functions without name mangling.
13274         * lib/fwriteerror.h [C++]: Likewise.
13275         * lib/gcd.h [C++]: Likewise.
13276         * lib/linebreak.h [C++]: Likewise.
13277
13278 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
13279
13280         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
13281         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
13282         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
13283         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
13284         Check for functions and headers just once.
13285         Check for declaration of canonicalize_file_name.
13286         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
13287
13288 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
13289
13290         * gnulib-tool (func_import): Fix typo in actioncmd.
13291
13292 2006-11-02  Bruno Haible  <bruno@clisp.org>
13293
13294         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
13295         newline sequence in the Makefile.am snippet as a space, like "make"
13296         does.
13297         Reported by Roger Persson <perrog@gmail.com>.
13298
13299 2006-11-01  Bruno Haible  <bruno@clisp.org>
13300
13301         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
13302         already declared in <string.h>.
13303         * lib/strcase.h (strncasecmp): Don't declare it if yes.
13304
13305 2006-11-01  Bruno Haible  <bruno@clisp.org>
13306
13307         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
13308         * lib/strcase.h: Include <string.h>.
13309         (strcasecmp): Define to rpl_strcasecmp here.
13310
13311 2006-11-01  Bruno Haible  <bruno@clisp.org>
13312
13313         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
13314
13315 2006-11-01  Eric Blake  <ebb9@byu.net>
13316
13317         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
13318
13319         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
13320
13321 2006-10-29  Bruno Haible  <bruno@clisp.org>
13322
13323         Make it compile in C++ mode.
13324         * lib/full-write.c (full_rw): Add a cast.
13325
13326 2006-11-01  Bruno Haible  <bruno@clisp.org>
13327
13328         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
13329         be POSIX compliant.
13330         Reported by Roger Persson <perrog@gmail.com>.
13331
13332 2006-11-01  Eric Blake  <ebb9@byu.net>
13333
13334         * lib/getopt_.h: Fix comments.
13335
13336 2006-10-31  Eric Blake  <ebb9@byu.net>
13337
13338         * modules/tmpdir (Depends-on): Add sys_stat.
13339         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
13340         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
13341         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
13342         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
13343         tempname.
13344
13345 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
13346
13347         Avoid some C++ diagnostics reported by Bruno Haible.
13348         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
13349         xmalloc.
13350         (quotearg_alloc): Use xcharalloc rather than xmalloc.
13351         (struct slotvec): Move to top level.
13352         (quotearg_n_options): Rewrite to avoid xmalloc.
13353         * lib/xalloc.h (xcharalloc): New function.
13354         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
13355         [defined __cplusplus]: Add function template that provides result
13356         type propagation.  This part of the change is from Bruno Haible.
13357
13358 2006-10-29  Bruno Haible  <bruno@clisp.org>
13359
13360         Make it compile in C++ mode.
13361         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
13362         * lib/strnlen1.c (strnlen1): Cast memchr result.
13363         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
13364         * lib/clean-temp.c (string_equals, string_hash): Add casts.
13365         (create_temp_dir): Rename local variable 'template'.
13366         (compile_csharp_using_sscli): Add cast.
13367         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
13368         * lib/findprog.c (find_in_path): Likewise.
13369         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
13370         * lib/wait-process.c (register_slave_subprocess): Likewise.
13371
13372 2006-10-22  Bruno Haible  <bruno@clisp.org>
13373
13374         * modules/tsearch: New file.
13375         * lib/tsearch.h: New file.
13376         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
13377         * m4/tsearch.m4: New file.
13378         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
13379
13380 2006-10-29  Eric Blake  <ebb9@byu.net>
13381
13382         * lib/arcfour.c: Assume config.h.
13383         * lib/arctwo.c: Likewise.
13384         * lib/base64.c: Likewise.
13385         * lib/check-version.c: Likewise.
13386         * lib/crc.c: Likewise.
13387         * lib/des.c: Likewise.
13388         * lib/gc-gnulib.c: Likewise.
13389         * lib/gc-libgcrypt.c: Likewise.
13390         * lib/gc-pbkdf2-sha1.c: Likewise.
13391         * lib/getaddrinfo.c: Likewise.
13392         * lib/getdelim.c: Likewise.
13393         * lib/getline.c: Likewise.
13394         * lib/hmac-md5.c: Likewise.
13395         * lib/hmac-sha1.c: Likewise.
13396         * lib/iconvme.c: Likewise.
13397         * lib/md2.c: Likewise.
13398         * lib/md4.c: Likewise.
13399         * lib/memxor.c: Likewise.
13400         * lib/read-file.c: Likewise.
13401         * lib/readline.c: Likewise.
13402         * lib/rijndael-alg-fst.c: Likewise.
13403         * lib/rijndael-api-fst.c: Likewise.
13404         * lib/xgetdomainname.c: Likewise.
13405
13406 2006-10-28  Eric Blake  <ebb9@byu.net>
13407
13408         * lib/xstrndup.c: Assume config.h.
13409
13410 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
13411
13412         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
13413         stat-macros.h is now for our own macros, whereas stat_h is for
13414         macros in the <sys/stat.h> name space.
13415         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
13416         (STAT_MACROS_H): Remove.
13417         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
13418         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
13419         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
13420         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
13421         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
13422         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
13423         Move these macros to ...
13424         * lib/stat_.h: here.  Don't include stat-macros.h.
13425         * lib/canonicalize.c: Don't include stat-macros.h.
13426         * lib/chown.c: Likewise.
13427         * lib/euidaccess.c: Likewise.
13428         * lib/file-type.c: Likewise.
13429         * lib/filemode.c: Likewise.
13430         * lib/glob.c: Likewise.
13431         * lib/isapipe.c: Likewise.
13432         * lib/lchown.c: Likewise.
13433         * lib/lstat.c: Likewise.
13434         * lib/mkdir-p.c: Likewise.
13435         * lib/rmdir.c: Likewise.
13436         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
13437         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
13438         unless mkdir isn't declared, to speed up 'configure'.
13439         Always create sys/stat.h, since it's unlikely any real sys/stat.h
13440         would define all the S_* symbols.
13441         * modules/canonicalize (Depends-on):
13442         Depend on sys_stat, not stat-macros.
13443         * modules/chown: Likewise.
13444         * modules/euidaccess: Likewise.
13445         * modules/filemode: Likewise.
13446         * modules/file-type: Likewise.
13447         * modules/glob: Likewise.
13448         * modules/isapipe: Likewise.
13449         * modules/lchown: Likewise.
13450         * modules/lstat: Likewise.
13451         * modules/mkancesdirs: Likewise.
13452         * modules/rmdir: Likewise.
13453         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
13454         * modules/modechange: Likewise.
13455         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
13456         (configure.ac): Remove gl_STAT_MACROS.
13457         * modules/sys_stat (Depends-on): Remove stat-macros.
13458
13459 2006-10-27  Bruno Haible  <bruno@clisp.org>
13460
13461         * m4/signed.m4: Remove file.
13462         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
13463         invocation.
13464         * modules/vasnprintf (Files): Remove m4/signed.m4.
13465
13466 2006-10-27  Bruno Haible  <bruno@clisp.org>
13467
13468         Update to GNU gettext 0.16.
13469         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
13470         m4/inttypes-h.m4, m4/signed.m4.
13471         * m4/gettext.m4: Update to GNU gettext 0.16.
13472         * m4/intl.m4: New file, from GNU gettext.
13473         * m4/intldir.m4: New file, from GNU gettext.
13474         * config/srclist.txt: Update
13475
13476 2006-10-27  Eric Blake  <ebb9@byu.net>
13477
13478         * MODULES.html.sh: Document tempname.
13479         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
13480         dependencies.
13481         (Files): Move lib/tempname.c...
13482         * modules/tempname: ...to this new module.
13483         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
13484         (gl_PREREQ_TEMPNAME): Move...
13485         * m4/tempname.m4: ...to this new file.
13486         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
13487         * modules/sys_stat (Depends-on): Add stat-macros.
13488         * lib/stat_.h (includes): Pick up stat macros.
13489         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
13490         if stat macros are broken.
13491         * lib/tempname.c (includes): No need to include "stat-macros.h".
13492         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
13493         (direxists, __path_search) [!_LIBC]: Don't compile these in
13494         gnulib; the tmpdir module covers that.
13495         * lib/tempname.h: New file.
13496
13497 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
13498
13499         * COPYING: Explain how gnulib-tool converts licence headers.
13500         Almost all wording by Eric Blake.
13501
13502 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
13503
13504         * lib/mbchar.h (is_basic_table): Make read-only.
13505         * lib/mbchar.c (is_basic_table): Likewise.
13506         Reported by John Darrington.
13507
13508 2006-10-25  Bruno Haible  <bruno@clisp.org>
13509
13510         * lib/progname.h (set_program_name): Undefine before defining.
13511
13512 2006-10-25  Bruno Haible  <bruno@clisp.org>
13513
13514         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
13515         false for non-gcc C++ compilers.
13516         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
13517
13518 2006-10-24  Bruno Haible  <bruno@clisp.org>
13519
13520         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
13521         iconv implementations like Irix iconv.
13522
13523 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13524
13525         * modules/vararrays: New file.
13526         * m4/vararrays.m4: New file, taken from diffutils.
13527         * MODULES.html.sh: New module vararrays.
13528
13529 2006-10-24  Karl Berry  <karl@gnu.org>
13530
13531         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
13532         Don't call GNU Unix.
13533
13534 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13535
13536         * users.txt: Add Libtool.
13537
13538         Sync from Libtool:
13539
13540         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13541
13542         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
13543         to gnulib's policy of including config.h unconditionally.
13544
13545 2006-10-24  Bruno Haible  <bruno@clisp.org>
13546
13547         * modules/wcwidth (Files): Add m4/wint_t.m4.
13548         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
13549         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
13550
13551 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13552
13553         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
13554         to pacify GCC with some -W flags enabled.  Problem reported by
13555         Bruno Haible.
13556
13557 2006-10-24  Jim Meyering  <jim@meyering.net>
13558
13559         * MODULES.html.sh: Remove uinttostr.  It's not a module.
13560         Reported by Karl Berry.
13561
13562 2006-10-23  Bruno Haible  <bruno@clisp.org>
13563
13564         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
13565
13566 2006-10-24  Bruno Haible  <bruno@clisp.org>
13567
13568         * lib/gl_list.h: Use C comment style, not C++ comment style.
13569
13570 2006-10-23  Eric Blake  <ebb9@byu.net>
13571
13572         * lib/getaddrinfo.c (includes): Add missing include.
13573
13574 2006-10-23  Bruno Haible  <bruno@clisp.org>
13575             Paul Eggert  <eggert@cs.ucla.edu>
13576
13577         Ability to rename obstack_free.
13578         * lib/obstack.h (__obstack_free): New macro. Declare instead of
13579         obstack_free.
13580         (obstack_free): Invoke the __obstack_free macro.
13581         * lib/obstack.c (obstack_free): Use __obstack_free macro.
13582
13583 2006-10-23  Bruno Haible  <bruno@clisp.org>
13584             Paul Eggert  <eggert@cs.ucla.edu>
13585
13586         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
13587         __argc, __argv from the declaration. (They are defined as macros on
13588         mingw.)
13589
13590 2006-10-22  Bruno Haible  <bruno@clisp.org>
13591
13592         * doc/gnulib-intro.texi: New file.
13593         * doc/gnulib.texi: Include it.
13594
13595 2006-10-21  Bruno Haible  <bruno@clisp.org>
13596
13597         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
13598         "Introduction", "Miscellanous Notes", "Particular Modules".
13599
13600 2006-10-21  Bruno Haible  <bruno@clisp.org>
13601
13602         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
13603         Change mostlyclean-local rule to avoid sh syntax error from bash
13604         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
13605
13606 2006-10-23  Jim Meyering  <jim@meyering.net>
13607
13608         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
13609         in place of snprintf.
13610
13611         * modules/inttostr (Files): Add lib/uinttostr.c.
13612         * lib/uinttostr.c (inttostr): New file/function.
13613         * lib/inttostr.h (uinttostr): Declare.
13614         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
13615         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
13616         Add uinttostr.
13617         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
13618
13619 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
13620
13621         * lib/canonicalize.c (ELOOP): Define if not already defined.
13622         Problem reported by Bruno Haible in
13623         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
13624
13625 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
13626
13627         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
13628         Problem reported by Perry Smith and Ville Laurikari.
13629
13630         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
13631         uses.
13632
13633 2006-10-19  Bruno Haible  <bruno@clisp.org>
13634
13635         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
13636         for mingw.
13637
13638 2006-10-19  Bruno Haible  <bruno@clisp.org>
13639
13640         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
13641         Needed for mingw.
13642
13643 2006-10-19  Bruno Haible  <bruno@clisp.org>
13644
13645         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
13646
13647 2006-10-19  Bruno Haible  <bruno@clisp.org>
13648
13649         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
13650         it.
13651
13652 2006-10-19  Bruno Haible  <bruno@clisp.org>
13653
13654         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
13655         invocation.
13656
13657 2006-10-19  Bruno Haible  <bruno@clisp.org>
13658
13659         * gnulib-tool (func_create_testdir): Don't include ftruncate and
13660         mountlist by default.
13661
13662 2006-10-16  Bruno Haible  <bruno@clisp.org>
13663
13664         * lib/c-strstr.c: Include c-strstr.h.
13665
13666 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
13667
13668         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
13669         in a slash.
13670
13671 2006-10-18  Bruno Haible  <bruno@clisp.org>
13672
13673         * lib/lock.h [C++]: Wrap definitions in extern "C".
13674
13675 2006-10-18  Bruno Haible  <bruno@clisp.org>
13676
13677         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
13678         gl_LIBOBJS list.
13679
13680 2006-10-18  Bruno Haible  <bruno@clisp.org>
13681
13682         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
13683
13684 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
13685
13686         * lib/xstrtol.h: Include gettext.h.
13687         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
13688         Problem reported by Eric Blake.
13689         * modules/xstrtol (Depends-on): Add gettext-h.
13690
13691 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
13692
13693         * lib/strftime.c (advance): New macro.
13694         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
13695         incomplete type, so you can't add 0 to it.  Problem and patch
13696         reported by Eelco Dolstra for dietlibc.
13697
13698 2006-10-18  Jim Meyering  <jim@meyering.net>
13699
13700         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
13701         type for a local, and rename it: s/up/user_proc/.
13702
13703 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
13704
13705         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
13706         READ_UTMP_USER_PROCESS.
13707         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
13708
13709 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
13710
13711         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
13712         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
13713
13714 2006-10-17  Eric Blake  <ebb9@byu.net>
13715
13716         * lib/sigprocmask.c (sigprocmask): Fix typo.
13717
13718         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
13719
13720         * modules/clean-temp (Makefile.am): Don't add to make output...
13721         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
13722         config.h.
13723
13724 2006-10-17  Bruno Haible  <bruno@clisp.org>
13725
13726         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
13727         differently if DEFAULT_TEXT_DOMAIN is set.
13728
13729 2006-10-16  Bruno Haible  <bruno@clisp.org>
13730
13731         * lib/clean-temp.c: Include fwriteerror.h.
13732
13733 2006-10-16  Bruno Haible  <bruno@clisp.org>
13734
13735         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
13736
13737 2006-10-16  Bruno Haible  <bruno@clisp.org>
13738
13739         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
13740         * lib/sigprocmask.h: Include <sys/types.h>.
13741         (sigset_t): Use the system's definition if present.
13742
13743 2006-10-17  Eric Blake  <ebb9@byu.net>
13744
13745         * lib/xvasprintf.c (includes): Assume config.h.
13746         * lib/xasprintf.c (includes): Likewise.
13747
13748 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
13749
13750         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
13751         at least as wide as intmax_t.
13752
13753 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
13754
13755         (Imported from Automake.)
13756         * build-aux/gnupload: Update to version 1.1 of directive file.
13757
13758 2006-10-16  Eric Blake  <ebb9@byu.net>
13759
13760         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
13761         match Automake 1.10a.
13762
13763 2006-10-14  Bruno Haible  <bruno@clisp.org>
13764
13765         * modules/sigprocmask: New file.
13766         * lib/sigprocmask.h: New file.
13767         * lib/sigprocmask.c: New file.
13768         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
13769         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
13770         request sigprocmask.o.
13771         (gl_PREREQ_SIGPROCMASK): New macro.
13772         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
13773         (Depends-on): Add sigprocmask.
13774         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
13775         gt_SIGNALBLOCKING. Test for 'raise' only once.
13776         * lib/fatal-signal.c: Include sigprocmask.h.
13777         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
13778         unblock_fatal_signals): Define always.
13779         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13780         sigprocmask.
13781
13782 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
13783
13784         Sync from Automake.
13785         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
13786         which incorrectly sets the mode of an existing destination
13787         directory.  In some cases the unpatched install-sh could do the
13788         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
13789         system.  We hope this is rare in practice, but it's clearly worth
13790         fixing.  Problem reported by Alex Unleashed in
13791         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
13792         Also, don't bother to check for -m bugs unless we're using -m;
13793         suggested by Stepan Kasal.
13794
13795 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13796
13797         Sync from Automake.
13798         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
13799         `-c' flag, so they appear at the same position as in %FASTDEP%
13800         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
13801         which ignores unknown options only after the first non-option.
13802         Bug report against M4 by Nelson H. F. Beebe.
13803
13804 2006-10-13  Jim Meyering  <jim@meyering.net>
13805
13806         Fix a bug in yesterday's change.
13807         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
13808         p->fts_statp->st_dev would be used uninitialized.
13809         Ensures that we always call fts_stat on the very first entry.
13810         Miklos Szeredi reported that find -xdev stopped working.
13811
13812 2006-10-12  Bruno Haible  <bruno@clisp.org>
13813
13814         * gnulib-tool (func_get_automake_snippet): Append an automatically
13815         computed EXTRA_DIST augmentation.
13816         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
13817         * modules/alloca-opt (Makefile.am): Likewise.
13818         * modules/allocsa (Makefile.am): Likewise.
13819         * modules/arcfour (Makefile.am): Likewise.
13820         * modules/arctwo (Makefile.am): Likewise.
13821         * modules/argmatch (Makefile.am): Likewise.
13822         * modules/argz (Makefile.am): Likewise.
13823         * modules/atexit (Makefile.am): Likewise.
13824         * modules/backupfile (Makefile.am): Likewise.
13825         * modules/byteswap (Makefile.am): Likewise.
13826         * modules/c-strtod (Makefile.am): Likewise.
13827         * modules/c-strtold (Makefile.am): Likewise.
13828         * modules/calloc (Makefile.am): Likewise.
13829         * modules/canon-host (Makefile.am): Likewise.
13830         * modules/canonicalize (Makefile.am): Likewise.
13831         * modules/chdir-long (Makefile.am): Likewise.
13832         * modules/chdir-safer (Makefile.am): Likewise.
13833         * modules/check-version (Makefile.am): Likewise.
13834         * modules/chown (Makefile.am): Likewise.
13835         * modules/cloexec (Makefile.am): Likewise.
13836         * modules/close-stream (Makefile.am): Likewise.
13837         * modules/closeout (Makefile.am): Likewise.
13838         * modules/crc (Makefile.am): Likewise.
13839         * modules/csharpexec (Makefile.am): Likewise.
13840         * modules/cycle-check (Makefile.am): Likewise.
13841         * modules/des (Makefile.am): Likewise.
13842         * modules/dev-ino (Makefile.am): Likewise.
13843         * modules/dirfd (Makefile.am): Likewise.
13844         * modules/dirname (Makefile.am): Likewise.
13845         * modules/dup2 (Makefile.am): Likewise.
13846         * modules/eealloc (Makefile.am): Likewise.
13847         * modules/error (Makefile.am): Likewise.
13848         * modules/euidaccess (Makefile.am): Likewise.
13849         * modules/exclude (Makefile.am): Likewise.
13850         * modules/exitfail (Makefile.am): Likewise.
13851         * modules/fcntl-safer (Makefile.am): Likewise.
13852         * modules/fcntl (Makefile.am): Likewise.
13853         * modules/file-type (Makefile.am): Likewise.
13854         * modules/fileblocks (Makefile.am): Likewise.
13855         * modules/filemode (Makefile.am): Likewise.
13856         * modules/filenamecat (Makefile.am): Likewise.
13857         * modules/fnmatch (Makefile.am): Likewise.
13858         * modules/fopen-safer (Makefile.am): Likewise.
13859         * modules/fpending (Makefile.am): Likewise.
13860         * modules/fprintftime (Makefile.am): Likewise.
13861         * modules/free (Makefile.am): Likewise.
13862         * modules/fsusage (Makefile.am): Likewise.
13863         * modules/ftruncate (Makefile.am): Likewise.
13864         * modules/fts (Makefile.am): Likewise.
13865         * modules/gc-arcfour (Makefile.am): Likewise.
13866         * modules/gc-des (Makefile.am): Likewise.
13867         * modules/gc-hmac-md5 (Makefile.am): Likewise.
13868         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
13869         * modules/gc-md4 (Makefile.am): Likewise.
13870         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
13871         * modules/gc-sha1 (Makefile.am): Likewise.
13872         * modules/gc (Makefile.am): Likewise.
13873         * modules/getaddrinfo (Makefile.am): Likewise.
13874         * modules/getcwd (Makefile.am): Likewise.
13875         * modules/getdelim (Makefile.am): Likewise.
13876         * modules/getdomainname (Makefile.am): Likewise.
13877         * modules/getgroups (Makefile.am): Likewise.
13878         * modules/gethostname (Makefile.am): Likewise.
13879         * modules/gethrxtime (Makefile.am): Likewise.
13880         * modules/getline (Makefile.am): Likewise.
13881         * modules/getloadavg (Makefile.am): Likewise.
13882         * modules/getlogin_r (Makefile.am): Likewise.
13883         * modules/getndelim2 (Makefile.am): Likewise.
13884         * modules/getopt (Makefile.am): Likewise.
13885         * modules/getpagesize (Makefile.am): Likewise.
13886         * modules/getpass-gnu (Makefile.am): Likewise.
13887         * modules/getpass (Makefile.am): Likewise.
13888         * modules/getsubopt (Makefile.am): Likewise.
13889         * modules/gettime (Makefile.am): Likewise.
13890         * modules/gettimeofday (Makefile.am): Likewise.
13891         * modules/getugroups (Makefile.am): Likewise.
13892         * modules/getusershell (Makefile.am): Likewise.
13893         * modules/glob (Makefile.am): Likewise.
13894         * modules/group-member (Makefile.am): Likewise.
13895         * modules/hard-locale (Makefile.am): Likewise.
13896         * modules/hash (Makefile.am): Likewise.
13897         * modules/hmac-md5 (Makefile.am): Likewise.
13898         * modules/hmac-sha1 (Makefile.am): Likewise.
13899         * modules/human (Makefile.am): Likewise.
13900         * modules/idcache (Makefile.am): Likewise.
13901         * modules/imaxabs (Makefile.am): Likewise.
13902         * modules/imaxdiv (Makefile.am): Likewise.
13903         * modules/inet_ntop (Makefile.am): Likewise.
13904         * modules/inet_pton (Makefile.am): Likewise.
13905         * modules/intprops (Makefile.am): Likewise.
13906         * modules/inttostr (Makefile.am): Likewise.
13907         * modules/inttypes (Makefile.am): Likewise.
13908         * modules/isapipe (Makefile.am): Likewise.
13909         * modules/javaversion (Makefile.am): Likewise.
13910         * modules/lchmod (Makefile.am): Likewise.
13911         * modules/lchown (Makefile.am): Likewise.
13912         * modules/localcharset (Makefile.am): Likewise.
13913         * modules/long-options (Makefile.am): Likewise.
13914         * modules/lstat (Makefile.am): Likewise.
13915         * modules/malloc (Makefile.am): Likewise.
13916         * modules/mathl (Makefile.am): Likewise.
13917         * modules/mbchar (Makefile.am): Likewise.
13918         * modules/md2 (Makefile.am): Likewise.
13919         * modules/md4 (Makefile.am): Likewise.
13920         * modules/md5 (Makefile.am): Likewise.
13921         * modules/memcasecmp (Makefile.am): Likewise.
13922         * modules/memchr (Makefile.am): Likewise.
13923         * modules/memcmp (Makefile.am): Likewise.
13924         * modules/memcoll (Makefile.am): Likewise.
13925         * modules/memcpy (Makefile.am): Likewise.
13926         * modules/memmem (Makefile.am): Likewise.
13927         * modules/memmove (Makefile.am): Likewise.
13928         * modules/mempcpy (Makefile.am): Likewise.
13929         * modules/memrchr (Makefile.am): Likewise.
13930         * modules/memset (Makefile.am): Likewise.
13931         * modules/memxor (Makefile.am): Likewise.
13932         * modules/mkancesdirs (Makefile.am): Likewise.
13933         * modules/mkdir-p (Makefile.am): Likewise.
13934         * modules/mkdir (Makefile.am): Likewise.
13935         * modules/mkdtemp (Makefile.am): Likewise.
13936         * modules/mkstemp (Makefile.am): Likewise.
13937         * modules/mktime (Makefile.am): Likewise.
13938         * modules/modechange (Makefile.am): Likewise.
13939         * modules/mountlist (Makefile.am): Likewise.
13940         * modules/nanosleep (Makefile.am): Likewise.
13941         * modules/obstack (Makefile.am): Likewise.
13942         * modules/openat (Makefile.am): Likewise.
13943         * modules/pagealign_alloc (Makefile.am): Likewise.
13944         * modules/pathmax (Makefile.am): Likewise.
13945         * modules/physmem (Makefile.am): Likewise.
13946         * modules/poll (Makefile.am): Likewise.
13947         * modules/posixtm (Makefile.am): Likewise.
13948         * modules/posixver (Makefile.am): Likewise.
13949         * modules/putenv (Makefile.am): Likewise.
13950         * modules/quote (Makefile.am): Likewise.
13951         * modules/quotearg (Makefile.am): Likewise.
13952         * modules/raise (Makefile.am): Likewise.
13953         * modules/read-file (Makefile.am): Likewise.
13954         * modules/readline (Makefile.am): Likewise.
13955         * modules/readlink (Makefile.am): Likewise.
13956         * modules/readtokens (Makefile.am): Likewise.
13957         * modules/readutmp (Makefile.am): Likewise.
13958         * modules/realloc (Makefile.am): Likewise.
13959         * modules/regex (Makefile.am): Likewise.
13960         * modules/rename-dest-slash (Makefile.am): Likewise.
13961         * modules/rename (Makefile.am): Likewise.
13962         * modules/rijndael (Makefile.am): Likewise.
13963         * modules/rmdir (Makefile.am): Likewise.
13964         * modules/rpmatch (Makefile.am): Likewise.
13965         * modules/safe-read (Makefile.am): Likewise.
13966         * modules/safe-write (Makefile.am): Likewise.
13967         * modules/same-inode (Makefile.am): Likewise.
13968         * modules/same (Makefile.am): Likewise.
13969         * modules/save-cwd (Makefile.am): Likewise.
13970         * modules/savedir (Makefile.am): Likewise.
13971         * modules/setenv (Makefile.am): Likewise.
13972         * modules/settime (Makefile.am): Likewise.
13973         * modules/sha1 (Makefile.am): Likewise.
13974         * modules/sig2str (Makefile.am): Likewise.
13975         * modules/snprintf (Makefile.am): Likewise.
13976         * modules/stat-macros (Makefile.am): Likewise.
13977         * modules/stat-time (Makefile.am): Likewise.
13978         * modules/stdbool (Makefile.am): Likewise.
13979         * modules/stdint (Makefile.am): Likewise.
13980         * modules/stdlib-safer (Makefile.am): Likewise.
13981         * modules/stpcpy (Makefile.am): Likewise.
13982         * modules/stpncpy (Makefile.am): Likewise.
13983         * modules/strcase (Makefile.am): Likewise.
13984         * modules/strcasestr (Makefile.am): Likewise.
13985         * modules/strchrnul (Makefile.am): Likewise.
13986         * modules/strcspn (Makefile.am): Likewise.
13987         * modules/strdup (Makefile.am): Likewise.
13988         * modules/strerror (Makefile.am): Likewise.
13989         * modules/strftime (Makefile.am): Likewise.
13990         * modules/strndup (Makefile.am): Likewise.
13991         * modules/strnlen (Makefile.am): Likewise.
13992         * modules/strpbrk (Makefile.am): Likewise.
13993         * modules/strsep (Makefile.am): Likewise.
13994         * modules/strstr (Makefile.am): Likewise.
13995         * modules/strtod (Makefile.am): Likewise.
13996         * modules/strtoimax (Makefile.am): Likewise.
13997         * modules/strtok_r (Makefile.am): Likewise.
13998         * modules/strtol (Makefile.am): Likewise.
13999         * modules/strtoll (Makefile.am): Likewise.
14000         * modules/strtoul (Makefile.am): Likewise.
14001         * modules/strtoull (Makefile.am): Likewise.
14002         * modules/strtoumax (Makefile.am): Likewise.
14003         * modules/strverscmp (Makefile.am): Likewise.
14004         * modules/sys_socket (Makefile.am): Likewise.
14005         * modules/sys_stat (Makefile.am): Likewise.
14006         * modules/sysexits (Makefile.am): Likewise.
14007         * modules/time_r (Makefile.am): Likewise.
14008         * modules/timegm (Makefile.am): Likewise.
14009         * modules/timespec (Makefile.am): Likewise.
14010         * modules/tmpfile-safer (Makefile.am): Likewise.
14011         * modules/trim (Makefile.am): Likewise.
14012         * modules/unistd-safer (Makefile.am): Likewise.
14013         * modules/unlinkdir (Makefile.am): Likewise.
14014         * modules/unlocked-io (Makefile.am): Likewise.
14015         * modules/userspec (Makefile.am): Likewise.
14016         * modules/utime (Makefile.am): Likewise.
14017         * modules/utimecmp (Makefile.am): Likewise.
14018         * modules/utimens (Makefile.am): Likewise.
14019         * modules/vasnprintf (Makefile.am): Likewise.
14020         * modules/vasprintf (Makefile.am): Likewise.
14021         * modules/vsnprintf (Makefile.am): Likewise.
14022         * modules/xalloc (Makefile.am): Likewise.
14023         * modules/xgetcwd (Makefile.am): Likewise.
14024         * modules/xnanosleep (Makefile.am): Likewise.
14025         * modules/xreadlink (Makefile.am): Likewise.
14026         * modules/xstrtod (Makefile.am): Likewise.
14027         * modules/xstrtol (Makefile.am): Likewise.
14028         * modules/xstrtold (Makefile.am): Likewise.
14029         * modules/yesno (Makefile.am): Likewise.
14030         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
14031
14032 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
14033
14034         * modules/error (Makefile.am): Distribute files through
14035         EXTRA_DIST, not lib_SOURCES.
14036
14037 2006-10-12  Eric Blake  <ebb9@byu.net>
14038
14039         * modules/error (Makefile.am): Distribute files in /lib.
14040         * modules/obstack (Makefile.am): Likewise.
14041
14042 2006-10-12  Bruno Haible  <bruno@clisp.org>
14043
14044         * modules/acl (Makefile.am): Distribute all files in lib/ through
14045         EXTRA_DIST.
14046         * modules/arcfour (Makefile.am): Likewise.
14047         * modules/arctwo (Makefile.am): Likewise.
14048         * modules/argmatch (Makefile.am): Likewise.
14049         * modules/argz (Makefile.am): Likewise.
14050         * modules/atexit (Makefile.am): Likewise.
14051         * modules/backupfile (Makefile.am): Likewise.
14052         * modules/c-strtod (Makefile.am): Likewise.
14053         * modules/c-strtold (Makefile.am): Likewise.
14054         * modules/calloc (Makefile.am): Likewise.
14055         * modules/canon-host (Makefile.am): Likewise.
14056         * modules/canonicalize (Makefile.am): Likewise.
14057         * modules/chdir-long (Makefile.am): Likewise.
14058         * modules/chdir-safer (Makefile.am): Likewise.
14059         * modules/check-version (Makefile.am): Likewise.
14060         * modules/chown (Makefile.am): Likewise.
14061         * modules/cloexec (Makefile.am): Likewise.
14062         * modules/close-stream (Makefile.am): Likewise.
14063         * modules/closeout (Makefile.am): Likewise.
14064         * modules/crc (Makefile.am): Likewise.
14065         * modules/cycle-check (Makefile.am): Likewise.
14066         * modules/des (Makefile.am): Likewise.
14067         * modules/dirfd (Makefile.am): Likewise.
14068         * modules/dirname (Makefile.am): Likewise.
14069         * modules/dup2 (Makefile.am): Likewise.
14070         * modules/euidaccess (Makefile.am): Likewise.
14071         * modules/exclude (Makefile.am): Likewise.
14072         * modules/exitfail (Makefile.am): Likewise.
14073         * modules/fcntl-safer (Makefile.am): Likewise.
14074         * modules/file-type (Makefile.am): Likewise.
14075         * modules/fileblocks (Makefile.am): Likewise.
14076         * modules/filemode (Makefile.am): Likewise.
14077         * modules/filenamecat (Makefile.am): Likewise.
14078         * modules/fnmatch (Makefile.am): Likewise.
14079         * modules/fopen-safer (Makefile.am): Likewise.
14080         * modules/fpending (Makefile.am): Likewise.
14081         * modules/fprintftime (Makefile.am): Likewise.
14082         * modules/free (Makefile.am): Likewise.
14083         * modules/fsusage (Makefile.am): Likewise.
14084         * modules/ftruncate (Makefile.am): Likewise.
14085         * modules/fts (Makefile.am): Likewise.
14086         * modules/gc (Makefile.am): Likewise.
14087         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
14088         * modules/getaddrinfo (Makefile.am): Likewise.
14089         * modules/getcwd (Makefile.am): Likewise.
14090         * modules/getdelim (Makefile.am): Likewise.
14091         * modules/getdomainname (Makefile.am): Likewise.
14092         * modules/getgroups (Makefile.am): Likewise.
14093         * modules/gethostname (Makefile.am): Likewise.
14094         * modules/gethrxtime (Makefile.am): Likewise.
14095         * modules/getline (Makefile.am): Likewise.
14096         * modules/getloadavg (Makefile.am): Likewise.
14097         * modules/getlogin_r (Makefile.am): Likewise.
14098         * modules/getopt (Makefile.am): Likewise.
14099         * modules/getpass (Makefile.am): Likewise.
14100         * modules/getpass-gnu (Makefile.am): Likewise.
14101         * modules/getsubopt (Makefile.am): Likewise.
14102         * modules/gettime (Makefile.am): Likewise.
14103         * modules/gettimeofday (Makefile.am): Likewise.
14104         * modules/getugroups (Makefile.am): Likewise.
14105         * modules/getusershell (Makefile.am): Likewise.
14106         * modules/glob (Makefile.am): Likewise.
14107         * modules/group-member (Makefile.am): Likewise.
14108         * modules/hard-locale (Makefile.am): Likewise.
14109         * modules/hash (Makefile.am): Likewise.
14110         * modules/hmac-md5 (Makefile.am): Likewise.
14111         * modules/hmac-sha1 (Makefile.am): Likewise.
14112         * modules/human (Makefile.am): Likewise.
14113         * modules/idcache (Makefile.am): Likewise.
14114         * modules/imaxabs (Makefile.am): Likewise.
14115         * modules/imaxdiv (Makefile.am): Likewise.
14116         * modules/inet_ntop (Makefile.am): Likewise.
14117         * modules/inet_pton (Makefile.am): Likewise.
14118         * modules/inttostr (Makefile.am): Likewise.
14119         * modules/isapipe (Makefile.am): Likewise.
14120         * modules/lchown (Makefile.am): Likewise.
14121         * modules/long-options (Makefile.am): Likewise.
14122         * modules/lstat (Makefile.am): Likewise.
14123         * modules/malloc (Makefile.am): Likewise.
14124         * modules/mathl (Makefile.am): Likewise.
14125         * modules/mbchar (Makefile.am): Likewise.
14126         * modules/md2 (Makefile.am): Likewise.
14127         * modules/md4 (Makefile.am): Likewise.
14128         * modules/md5 (Makefile.am): Likewise.
14129         * modules/memcasecmp (Makefile.am): Likewise.
14130         * modules/memchr (Makefile.am): Likewise.
14131         * modules/memcmp (Makefile.am): Likewise.
14132         * modules/memcoll (Makefile.am): Likewise.
14133         * modules/memcpy (Makefile.am): Likewise.
14134         * modules/memmem (Makefile.am): Likewise.
14135         * modules/memmove (Makefile.am): Likewise.
14136         * modules/mempcpy (Makefile.am): Likewise.
14137         * modules/memrchr (Makefile.am): Likewise.
14138         * modules/memset (Makefile.am): Likewise.
14139         * modules/memxor (Makefile.am): Likewise.
14140         * modules/mkancesdirs (Makefile.am): Likewise.
14141         * modules/mkdir (Makefile.am): Likewise.
14142         * modules/mkdir-p (Makefile.am): Likewise.
14143         * modules/mkdtemp (Makefile.am): Likewise.
14144         * modules/mkstemp (Makefile.am): Likewise.
14145         * modules/mktime (Makefile.am): Likewise.
14146         * modules/modechange (Makefile.am): Likewise.
14147         * modules/mountlist (Makefile.am): Likewise.
14148         * modules/nanosleep (Makefile.am): Likewise.
14149         * modules/openat (Makefile.am): Likewise.
14150         * modules/pagealign_alloc (Makefile.am): Likewise.
14151         * modules/physmem (Makefile.am): Likewise.
14152         * modules/poll (Makefile.am): Likewise.
14153         * modules/posixtm (Makefile.am): Likewise.
14154         * modules/posixver (Makefile.am): Likewise.
14155         * modules/putenv (Makefile.am): Likewise.
14156         * modules/quote (Makefile.am): Likewise.
14157         * modules/quotearg (Makefile.am): Likewise.
14158         * modules/raise (Makefile.am): Likewise.
14159         * modules/read-file (Makefile.am): Likewise.
14160         * modules/readline (Makefile.am): Likewise.
14161         * modules/readlink (Makefile.am): Likewise.
14162         * modules/readtokens (Makefile.am): Likewise.
14163         * modules/readutmp (Makefile.am): Likewise.
14164         * modules/realloc (Makefile.am): Likewise.
14165         * modules/regex (Makefile.am): Likewise.
14166         * modules/rename (Makefile.am): Likewise.
14167         * modules/rename-dest-slash (Makefile.am): Likewise.
14168         * modules/rijndael (Makefile.am): Likewise.
14169         * modules/rmdir (Makefile.am): Likewise.
14170         * modules/rpmatch (Makefile.am): Likewise.
14171         * modules/safe-read (Makefile.am): Likewise.
14172         * modules/safe-write (Makefile.am): Likewise.
14173         * modules/same (Makefile.am): Likewise.
14174         * modules/save-cwd (Makefile.am): Likewise.
14175         * modules/savedir (Makefile.am): Likewise.
14176         * modules/setenv (Makefile.am): Likewise.
14177         * modules/settime (Makefile.am): Likewise.
14178         * modules/sha1 (Makefile.am): Likewise.
14179         * modules/sig2str (Makefile.am): Likewise.
14180         * modules/snprintf (Makefile.am): Likewise.
14181         * modules/stdlib-safer (Makefile.am): Likewise.
14182         * modules/stpcpy (Makefile.am): Likewise.
14183         * modules/stpncpy (Makefile.am): Likewise.
14184         * modules/strcase (Makefile.am): Likewise.
14185         * modules/strcasestr (Makefile.am): Likewise.
14186         * modules/strchrnul (Makefile.am): Likewise.
14187         * modules/strcspn (Makefile.am): Likewise.
14188         * modules/strdup (Makefile.am): Likewise.
14189         * modules/strerror (Makefile.am): Likewise.
14190         * modules/strftime (Makefile.am): Likewise.
14191         * modules/strndup (Makefile.am): Likewise.
14192         * modules/strnlen (Makefile.am): Likewise.
14193         * modules/strpbrk (Makefile.am): Likewise.
14194         * modules/strsep (Makefile.am): Likewise.
14195         * modules/strstr (Makefile.am): Likewise.
14196         * modules/strtod (Makefile.am): Likewise.
14197         * modules/strtoimax (Makefile.am): Likewise.
14198         * modules/strtok_r (Makefile.am): Likewise.
14199         * modules/strtol (Makefile.am): Likewise.
14200         * modules/strtoll (Makefile.am): Likewise.
14201         * modules/strtoul (Makefile.am): Likewise.
14202         * modules/strtoull (Makefile.am): Likewise.
14203         * modules/strtoumax (Makefile.am): Likewise.
14204         * modules/strverscmp (Makefile.am): Likewise.
14205         * modules/time_r (Makefile.am): Likewise.
14206         * modules/timegm (Makefile.am): Likewise.
14207         * modules/tmpfile-safer (Makefile.am): Likewise.
14208         * modules/unistd-safer (Makefile.am): Likewise.
14209         * modules/unlinkdir (Makefile.am): Likewise.
14210         * modules/userspec (Makefile.am): Likewise.
14211         * modules/utime (Makefile.am): Likewise.
14212         * modules/utimecmp (Makefile.am): Likewise.
14213         * modules/utimens (Makefile.am): Likewise.
14214         * modules/vasnprintf (Makefile.am): Likewise.
14215         * modules/vasprintf (Makefile.am): Likewise.
14216         * modules/vsnprintf (Makefile.am): Likewise.
14217         * modules/xalloc (Makefile.am): Likewise.
14218         * modules/xgetcwd (Makefile.am): Likewise.
14219         * modules/xnanosleep (Makefile.am): Likewise.
14220         * modules/xreadlink (Makefile.am): Likewise.
14221         * modules/xstrtod (Makefile.am): Likewise.
14222         * modules/xstrtol (Makefile.am): Likewise.
14223         * modules/xstrtold (Makefile.am): Likewise.
14224         * modules/yesno (Makefile.am): Likewise.
14225
14226 2006-10-12  Jim Meyering  <jim@meyering.net>
14227
14228         * m4/getloadavg.m4: Revert the change below.
14229
14230         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
14231         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
14232         fail with a symlink, which is what coreutils' ./bootstrap now
14233         creates by default.
14234
14235 2006-10-12  Bruno Haible  <bruno@clisp.org>
14236
14237         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
14238         mingw.
14239         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
14240         MSVC and mingw explicitly.
14241
14242 2006-10-11  Simon Josefsson  <jas@extundo.com>
14243             Bruno Haible  <bruno@clisp.org>
14244
14245         Add support for multiple gnulib-tool invocations in the scope of a
14246         single configure.ac file.
14247         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
14248         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
14249         with the same contents as the _LIBADD variable.
14250         (func_emit_initmacro_start, func_emit_initmacro_end,
14251         func_emit_initmacro_done): New functions.
14252         (func_import, func_create_testdir): Invoke them. Allow the identifiers
14253         gl_LIBOBJS and gl_LTLIBOBJS.
14254
14255 2006-10-11  Bruno Haible  <bruno@clisp.org>
14256
14257         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
14258         (func_create_testdir): Don't create po/Makefile.am, don't invoke
14259         autoreconf. Instead, invoke autopoint explicitly but move back the
14260         *.m4 files from gnulib.
14261
14262 2006-10-11  Bruno Haible  <bruno@clisp.org>
14263
14264         * gnulib-tool (func_usage): Make module names after --create-testdir
14265         optional.
14266         (func_create_testdir): If no module was specified, use nearly all
14267         modules.
14268
14269 2006-10-12  Jim Meyering  <jim@meyering.net>
14270
14271         Big performance improvement for fts-based tools that use FTS_NOSTAT.
14272         Avoid spurious inode-mismatch problems on non-POSIX file systems.
14273         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
14274         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
14275         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
14276         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
14277         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
14278         (fts_set_stat_required): New function.
14279         (fts_open): Defer the calls to fts_stat, if possible or requested.
14280         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
14281         into fts_stat itself.
14282         (fts_read): Perform any required (deferred) fts_stat call.
14283         (fts_build): Likewise, for the directory we're about to open and read.
14284         In the readdir loop, carefully decide whether each entry will require
14285         an eventual call to fts_stat, using dirent.d_type info if available.
14286         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
14287         a command line argument into this function.  Update all callers.
14288         Map a return value of FTS_DOT to FTS_D for a command line argument.
14289         * modules/fts (Depends-on): Add d-type.  Alphabetize.
14290         Thanks to Miklos Szeredi for his tenacity and for the initial
14291         bug report about "find" failing on a FUSE-based file system.
14292
14293         * lib/fts.c (fts_open): Use consistent indentation.
14294
14295 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
14296
14297         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
14298         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
14299         reported by Jim Meyering.  All uses of cache variables renamed
14300         to match Autoconf's.
14301         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
14302         the other one.
14303
14304         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
14305         Fix misspelling in diagnostic.
14306
14307 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
14308
14309         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
14310         defined.  Problem reported by Matthew Woehlke.
14311
14312         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
14313         Add support for Tandem NonStop R series.
14314         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
14315         Use new macro.
14316
14317         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
14318         (has_trailing_slash): Omit size arg; all callers changed.
14319         Omit 'inline', since it doesn't help performance and we'd
14320         need to configure it.
14321         Don't count //, ///, etc. as having a trailing slash.
14322         As a side effect, this removes a C99ism reported by Matthew Woehlke.
14323         (rpl_rename_dest_slash): On failure, use rename's errno rather
14324         than (in some cases) an incorrect or junk errno.
14325         Simplify code by removing need to compute length; this does
14326         cause it to make two passes instead of one over the file name,
14327         but it's worth it.
14328
14329         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
14330         change, since Autoconf's version may no longer be appropriate now
14331         that we are using CVS Autoconf's version.  Add support for Tandem.
14332
14333 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
14334             Bruno Haible  <bruno@clisp.org>
14335
14336         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
14337         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
14338         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
14339         gl_AC_TYPE_LONG_LONG.
14340
14341         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
14342         instead of HAVE_LONG_LONG.
14343         * lib/printf-args.c (printf_fetchargs): Likewise.
14344         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
14345         * lib/vasnprintf.c (VASNPRINTF): Likewise.
14346         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
14347         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
14348         gl_AC_TYPE_LONG_LONG.
14349
14350 2006-10-11  Bruno Haible  <bruno@clisp.org>
14351
14352         * m4/longlong.m4: Add comments.
14353         * m4/ulonglong.m4: Likewise.
14354
14355 2006-10-10  Bruno Haible  <bruno@clisp.org>
14356
14357         Make it possible to #define stpcpy, strdup to aliases.
14358         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
14359         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
14360
14361 2006-10-10  Bruno Haible  <bruno@clisp.org>
14362
14363         Make it possible to #define gcd to an alias.
14364         * lib/gcd.c: Include config.h.
14365
14366 2006-10-10  Bruno Haible  <bruno@clisp.org>
14367
14368         Make it possible to #define c_isascii to an alias.
14369         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
14370         defined. Undefine the macros before defining them, to avoid gcc
14371         warnings.
14372         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
14373         define NO_C_CTYPE_MACROS early.
14374
14375 2006-10-10  Bruno Haible  <bruno@clisp.org>
14376
14377         Make it possible to #define set_program_name to an alias.
14378         * lib/progname.c: Don't undefine set_program_name; instead, undefine
14379         ENABLE_RELOCATABLE early.
14380
14381 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14382
14383         Port to Tandem NSK OSS, which has 64-bit signed int but at most
14384         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
14385         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
14386         More generally, don't assume that 64-bit signed int is available
14387         if unsigned int is, and vice versa.
14388         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
14389         unsigned symbols, not on their signed counterparts.
14390         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
14391         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
14392         (UINT64_C, UINTMAX_C):
14393         Likewise.
14394         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
14395         unsigned counterparts.
14396         (Have_long_long, Unsigned): New macros.
14397         (Int): Renamed from INT.
14398         (strtoimax): Use the new macros.
14399         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
14400         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
14401         * modules/inttypes (inttypes.h): Substitute
14402         HAVE_UNSIGNED_LONG_LONG_INT.
14403         * modules/stdint (stdint.h): Likewise.
14404         (Files): Add m4/ulonglong.m4.
14405
14406 2006-10-10  Bruno Haible  <bruno@clisp.org>
14407
14408         Fix a gcc -Wshadow warning.
14409         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
14410         to 'bucket'.
14411         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
14412         gl_linked_indexof_from_to): Likewise.
14413         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
14414         Likewise.
14415         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
14416         Likewise.
14417         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
14418         Reported by Eric Blake.
14419
14420 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
14421
14422         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
14423         for NetBSD.  Problem reported by Bruno Haible.
14424
14425 2006-10-09  Jim Meyering  <jim@meyering.net>
14426
14427         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
14428         Patch from Bruno Haible.
14429
14430 2006-10-09  Jim Meyering  <jim@meyering.net>
14431
14432         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
14433         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
14434         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
14435
14436 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
14437
14438         Don't include <config.h> twice; this doesn't work in some cases,
14439         e.g., when config.h has "#define intmax_t long long int" and
14440         we include <config.h>, <inttypes.h>, <config.h> in that order.
14441         Problem reported by Matthew Woehlke in:
14442         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
14443         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
14444         * lib/fts-cycle.c: Don't include config.h.
14445         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
14446         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
14447         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
14448         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
14449         inttypes.h.
14450         * lib/xstrtoumax.c: Likewise.
14451         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
14452         __strtol and the like, so that this module is more like its siblings.
14453         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
14454         Remove; no longer needed now that we assume gnulib inttypes.h.
14455
14456 2006-10-08  Bruno Haible  <bruno@clisp.org>
14457
14458         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
14459         option.
14460
14461 2006-10-07  Jim Meyering  <jim@meyering.net>
14462
14463         * modules/inttypes (inttypes.h): Revert what seems to have been
14464         an inadvertent part of today's change: use "|", not "/" in the
14465         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
14466
14467 2006-10-07  Bruno Haible  <bruno@clisp.org>
14468
14469         * modules/sublist: New file.
14470
14471 2006-10-07  Bruno Haible  <bruno@clisp.org>
14472
14473         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
14474         * modules/argz (argz.h): Likewise.
14475         * modules/arpa_inet (arpa/inet.h): Likewise.
14476         * modules/byteswap (byteswap.h): Likewise.
14477         * modules/configmake (configmake.h): Likewise.
14478         * modules/fcntl (fcntl.h): Likewise.
14479         * modules/fnmatch (fnmatch.h): Likewise.
14480         * modules/getopt (getopt.h): Likewise.
14481         * modules/glob (glob.h): Likewise.
14482         * modules/inttypes (inttypes.h): Likewise.
14483         * modules/netinet_in (netinet/in.h): Likewise.
14484         * modules/poll (poll.h): Likewise.
14485         * modules/stdbool (stdbool.h): Likewise.
14486         * modules/stdint (stdint.h): Likewise.
14487         * modules/sys_select (sys/select.h): Likewise.
14488         * modules/sys_socket (sys/socket.h): Likewise.
14489         * modules/sys_stat (sys/stat.h): Likewise.
14490         * modules/sysexits (sysexits.h): Likewise.
14491         * modules/unistd (unistd.h): Likewise.
14492         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14493         Add a "DO NOT EDIT" comment to the generated file.
14494         (func_import): Likewise for gnulib-comp.m4.
14495
14496 2006-10-07  Bruno Haible  <bruno@clisp.org>
14497
14498         * lib/gl_sublist.h: New file.
14499         * lib/gl_sublist.c: New file.
14500
14501 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14502
14503         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
14504         name (relative to the original working directory) and the file
14505         name component (relative to the temporary working directory).  All
14506         callers changed.
14507         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
14508         * lib/mkdir-p.c (make_dir_parents): Likewise.
14509         * lib/mkdir-p.h (make_dir_parents): Likewise.
14510
14511 2006-10-06  Eric Blake  <ebb9@byu.net>
14512
14513         Define several macros for use by the clean-temp module.
14514         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
14515         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
14516         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
14517
14518         * lib/clean-temp.h (close_stream_temp): New declaration.
14519         * lib/clean-temp.c (includes): Pull in headers according to what
14520         other modules are in use.
14521         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
14522
14523 2006-10-06  Bruno Haible  <bruno@clisp.org>
14524
14525         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
14526         instead of fopen, fwriteerror.
14527
14528 2006-10-06  Bruno Haible  <bruno@clisp.org>
14529
14530         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
14531         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
14532         int.
14533         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
14534         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
14535         Return an error indicator.
14536         Suggested by Eric Blake.
14537
14538 2006-10-06  Bruno Haible  <bruno@clisp.org>
14539
14540         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
14541         Reported by Eric Blake.
14542
14543 2006-10-06  Bruno Haible  <bruno@clisp.org>
14544
14545         * modules/closeout (Description): Mention stderr too.
14546
14547 2006-10-06  Bruno Haible  <bruno@clisp.org>
14548         and Paul Eggert  <eggert@cs.ucla.edu>
14549
14550         * lib/closeout.c (close_stdout): Also close stderr.
14551         * lib/closeout.h: Update comment.
14552
14553 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
14554
14555         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
14556         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
14557         * lib/dirchownmod.c: Include lchown.h.
14558         * lib/lchown.c: Don't include files that lchown.h now includes.
14559         Don't declare chown, since lchown.h now does that.
14560         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
14561         (lchown): Define to rpl_chown if lchown is declared but
14562         does not exist.  Declare using a prototype if lchown is not
14563         declared.  Add a copyright notice.
14564         * lib/mkstemp.h: Include <unistd.h>.
14565         * lib/openat.c: Include lchown.h.
14566
14567         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
14568         we now test for that separately.
14569         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
14570         rather than O_NOFOLLOW, when testing whether it's possible to
14571         avoid a race condition reliably.
14572         * lib/savewd.c (savewd_chdir): Likewise.
14573
14574         Remove macros that are no longer needed now that stdint.h is
14575         reliable.
14576         * lib/fsusage.c (UINTMAX_MAX): Remove.
14577         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
14578         * lib/utimecmp.c (SIZE_MAX): Remove.
14579
14580         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
14581
14582         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
14583         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
14584         O_NOATIME works.
14585
14586 2006-10-05  Bruno Haible  <bruno@clisp.org>
14587
14588         * lib/gl_list.h (gl_sortedlist_search_from_to,
14589         gl_sortedlist_indexof_from_to): New declarations.
14590         (gl_list_implementation): New fields sortedlist_search_from_to,
14591         sortedlist_indexof_from_to.
14592         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
14593         inline functions.
14594         * lib/gl_list.c (gl_sortedlist_search_from_to,
14595         gl_sortedlist_indexof_from_to): New functions.
14596         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
14597         function.
14598         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
14599         (gl_array_sortedlist_search_from_to): New function.
14600         (gl_array_list_implementation): Update.
14601         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
14602         function.
14603         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
14604         (gl_carray_sortedlist_search_from_to): New function.
14605         (gl_carray_list_implementation): Update.
14606         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
14607         gl_linked_sortedlist_indexof_from_to): New functions.
14608         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
14609         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
14610         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
14611         gl_tree_sortedlist_indexof_from_to): New functions.
14612         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
14613         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
14614         Update.
14615         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
14616         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
14617         Update.
14618
14619 2006-10-05  Bruno Haible  <bruno@clisp.org>
14620
14621         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
14622         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
14623         (struct gl_list_implementation): Add fields search_from_to,
14624         indexof_from_to. Remove fields search, indexof.
14625         (gl_list_search): Use the search_from_to method.
14626         (gl_list_search_from, gl_list_search_from_to): New functions.
14627         (gl_list_indexof): Use the indexof_from_to method.
14628         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
14629         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
14630         (gl_list_search_from, gl_list_search_from_to): New functions.
14631         (gl_list_indexof): Use the indexof_from_to method.
14632         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
14633         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
14634         gl_array_indexof. Add start_index, end_index arguments.
14635         (gl_array_search_from_to): Renamed from gl_array_search. Add
14636         start_index, end_index arguments.
14637         (gl_array_remove, gl_array_list_implementation): Update.
14638         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
14639         gl_carray_indexof. Add start_index, end_index arguments.
14640         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
14641         start_index, end_index arguments.
14642         (gl_carray_remove, gl_carray_list_implementation): Update.
14643         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
14644         gl_linked_search. Add start_index, end_index arguments.
14645         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
14646         start_index, end_index arguments.
14647         (gl_linked_remove): Update.
14648         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
14649         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
14650         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
14651         field to 'size_t'.
14652         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
14653         gl_tree_search. Add start_index, end_index arguments.
14654         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
14655         start_index, end_index arguments.
14656         (gl_tree_remove): Update.
14657         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
14658         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
14659         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
14660         function.
14661         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
14662         gl_tree_search. Add start_index, end_index arguments.
14663         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
14664         start_index, end_index arguments.
14665         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
14666         Update.
14667         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
14668
14669 2006-10-05  Bruno Haible  <bruno@clisp.org>
14670
14671         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
14672
14673         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
14674         fwriteerror_temp): New declarations.
14675         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
14676         (descriptors): New variable.
14677         (cleanup): First, close the descriptors.
14678         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
14679         fclose_temp, fwriteerror_temp): New functions.
14680
14681 2006-10-04  Jim Meyering  <jim@meyering.net>
14682
14683         * lib/fts.c (fts_open): Tiny comment change.
14684
14685 2006-10-04  Bruno Haible  <bruno@clisp.org>
14686
14687         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
14688         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
14689         gl_LOCK_BODY.
14690         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
14691         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
14692         gl_LOCK_EARLY_BODY.
14693         (gl_LOCK): Require gl_LOCK_BODY.
14694
14695 2006-10-04  Bruno Haible  <bruno@clisp.org>
14696
14697         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
14698         (gl_oset_search_atleast): New declaration.
14699         (struct gl_oset_implementation): Add field 'search_atleast'.
14700         (gl_oset_search_atleast): New inline function.
14701         * lib/gl_oset.c (gl_oset_search_atleast): New function.
14702         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
14703         (gl_array_oset_implementation): Update.
14704         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
14705         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
14706         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
14707
14708 2006-10-04  Bruno Haible  <bruno@clisp.org>
14709
14710         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
14711
14712 2006-10-03  Bruno Haible  <bruno@clisp.org>
14713
14714         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
14715         from gl_avltreehash_list_implementation.
14716
14717 2006-10-03  Bruno Haible  <bruno@clisp.org>
14718
14719         * lib/gl_oset.c (gl_oset_add): Fix return type.
14720
14721 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
14722
14723         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
14724
14725 2006-10-02  Eric Blake  <ebb9@byu.net>
14726
14727         * modules/strnlen (Depends-on): Add extensions.
14728
14729 2006-10-02  Eric Blake  <ebb9@byu.net>
14730
14731         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
14732         definition in 2.60+.
14733
14734 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
14735
14736         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
14737         checks.
14738
14739 2006-10-02  Bruno Haible  <bruno@clisp.org>
14740
14741         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
14742         to the AUTOMAKE_OPTIONS.
14743         Reported by Jim Meyering.
14744
14745 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
14746
14747         Work around bug in Solaris 10 /proc file system:
14748         /proc/self/fd/NNN/.. isn't the parent directory of
14749         the directory whose file descriptor is NNN.  This needs to
14750         be worked around at run time, not compile time, since a
14751         program might be built on Solaris 8, where things work, and
14752         run on Solaris 10.
14753         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
14754         to use the following interface instead:
14755         (OPENAT_BUFFER_SIZE): New macro.
14756         (openat_proc_name): New function.
14757         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
14758         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
14759         Likewise.
14760         * lib/openat-proc.c: New file.
14761         * modules/openat (Files): Add lib/openat-proc.c.
14762         (Depends-on): Add same-inode, stdbool.
14763         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
14764
14765 2006-09-29  Bruno Haible  <bruno@clisp.org>
14766
14767         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
14768         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
14769         argument. Set stdout_closed before testing for ferror, not after.
14770         (fwriteerror, fwriteerror_no_ebadf): New functions.
14771
14772 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14773
14774         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
14775
14776 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
14777
14778         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
14779         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
14780
14781 2006-09-28  Jim Meyering  <jim@meyering.net>
14782
14783         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
14784         Include <unistd.h>.
14785
14786 2006-09-28  Bruno Haible  <bruno@clisp.org>
14787
14788         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
14789         * modules/linkedhash-list (Depends-on): Likewise.
14790         * modules/rbtreehash-list (Depends-on): Likewise.
14791
14792 2006-09-28  Bruno Haible  <bruno@clisp.org>
14793
14794         * lib/strndup.h: Simplify the redefinition of strndup.
14795         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
14796         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
14797
14798 2006-09-28  Bruno Haible  <bruno@clisp.org>
14799
14800         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
14801         * lib/gl_linkedhash_list.c: Likewise.
14802         * lib/gl_rbtreehash_list.c: Likewise.
14803
14804 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
14805
14806         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
14807         getaddrinfo.
14808
14809         * lib/__fpending.h: Don't include <stdio_ext.h> unless
14810         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
14811         it causes <stdio_ext.h> to cause a compile-time error.
14812         Problem reported by Nelson H. F. Beebe.
14813         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
14814         of HAVE_DECL___PENDING.
14815
14816         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
14817         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
14818         declaration.
14819
14820 2006-09-27  Jim Meyering  <jim@meyering.net>
14821
14822         This file could end up with a definition for a function
14823         named __strndup, rather than rpl_strndup on a system with
14824         incomplete weak_alias support.
14825         * lib/strndup.c (strndup): Rename from __strndup.
14826         Remove #defines that used to map __strndup to strndup.
14827         Don't use K&R prototypes.
14828         Remove LIBC-related code, since this file is not sync'd with glibc.
14829         * lib/strndup.h: Revamp, accordingly.
14830         * m4/strndup.m4: Modernize.
14831
14832 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
14833
14834         * modules/savewd (Depends-on): Add 'raise'.
14835         * lib/savewd.c: Include <signal.h>, for 'raise'.
14836
14837 2006-09-26  Jim Meyering  <jim@meyering.net>
14838
14839         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
14840         when we detect Darwin 8.7.0's acl_get_file bug.
14841         Rearrange to perform the new (below) run-test while $LIBS
14842         contains any acl-related library.  Set USE_ACL at the end.
14843         (gl_ACL_GET_FILE): New function.
14844
14845 2006-09-26  Eric Blake  <ebb9@byu.net>
14846
14847         * lib/verror.c: Include <config.h> unconditionally.
14848
14849 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
14850
14851         * modules/clock-time (Maintainer): Add self.
14852         * modules/getlogin_r (Depends-on): Add extensions.
14853
14854 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14855
14856         * modules/clock-time: New module.
14857         * modules/nanosleep (Depends-on): Add clock-time.
14858         * modules/gethrxtime (Depends-on): Likewise.
14859         * modules/gettime (Depends-on): Likewise.
14860         * modules/settime (Depends-on): Likewise.
14861
14862         * modules/fts-lgpl: Depend on openat.
14863         * modules/mkancesdirs: Depend on savewd.
14864         * modules/mkdir-p: Likewise.
14865
14866 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14867
14868         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
14869
14870         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
14871         `gl_have_arbitrary_file_name_length_limit' to
14872         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
14873         actually works between configure runs.
14874
14875 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14876             Bruno Haible  <bruno@clisp.org>
14877
14878         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
14879
14880 2006-09-25  Jim Meyering  <jim@meyering.net>
14881
14882         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
14883         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
14884
14885 2006-09-25  Eric Blake  <ebb9@byu.net>
14886
14887         * gnulib-tool (func_import, func_create_testdir): Fix typos in
14888         exec's in 2006-09-18 patch when shuffling fds.
14889
14890 2006-09-25  Bruno Haible  <bruno@clisp.org>
14891
14892         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
14893         Reported by Jim Meyering.
14894
14895 2006-09-24  Jim Meyering  <jim@meyering.net>
14896
14897         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
14898         compare a pointer against a literal "0".  That caused failures with
14899         at least HP-UX's hpcc.
14900
14901 2006-09-22  Simon Josefsson  <jas@extundo.com>
14902
14903         * modules/gc-sha1:
14904         * modules/gc-md4:
14905         * modules/gc-hmac-sha1:
14906         * modules/gc-hmac-md5:
14907         * modules/gc-des:
14908         * modules/gc-arcfour: Distribute more files.
14909
14910 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14911
14912         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
14913         (gl_linked_iterator_from_to): Initialize struct completely.
14914         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
14915         (gl_tree_iterator_from_to): Likewise
14916         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
14917         * lib/gl_array_list.c [lint] (gl_array_iterator)
14918         (gl_array_iterator_from_to): Likewise.
14919         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
14920         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
14921         (gl_carray_iterator_from_to): Likewise.
14922
14923         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
14924         * lib/md4.c (md4_process_block): Remove unused variable.
14925         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
14926         parentheses for clarity.
14927
14928 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14929
14930         * modules/bison-i18n (Depends-on): Add gettext.
14931
14932 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14933
14934         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
14935         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
14936         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
14937         also add missing comma that caused broken test.
14938         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
14939         stdlib.h, for `abort'.
14940         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
14941         variables.
14942         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
14943         include unistd.h if present, for `rmdir'.
14944         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
14945         variables.
14946         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
14947         in the process include standard headers for prototypes.
14948         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
14949         gets declared on GNU/Linux.
14950         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
14951         unistd.h, for `rmdir'.
14952         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
14953
14954         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
14955         always true.
14956         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
14957
14958         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
14959
14960 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14961
14962         * gnulib-tool (func_version): Create output all at once.  This
14963         may help avoid triggering unnecessary SIGPIPEs, and at any
14964         rate it doesn't hurt.
14965
14966 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14967             Bruno Haible  <bruno@clisp.org>
14968
14969         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
14970         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
14971         * m4/signed.m4 (bh_C_SIGNED): Likewise.
14972
14973         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
14974         (gl_FUNC_VASPRINTF): Invoke it.
14975
14976 2006-09-22  Bruno Haible  <bruno@clisp.org>
14977
14978         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
14979         getloadavg.c as first argument.
14980
14981 2006-09-22  Bruno Haible  <bruno@clisp.org>
14982
14983         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
14984         at the beginning of the gl_INIT macro.
14985         * modules/getloadavg (configure.ac): Pass $gl_source_base to
14986         gl_GETLOADAVG.
14987
14988 2006-09-22  Bruno Haible  <bruno@clisp.org>
14989
14990         * gnulib-tool (func_create_megatestdir): Don't include the config-h
14991         module.
14992         Suggested by Ralf Wildenhues.
14993
14994 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14995
14996         Import this patch from libc:
14997
14998         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
14999
15000         * lib/regex_internal.c (re_string_reconstruct): Handle
15001         offset < pstr->valid_raw_len && pstr->offsets_needed case.
15002         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
15003         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
15004         re_string_context_at.
15005
15006         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
15007         now requires it.
15008         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
15009         gl_REGEX now does it for us.
15010         (gl_REGEX): Add test taken from
15011         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
15012
15013         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
15014         Check that large offsets work.  Modernize Autoconf usages.
15015         Prefer "yes" to mean a good thing rather than a bad.
15016         Don't put "#define mkstemp" in config.h, as this might interfere
15017         with standard system headers that "#define mkstemp mkstemp64".
15018
15019         * modules/mkstemp (Depends-on): Add extensions, so that
15020         mkstemp is visible on some platforms.
15021         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
15022         (Include): Change to "mkstemp.h" from <stdlib.h>.
15023         (Files): Add mkstemp.h.
15024
15025         * lib/mkstemp.h: New file, since some standard headers
15026         #define mkstemp.
15027         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
15028         Include "mkstemp.h".
15029         Make the _LIBC code resemble glibc original more,
15030         e.g., use K&R style.
15031         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
15032         (mkstemp): Remove, since mkstemp.h does this for us.
15033         * lib/stdlib--.h: Include mkstemp.h.
15034
15035         Import this patch from libc:
15036
15037         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
15038
15039         * lib/tempname.c (__gen_tempname): Change attempts_min
15040         into a macro.  Use preprocessor to decide how to initialize
15041         attempts [Coverity CID 67].
15042
15043 2006-09-20  Bruno Haible  <bruno@clisp.org>
15044
15045         * lib/mkdtemp.c: Import from libc.
15046         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
15047                 * sysdeps/posix/tempname.c (__gen_tempname): Change
15048                 attempts_min into a macro.  Use preprocessor to decide how to
15049                 initialize attempts [Coverity CID 67].
15050         2001-11-27  Paul Eggert  <eggert@twinsun.com>
15051                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
15052                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
15053
15054 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15055
15056         * gnulib-tool (func_exit): New function, to allow to pass the
15057         exit status portably through the trap.  Use everywhere.
15058         (--help, --version): Signal a write error.
15059         (trap): catch SIGPIPE, for write errors.
15060         Exit at the end of the trap, with the correct exit status.
15061
15062 2006-09-19  Karl Berry  <karl@gnu.org>
15063
15064         * doc/gnulib.texi: note about the license texinfo files.
15065
15066 2006-09-19  Eric Blake  <ebb9@byu.net>
15067
15068         * gnulib-tool: Avoid space-tab.
15069
15070 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
15071
15072         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
15073         that prevented coreutils 6.1 from building.  Problem reported
15074         by Petter Reinholdtsen.
15075
15076 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
15077
15078         * gnulib-tool (avoidlist): Fix typo that broke options like
15079         --avoid=lock that are used by coreutils bootstrap.
15080
15081 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
15082
15083         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
15084         more systematically.
15085
15086 2006-09-18  Jim Meyering  <jim@meyering.net>
15087
15088         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
15089
15090 2006-09-18  Bruno Haible  <bruno@clisp.org>
15091
15092         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
15093
15094 2006-09-18  Bruno Haible  <bruno@clisp.org>
15095
15096         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
15097         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
15098         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
15099         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
15100         * m4/gettext.m4: Require autoconf >= 2.52.
15101         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
15102         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
15103         of gl_cv_header_inttypes_h.
15104
15105 2006-09-18  Bruno Haible  <bruno@clisp.org>
15106
15107         * lib/javaversion.c: Include configmake.h.
15108
15109 2006-09-18  Bruno Haible  <bruno@clisp.org>
15110
15111         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
15112         avoid that the while loops be executed in a subshell.
15113
15114 2006-09-18  Bruno Haible  <bruno@clisp.org>
15115
15116         * MODULES.html.sh (func_module): Break long lines.
15117         Suggested by Bruce Korb <bkorb@gnu.org>.
15118
15119 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15120
15121         Speed up by a factor of 1.12.
15122         * gnulib-tool (nl): New variable.
15123         (func_import): Rewrite include directive extraction to only read each
15124         directive once.
15125
15126 2006-09-17  Bruno Haible  <bruno@clisp.org>
15127
15128         * modules/javaversion (Makefile.am): Remove DEFS setting.
15129         (Depends-on): Add configmake, for PKGDATADIR definition.
15130
15131 2006-09-17  Bruno Haible  <bruno@clisp.org>
15132
15133         * gnulib-tool (func_create_testdir): Rewrite all files at once.
15134
15135 2006-09-17  Bruno Haible  <bruno@clisp.org>
15136
15137         * gnulib-tool (func_append): New function, stolen from libtool.m4.
15138         (func_modules_transitive_closure, func_modules_add_dummy,
15139         func_modules_to_filelist, func_import, func_create_testdir,
15140         func_create_megatestdir, ...): Use it wherever possible.
15141         Suggested by Ralf Wildenhues.
15142
15143 2006-09-16  Karl Berry  <karl@gnu.org>
15144
15145         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
15146         to avoid sectioning errors.
15147         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
15148         [ifinfo]: blank line after @center-ed titles.
15149         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
15150         Spell FSF address consistently with others.
15151         (These changes approved by rms.)
15152
15153 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15154
15155         Speed up by a factor of 1.61.
15156         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
15157         already checked module names again.
15158
15159 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15160
15161         Speed up by a factor of 1.13.
15162         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
15163         for new_files, and the input to func_add_or_update.
15164
15165 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15166
15167         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
15168         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
15169
15170 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
15171
15172         * modules/mkancesdirs (Depends-on): Add fcntl.
15173         * modules/savewd: New file.
15174         * MODULES.html.sh (File system functions): Add savewd.
15175
15176         * modules/configmake (Makefile.am): Add support for the
15177         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
15178
15179 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
15180
15181         * m4/savewd.m4: New file.
15182
15183 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
15184
15185         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
15186         (dirchownmod): New arg FD.  All callers changed.
15187         Use FD rather than opening the directory ourself, as opening is
15188         now the caller's responsibility.
15189         * lib/dirchownmod.h: Likewise.
15190         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
15191         hosts that require <sys/types.h> before <sys/stat.h>.  Include
15192         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
15193         (test_dir): Remove.
15194         (mkancesdirs): Return length of prefix of FILE that has already
15195         been made, or -2 if there is a child doing the work.  Redo
15196         algorithm so that it is O(N) rather than O(N**2).  Optimize away
15197         ".", and treat ".." specially since it might stray back into
15198         already-created areas.  Use a subprocess if necessary.  New arg
15199         WD; all users changed.  MAKE_DIR function should now return 1
15200         if it creates a directory that is not readable.  Return -2 if
15201         a child process is spun off.
15202         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
15203         Adjust signature to match code.
15204         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
15205         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
15206         all users changed.
15207         * lib/savewd.c, lib/savewd.h: New files.
15208
15209 2006-09-15  Jim Meyering  <jim@meyering.net>
15210
15211         * modules/rename-dest-slash: New module.
15212         * MODULES.html.sh (posix_compat): Add it here.
15213
15214         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
15215
15216 2006-09-15  Jim Meyering  <jim@meyering.net>
15217
15218         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
15219         file.
15220
15221         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
15222
15223 2006-09-15  Jim Meyering  <jim@meyering.net>
15224
15225         * lib/rename-dest-slash.c (has_trailing_slash): Use
15226         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
15227         (rpl_rename_dest_slash): Perform the cheaper trailing slash
15228         test before testing whether SRC is a directory.
15229         Suggestions from Bruno Haible.
15230
15231         Avoid a warning about an unused variable.
15232         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
15233         into the #ifdef block where it's used.
15234
15235         * lib/rename-dest-slash.c: New file.
15236
15237 2006-09-14  Bruno Haible  <bruno@clisp.org>
15238
15239         * lib/allocsa.c: Include <config.h> unconditionally.
15240         * lib/asnprintf.c: Likewise.
15241         * lib/asprintf.c: Likewise.
15242         * lib/c-strcasecmp.c: Likewise.
15243         * lib/c-strcasestr.c: Likewise.
15244         * lib/c-strncasecmp.c: Likewise.
15245         * lib/c-strstr.c: Likewise.
15246         * lib/classpath.c: Likewise.
15247         * lib/clean-temp.c: Likewise.
15248         * lib/concatpath.c: Likewise.
15249         * lib/copy-file.c: Likewise.
15250         * lib/csharpcomp.c: Likewise.
15251         * lib/csharpexec.c: Likewise.
15252         * lib/execute.c: Likewise.
15253         * lib/fatal-signal.c: Likewise.
15254         * lib/findprog.c: Likewise.
15255         * lib/fwriteerror.c: Likewise.
15256         * lib/gl_array_list.c: Likewise.
15257         * lib/gl_array_oset.c: Likewise.
15258         * lib/gl_avltree_list.c: Likewise.
15259         * lib/gl_avltree_oset.c: Likewise.
15260         * lib/gl_avltreehash_list.c: Likewise.
15261         * lib/gl_carray_list.c: Likewise.
15262         * lib/gl_linked_list.c: Likewise.
15263         * lib/gl_linkedhash_list.c: Likewise.
15264         * lib/gl_list.c: Likewise.
15265         * lib/gl_oset.c: Likewise.
15266         * lib/gl_rbtree_list.c: Likewise.
15267         * lib/gl_rbtree_oset.c: Likewise.
15268         * lib/gl_rbtreehash_list.c: Likewise.
15269         * lib/imaxabs.c: Likewise.
15270         * lib/imaxdiv.c: Likewise.
15271         * lib/javacomp.c: Likewise.
15272         * lib/javaexec.c: Likewise.
15273         * lib/javaversion.c: Likewise.
15274         * lib/linebreak.c: Likewise.
15275         * lib/localcharset.c: Likewise.
15276         * lib/lock.c: Likewise.
15277         * lib/mbchar.c: Likewise.
15278         * lib/mbswidth.c: Likewise.
15279         * lib/mkdtemp.c: Likewise.
15280         * lib/pipe.c: Likewise.
15281         * lib/printf-args.c: Likewise.
15282         * lib/printf-parse.c: Likewise.
15283         * lib/progname.c: Likewise.
15284         * lib/progreloc.c: Likewise.
15285         * lib/readlink.c: Likewise.
15286         * lib/sh-quote.c: Likewise.
15287         * lib/stpcpy.c: Likewise.
15288         * lib/stpncpy.c: Likewise.
15289         * lib/strcasecmp.c: Likewise.
15290         * lib/strcasestr.c: Likewise.
15291         * lib/strcspn.c: Likewise.
15292         * lib/striconv.c: Likewise.
15293         * lib/strncasecmp.c: Likewise.
15294         * lib/strnlen1.c: Likewise.
15295         * lib/strstr.c: Likewise.
15296         * lib/strtok_r.c: Likewise.
15297         * lib/tls.c: Likewise.
15298         * lib/tmpdir.c: Likewise.
15299         * lib/unicodeio.c: Likewise.
15300         * lib/unsetenv.c: Likewise.
15301         * lib/vasnprintf.c: Likewise.
15302         * lib/vasprintf.c: Likewise.
15303         * lib/wait-process.c: Likewise.
15304         * lib/xallocsa.c: Likewise.
15305         * lib/xsetenv.c: Likewise.
15306         * lib/xstriconv.c: Likewise.
15307
15308 2006-09-13  Simon Josefsson  <jas@extundo.com>
15309
15310         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
15311         that internally, suggested by Ralf Wildenhues
15312         <Ralf.Wildenhues@gmx.de>.
15313
15314 2006-09-13  Simon Josefsson  <jas@extundo.com>
15315
15316         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
15317         @LIBOBJS@.
15318         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15319
15320 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15321
15322         * lib/_fpending.c: Include <config.h> unconditionally, since we no
15323         longer worry about uses that don't define HAVE_CONFIG_H.
15324         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
15325         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
15326         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
15327         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
15328         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
15329         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
15330         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
15331         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
15332         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
15333         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
15334         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
15335         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
15336         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
15337         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
15338         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
15339         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
15340         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
15341         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
15342         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
15343         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
15344         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
15345         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
15346         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
15347         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
15348         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
15349         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
15350         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
15351         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
15352         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
15353         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
15354         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
15355         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
15356         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
15357         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
15358         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
15359         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
15360         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
15361         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
15362         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
15363         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
15364         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
15365         Likewise.
15366
15367 2006-09-13  Eric Blake  <ebb9@byu.net>
15368
15369         * lib/getopt.c: Fix typo in last commit.
15370
15371 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
15372
15373         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
15374         dgettext.
15375
15376 2006-09-12  Jim Meyering  <jim@meyering.net>
15377
15378         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
15379         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
15380         Reported by Nelson H. F. Beebe.
15381
15382 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
15383
15384         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
15385         program_invocation_name and program_invocation_short_name are
15386         initialized.
15387         * lib/argp-namefrob.h: Move declarations of program_invocation_name
15388         and program_invocation_short_name to argp.h, so they are visible
15389         to user programs.
15390         * lib/argp.h: Likewise
15391
15392 2006-09-10  Bruno Haible  <bruno@clisp.org>
15393
15394         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
15395         m4/inttypes_h.m4, m4/uintmax_t.m4.
15396
15397 2006-09-10  Bruno Haible  <bruno@clisp.org>
15398
15399         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
15400         gl_AC_TYPE_UINTMAX_T.
15401
15402 2006-09-10  Bruno Haible  <bruno@clisp.org>
15403
15404         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
15405
15406 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
15407
15408         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
15409         convention.  Text proposed by Bruno Haible.
15410         (struct argp_option): Document the use of N_() wrappers.
15411
15412         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
15413         '\v', and translate the two parts separately, instead of feeding
15414         the whole string to gettext.  This allows to exclude
15415         '\v' from the strings visible to the translator by writing doc
15416         strings as N_("..") "\v" N_("..").
15417
15418 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
15419
15420         * config/srclist.txt: Undo latest change; the bug was fixed.
15421
15422 2006-09-09  Bruno Haible  <bruno@clisp.org>
15423
15424         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
15425         assignments if building a library without libtool.
15426         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
15427         in func_emit_lib_Makefile_am.
15428         (func_import): When building a static library libfoo.a, arrange to
15429         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
15430         (func_create_testdir): Likewise.
15431         * modules/gc (configure.ac, Makefile.am): If building statically,
15432         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
15433         * modules/iconvme (configure.ac, Makefile.am): Likewise.
15434         * modules/striconv (configure.ac, Makefile.am): Likewise.
15435         Based on a suggestion by Ralf Wildenhues.
15436
15437 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15438
15439         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
15440         Check for unistd.h too, since Autoconf doesn't assume POSIX.
15441         Also:
15442
15443         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15444         Add year_2050_test to catch glibc bug 2821
15445         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
15446
15447         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
15448         Prefer #ifdef to #if.
15449
15450         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
15451         Return from 'main' instead of calling 'exit'.
15452
15453 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15454
15455         * lib/mktime.c (guess_time_tm): Fix bug where mktime
15456         returned the maximum time_t value rather than (time_t) -1.
15457         Problem originally reported by William Bardwell
15458         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
15459
15460         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
15461         Moved to here ...
15462         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
15463         ... from here.
15464
15465 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15466
15467         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
15468         2821 is fixed.
15469
15470 2006-09-08  Jim Meyering  <jim@meyering.net>
15471
15472         Don't make generated files read-only.  That would bother too many
15473         people.  However, do retain the ability to work when targets are
15474         read-only: remove the destination and temporary files before writing
15475         them (when generated via sed or echo), or by using the -f option for
15476         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
15477         * modules/alloca-opt, modules/argz, modules/arpa_inet:
15478         * modules/byteswap, modules/configmake, modules/fcntl:
15479         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
15480         * modules/localcharset, modules/netinet_in, modules/poll:
15481         * modules/stdbool, modules/stdint, modules/sys_select:
15482         * modules/sys_socket, modules/sys_stat, modules/sysexits:
15483
15484 2006-09-08  Jim Meyering  <jim@meyering.net>
15485
15486         Avoid new build failure on FreeBSD 6.0.
15487         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
15488         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
15489         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
15490
15491 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15492
15493         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
15494
15495 2006-09-07  Jim Meyering  <jim@meyering.net>
15496
15497         Fix global typo in last change: use chmod u-w, not chmod u-x.
15498         Spotted by Paul Eggert and Bruce Korb.
15499         * modules/alloca-opt, modules/argz, modules/arpa_inet:
15500         * modules/byteswap, modules/configmake, modules/fcntl:
15501         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
15502         * modules/localcharset, modules/netinet_in, modules/poll:
15503         * modules/stdbool, modules/stdint, modules/sys_select:
15504         * modules/sys_socket, modules/sys_stat, modules/sysexits:
15505
15506 2006-09-06  Jim Meyering  <jim@meyering.net>
15507
15508         Make generated files be read-only.
15509         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
15510         Ensure that each generated file is now read-only.
15511         * modules/argz: Likewise.
15512         * modules/arpa_inet: Likewise.
15513         * modules/byteswap: Likewise.
15514         * modules/configmake: Likewise.
15515         * modules/fcntl: Likewise.
15516         * modules/fnmatch: Likewise.
15517         * modules/getopt: Likewise.
15518         * modules/glob: Likewise.
15519         * modules/inttypes: Likewise.
15520         * modules/netinet_in: Likewise.
15521         * modules/poll: Likewise.
15522         * modules/stdbool: Likewise.
15523         * modules/stdint: Likewise.
15524         * modules/sys_select: Likewise.
15525         * modules/sys_socket: Likewise.
15526         * modules/sys_stat: Likewise.
15527         * modules/sysexits: Likewise.
15528         * modules/localcharset: Same as above, but continue using temporary
15529         file named "t-$@" (why different?) rather than the "$@-t" used
15530         everywhere else.
15531
15532         * modules/sysexits (Makefile.am): Replace literal occurrences
15533         of "sysexit.h" more readable, and more consistent, "$@".
15534
15535 2006-09-06  Bruno Haible  <bruno@clisp.org>
15536
15537         * modules/striconv: New file.
15538         * modules/xstriconv: New file.
15539         * MODULES.html.sh (Internationalization functions): Add striconv,
15540         xstriconv.
15541
15542 2006-09-06  Bruno Haible  <bruno@clisp.org>
15543
15544         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
15545         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
15546         not using libtool correctly.
15547
15548 2006-09-06  Bruno Haible  <bruno@clisp.org>
15549
15550         * lib/striconv.h: New file.
15551         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
15552         iconvstring.c.
15553         * lib/xstriconv.h: New file.
15554         * lib/xstriconv.c: New file.
15555
15556 2006-09-06  Bruno Haible  <bruno@clisp.org>
15557
15558         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
15559         lib_..._LDFLAGS.
15560
15561 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15562
15563         * lib/argz_.h: Sync from Libtool.
15564
15565         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
15566                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15567
15568         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
15569
15570 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
15571
15572         * modules/trim: New file.
15573
15574 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
15575
15576         * lib/trim.h: New file.
15577         * lib/trim.c: New file.
15578
15579 2006-09-05  Bruno Haible  <bruno@clisp.org>
15580
15581         * MODULES.html.sh (String handling): Add trim.
15582
15583 2006-09-04  Karl Berry  <karl@gnu.org>
15584
15585         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
15586         until next release.
15587
15588 2006-09-03  Bruno Haible  <bruno@clisp.org>
15589
15590         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
15591         correctly.
15592
15593 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15594
15595         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
15596         not gl_GETLOADAVG.  Omit unneeded semicolons.
15597         Problems reported by Ralf Wildenhues in
15598         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
15599         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
15600         at the end, which is the usual gnulib style.
15601
15602         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
15603         of doing all the work ourselves.
15604         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
15605         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
15606
15607 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15608
15609         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
15610         Problem reported by Ralf Wildenhues in
15611         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
15612
15613         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
15614         HAVE_STRUCT_STATFS_F_FSTYPENAME.
15615
15616 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15617
15618         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
15619         yesterday's patch by changing test -n to test -z.
15620
15621 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15622
15623         * modules/getloadavg (Files): Add m4/getloadavg.m4.
15624         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
15625         the former is now obsolescent.
15626
15627         * modules/chdir-long (Depends-on): Add fcntl.
15628
15629 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15630
15631         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
15632         obsolescent, and programs should use gnulib instead.
15633         * m4/getloadavg.m4: New file, with contents taken from Autoconf
15634         but with prefixes changed.
15635
15636 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15637
15638         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
15639         or stdbool.h, because they might not exist while configuring.
15640
15641         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
15642         Don't include unistd.h or limits.h; not needed, since chdir-long.h
15643         does that for us.
15644         (O_DIRECTORY): Remove.
15645
15646 2006-08-31  Eric Blake  <ebb9@byu.net>
15647
15648         * gnulib-tool: Don't let emacs change spaces to TAB.
15649
15650 2006-08-31  Bruno Haible  <bruno@clisp.org>
15651
15652         * gnulib-tool: When calling func_import more than once, do it in a
15653         subshell.
15654         Reported by Eric Blake <ebb9@byu.net>.
15655
15656 2006-08-31  Bruno Haible  <bruno@clisp.org>
15657
15658         * gnulib-tool (nl): Remove variable.
15659         (sed_transform_lib_file): Use more robust test for config-h module.
15660         (func_import): Fix typo in 2006-08-25 patch.
15661
15662 2006-08-31  Bruno Haible  <bruno@clisp.org>
15663
15664         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
15665         specified, augment Makefile.am variables instead of assigning them.
15666
15667 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
15668
15669         Work around a bug in both the Linux and SunOS 64-bit kernels:
15670         nanosleep mishandles sleeps for longer than 2**31 seconds.
15671         Problem reported by Frank v Waveren in
15672         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
15673         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
15674         Check for nanosleep bug.
15675         (LIB_NANOSLEEP): Append clock_gettime library if needed.
15676
15677 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
15678
15679         Work around a bug in both the Linux and SunOS 64-bit kernels:
15680         nanosleep mishandles sleeps for longer than 2**31 seconds.
15681         Problem reported by Frank v Waveren in
15682         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
15683         * lib/nanosleep.c (BILLION): New constant.
15684         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
15685         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
15686         implementation.
15687
15688 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
15689
15690         * modules/nanosleep (Depends-on): Add gettime.
15691
15692 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
15693         and Simon Josefsson  <jas@extundo.com>
15694         and Oskar Liljeblad  <oskar@osk.mine.nu>
15695
15696         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
15697         * gnulib-tool (func_import): New license type 'unmodifiable license
15698         text'.
15699         * modules/fdl: Use it.  Longer description.
15700         * module/gpl, module/lgpl: New files.
15701
15702 2006-08-30  Jim Meyering  <jim@meyering.net>
15703
15704         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
15705         shadowing the parameter.
15706
15707 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15708
15709         Sync from Libtool:
15710
15711         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15712
15713         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
15714         sharing with gnulib.  Report by Eric Blake.
15715
15716 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
15717
15718         * modules/isapipe: New file.
15719         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
15720
15721 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
15722
15723         * modules/configmake (Makefile.am): Add a comment, and omit
15724         the CONFIGMAKE_ prefix from generated macro names.  Suggested
15725         by Bruno Haible.
15726
15727 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
15728
15729         * m4/isapipe.m4: New file.
15730
15731 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
15732
15733         * lib/isapipe.c, lib/isapipe.h: New files.
15734
15735 2006-08-29  Jim Meyering  <jim@meyering.net>
15736
15737         * modules/configmake (Makefile.am): Make configmake.h depend on
15738         Makefile.  Otherwise, a stale configmake.h could hang around.
15739
15740 2006-08-29  Eric Blake  <ebb9@byu.net>
15741
15742         * lib/error.c (error_at_line, print_errno_message): Match libc, after
15743         resolution of upstream bug 3044.
15744
15745 2006-08-29  Bruno Haible  <bruno@clisp.org>
15746
15747         * modules/localcharset (Depends-on): Add configmake.
15748         (Makefile.am): Remove setting of LIBDIR through DEFS.
15749
15750 2006-08-29  Bruno Haible  <bruno@clisp.org>
15751
15752         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
15753         defined.
15754
15755 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
15756
15757         * modules/fcntl: New file.
15758         * modules/chdir-safer (Depends-on): Add fcntl.
15759         * modules/fts: Likewise.
15760         * modules/mkdir-p: Likewise.
15761
15762         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
15763         This undoes the most recent change, since we're now addressing the
15764         problem in a different way.
15765
15766         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
15767         into output, since the output might be called Makefile.am even
15768         if $makefile_name is something different.
15769         (func_import): Use $makefile_am rather than
15770         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
15771         empty.
15772
15773         * modules/inttypes (Files): Add m4/inttypes-h.m4.
15774
15775 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
15776
15777         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
15778         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
15779         recent change to stdint.m4, since we're now addressing the problem in a
15780         different way.
15781
15782 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
15783
15784         * m4/fcntl_h.m4: New file.
15785
15786 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
15787
15788         * lib/fcntl_.h: New file.
15789         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
15790         the fcntl module.
15791         * lib/dirchownmod.c: Likewise.
15792         * lib/fts.c: Likewise.
15793
15794         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
15795         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
15796         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
15797         just before including <inttypes.h>, to avoid circular inclusion.
15798
15799 2006-08-28  Jim Meyering  <jim@meyering.net>
15800
15801         * doc/visibility.texi: Actually read and correct the grammar of the
15802         sentence affected by yesterday's change.
15803
15804 2006-08-28  Eric Blake  <ebb9@byu.net>
15805
15806         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
15807         needs wrapper.
15808
15809 2006-08-28  Eric Blake  <ebb9@byu.net>
15810
15811         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
15812
15813 2006-08-28  Eric Blake  <ebb9@byu.net>
15814
15815         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
15816
15817 2006-08-28  Bruno Haible  <bruno@clisp.org>
15818
15819         * modules/c-strstr: New file, from GNU gettext.
15820         * MODULES.html.sh (String handling): Add c-strstr.
15821
15822 2006-08-28  Bruno Haible  <bruno@clisp.org>
15823
15824         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
15825         macros.
15826         Reported by Eric Blake.
15827
15828 2006-08-28  Bruno Haible  <bruno@clisp.org>
15829
15830         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
15831         (VASNPRINTF): Return a string of length > INT_MAX without failing.
15832         * lib/vasprintf.c: Include errno.h, limits.h.
15833         (EOVERFLOW): New fallback definition.
15834         (vasprintf): Test here whether the string length is > INT_MAX.
15835         * lib/vsnprintf.c: Include errno.h, limits.h.
15836         (EOVERFLOW): New fallback definition.
15837         (vsnprintf): Fix bug when generated string was too long for the buffer.
15838         Test here whether the string length is > INT_MAX.
15839
15840 2006-08-28  Bruno Haible  <bruno@clisp.org>
15841
15842         * lib/inttypes_.h (SCNX*): Remove definitions.
15843         Reported by Eric Blake.
15844
15845 2006-08-28  Bruno Haible  <bruno@clisp.org>
15846
15847         * lib/c-strstr.h: New file, from GNU gettext.
15848         * lib/c-strstr.c: New file, from GNU gettext.
15849
15850 2006-08-28  Bruno Haible  <bruno@clisp.org>
15851
15852         * gnulib-tool: Reorder some statements.
15853
15854 2006-08-28  Bruno Haible  <bruno@clisp.org>
15855
15856         * gnulib-tool: New option --makefile-name.
15857         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
15858         $makefile_name.
15859         (func_import): Write $makefile_name to the cache file, and read it from
15860         there unless explicitly specified. Use $makefile_name as file name
15861         instead of Makefile.am. Adjust the recommendations accordingly.
15862
15863 2006-08-28  Bruno Haible  <bruno@clisp.org>
15864
15865         * gnulib-tool (func_verify_module): Check against misapplying patch.
15866
15867 2006-08-28  Bruno Haible  <bruno@clisp.org>
15868
15869         * gnulib-tool (func_relativize, func_relconcat): New functions.
15870         Give an error if --local-dir is given with --update.
15871         Remove trailing slashes from $local_gnulib_dir.
15872         (func_import): Store the relativized $local_gnulib_dir in
15873         gnulib-cache.m4, and read it from there if not specified explicitly.
15874
15875 2006-08-28  Bruno Haible  <bruno@clisp.org>
15876
15877         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
15878         is the current directory. Respect also $local_gnulib_dir.
15879
15880 2006-08-28  Bruno Haible  <bruno@clisp.org>
15881             Simon Josefsson  <jas@extundo.com>
15882
15883         BeOS portability.
15884         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
15885
15886 2006-08-27  Jim Meyering  <jim@meyering.net>
15887
15888         * doc/visibility.texi: Remove duplicate word: "pointer".
15889
15890 2006-08-26  Bruno Haible  <bruno@clisp.org>
15891
15892         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
15893         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
15894         (Makefile.am): Create inttypes.h from inttypes_.h.
15895         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
15896
15897         * modules/imaxabs: New file.
15898
15899         * modules/imaxdiv: New file.
15900
15901 2006-08-26  Bruno Haible  <bruno@clisp.org>
15902
15903         * m4/inttypes.m4: New file.
15904         * m4/_inttypes_h.m4: Remove file.
15905         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
15906         PRI_MACROS_BROKEN.
15907         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
15908
15909         * m4/imaxabs.m4: New file.
15910
15911         * m4/imaxdiv.m4: New file.
15912
15913 2006-08-26  Bruno Haible  <bruno@clisp.org>
15914
15915         * lib/inttypes_.h: New file.
15916         * lib/inttypes.h: Remove file.
15917         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
15918
15919         * lib/imaxabs.c: New file.
15920
15921         * lib/imaxdiv.c: New file.
15922
15923 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
15924
15925         New config-h module, so that "make" output needn't be cluttered
15926         by -DHAVE_CONFIG_H.
15927         * MODULES.html.sh (Support for building libraries and executables):
15928         Add config-h.
15929         * modules/config-h: New file.
15930         * gnulib-tool (nl, sed_transform_lib_file): New vars.
15931         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
15932         the config-h module is used.
15933
15934         New configmake module, so that "make" output needn't be cluttered
15935         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
15936         * MODULES.html.sh (Support for building libraries and executables):
15937         Add configmake.
15938         * modules/configmake: New file.
15939
15940 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
15941
15942         * m4/config-h.m4: New file.
15943
15944 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
15945
15946         * config/srclist.txt: Add elisp-comp.
15947
15948 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
15949
15950         * MODULES.html.sh (Support for building libraries and executables):
15951         Add elisp-comp.
15952         * build-aux/elisp-comp: New file.
15953         * modules/elisp-comp: New file.
15954
15955 2006-08-24  Bruno Haible  <bruno@clisp.org>
15956
15957         * gnulib-tool (func_create_testdir): Use non-default values of
15958         sourcebase and m4base.
15959
15960 2006-08-24  Bruno Haible  <bruno@clisp.org>
15961
15962         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
15963         HTML structure.
15964
15965 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
15966
15967         * modules/openat (Depends-on): Add lchown.
15968
15969 2006-08-23  Bruno Haible  <bruno@clisp.org>
15970
15971         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
15972         of gl_LOCK_EARLY instead of gl_LOCK.
15973
15974 2006-08-23  Bruno Haible  <bruno@clisp.org>
15975
15976         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
15977         on OSF/1 to no.
15978         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
15979
15980 2006-08-23  Bruno Haible  <bruno@clisp.org>
15981
15982         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
15983         as unusable.
15984
15985         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
15986         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
15987         (gl_LOCK): New macro.
15988
15989 2006-08-22  Simon Josefsson  <jas@extundo.com>
15990
15991         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
15992         to md5 module.
15993
15994 2006-08-22  Simon Josefsson  <jas@extundo.com>
15995
15996         * MODULES.html.sh: Add "Support for maintaining and release
15997         projects".
15998
15999         * build-aux/gnupload: New file, from coreutils.
16000
16001 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
16002
16003         Avoid the need for AC_LIBSOURCES in m4 macros.
16004         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
16005         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
16006         * modules/check-version (EXTRA_DIST): Add check-version.h.
16007         * modules/crc (EXTRA_DIST): Add crc.h.
16008         * modules/des (EXTRA_DIST): Add des.h.
16009         * modules/gc (EXTRA_DIST): Add gc.h.
16010         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
16011         * modules/getline (EXTRA_DIST): Add getline.h.
16012         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
16013         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
16014         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
16015         * modules/md2 (EXTRA_DIST): Add md2.h.
16016         * modules/md4 (EXTRA_DIST): Add md4.h.
16017         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
16018         * modules/read-file (EXTRA_DIST): Add read-file.h.
16019         * modules/readline (EXTRA_DIST): Add readline.h.
16020         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
16021         rijndael-api-fst.h.
16022
16023 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
16024
16025         * m4/rijndael.m4 (gl_ARCFOUR):
16026         * m4/arctwo.m4 (gl_ARCTWO):
16027         * m4/check-version.m4 (gl_CHECK_VERSION):
16028         * m4/crc.m4 (gl_CRC):
16029         * m4/des.m4 (gl_DES):
16030         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
16031         * m4/gc.m4 (gl_GC):
16032         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
16033         * m4/getline.m4 (gl_FUNC_GETLINE):
16034         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
16035         * m4/hmac-md5.m4 (gl_HMAC_MD5):
16036         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
16037         * m4/md2.m4 (gl_MD2):
16038         * m4/md4.m4 (gl_MD4):
16039         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
16040         * m4/read-file.m4 (gl_FUNC_READ_FILE):
16041         * m4/readline.m4 (gl_FUNC_READLINE):
16042         * m4/rijndael.m4 (gl_RIJNDAEL):
16043         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
16044         to get the necessary .h files and whatnot.
16045
16046 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
16047
16048         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
16049         gnulib rather than the other way around.
16050         * config/srclistvars.sh (COREUTILS): Remove.
16051
16052 2006-08-22  Jim Meyering  <jim@meyering.net>
16053
16054         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
16055
16056         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
16057
16058 2006-08-22  Eric Blake  <ebb9@byu.net>
16059
16060         * modules/regexprops-generic: New file.
16061         * MODULES.html.sh (Support for building documentation): List it.
16062
16063 2006-08-22  Eric Blake  <ebb9@byu.net>
16064
16065         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
16066         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
16067         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
16068         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
16069
16070 2006-08-22  Bruno Haible  <bruno@clisp.org>
16071
16072         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
16073         and lib_LTLIBRARIES like the other lib_* variables.
16074
16075 2006-08-22  Bruno Haible  <bruno@clisp.org>
16076
16077         * build-aux/x-to-1.in: New file, from GNU gettext.
16078
16079 2006-08-22  Bruno Haible  <bruno@clisp.org>
16080
16081         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
16082         <utmpx.h> exists.
16083
16084 2006-08-22  Bruno Haible  <bruno@clisp.org>
16085
16086         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
16087         <utmpx.h> exists.
16088
16089 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
16090
16091         BeOS portability.
16092         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
16093         exist.
16094         Problem reported by Bruno Haible.
16095
16096 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
16097
16098         Avoid the need for AC_LIBSOURCES in m4 macros.
16099         * modules/acl (EXTRA_DIST): Add acl.h.
16100         * modules/argmatch (Files): Add m4/argmatch.m4.
16101         (configure.ac): Add gl_ARGMATCH.
16102         (EXTRA_DIST): Renamed from lib_SOURCES, for
16103         consistency with the other modules.  Remove argmatch.c.
16104         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
16105         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
16106         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
16107         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
16108         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
16109         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
16110         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
16111         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
16112         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
16113         * modules/closeout (EXTRA_DIST): Add closeout.h.
16114         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
16115         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
16116         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
16117         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
16118         dirname.h; remove basename.c and stripslash.c.
16119         * modules/exclude (EXTRA_DIST): Add exclude.h.
16120         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
16121         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
16122         * modules/file-type (EXTRA_DIST): Add file-type.h.
16123         * modules/filemode (EXTRA_DIST): Add filemode.h.
16124         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
16125         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
16126         * modules/fpending (EXTRA_DIST): Add __fpending.h.
16127         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
16128         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
16129         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
16130         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
16131         * modules/getdate (EXTRA_DIST): Add getdate.c.
16132         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
16133         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
16134         * modules/getpass (EXTRA_DIST): Add getpass.h.
16135         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
16136         * modules/group-member (EXTRA_DIST): Add group-member.h.
16137         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
16138         * modules/hash (EXTRA_DIST): Add hash.h.
16139         * modules/human (EXTRA_DIST): Add human.h.
16140         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
16141         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
16142         * modules/lchown (EXTRA_DIST): Add lchown.h.
16143         * modules/long-options (EXTRA_DIST): Add long-options.h.
16144         * modules/lstat (EXTRA_DIST): Add lstat.h.
16145         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
16146         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
16147         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
16148         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
16149         * modules/memxor (EXTRA_DIST): Add memxor.h.
16150         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
16151         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
16152         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
16153         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
16154         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
16155         * modules/physmem (EXTRA_DIST): Add physmem.h.
16156         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
16157         * modules/posixver (EXTRA_DIST): Add posixver.h.
16158         * modules/quote (EXTRA_DIST): Add quote.h.
16159         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
16160         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
16161         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
16162         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
16163         regex_internal.h regexec.c.
16164         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
16165         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
16166         * modules/same (EXTRA_DIST): Add same.h.
16167         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
16168         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
16169         * modules/savedir (EXTRA_DIST): Add savedir.h.
16170         * modules/sha1 (EXTRA_DIST): Add sha1.h.
16171         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
16172         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
16173         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
16174         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
16175         * modules/strdup (EXTRA_DIST): Add strdup.h.
16176         * modules/strftime (EXTRA_DIST): Add strftime.h.
16177         * modules/strndup (EXTRA_DIST): Add strndup.h.
16178         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
16179         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
16180         * modules/time_r (EXTRA_DIST): Add time_r.h.
16181         * modules/timespec (EXTRA_DIST): Add timespec.h.
16182         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
16183         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
16184         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
16185         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
16186         * modules/userspec (EXTRA_DIST): Add userspec.h.
16187         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
16188         * modules/utimens (EXTRA_DIST): Add utimens.h.
16189         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
16190         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
16191         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
16192         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
16193         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
16194         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
16195         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
16196         * modules/yesno (EXTRA_DIST): Add yesno.h.
16197
16198 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
16199
16200         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
16201
16202         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
16203         * m4/dev-ino.m4, same-inode.m4: Remove.
16204
16205         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
16206         * m4/acl.m4 (AC_FUNC_ACL):
16207         * m4/backupfile.m4 (gl_BACKUPFILE):
16208         * m4/c-strtod.m4 (gl_C99_STRTOLD):
16209         * m4/canon-host.m4 (gl_CANON_HOST):
16210         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
16211         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
16212         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
16213         * m4/cloexec.m4 (gl_CLOEXEC):
16214         * m4/close-stream.m4 (gl_CLOSE_STREAM):
16215         * m4/closeout.m4 (gl_CLOSEOUT):
16216         * m4/dirfd.m4 (gl_FUNC_DIRFD):
16217         * m4/dirname.m4 (gl_DIRNAME):
16218         * m4/exclude.m4 (gl_EXCLUDE):
16219         * m4/exitfail.m4 (gl_EXITFAIL):
16220         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
16221         * m4/file-type.m4 (gl_FILE_TYPE):
16222         * m4/filemode.m4 (gl_FILEMODE):
16223         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
16224         * m4/fpending.m4 (gl_FUNC_FPENDING):
16225         * m4/fprintftime.m4 (gl_FPRINTFTIME):
16226         * m4/fts.m4 (gl_FUNC_FTS):
16227         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
16228         * m4/getdate.m4 (gl_GETDATE):
16229         * m4/gethrxtime.m4 (gl_GETHRXTIME):
16230         * m4/getpagesize.m4 (gl_GETPAGESIZE):
16231         * m4/getpass.m4 (gl_FUNC_GETPASS):
16232         * m4/gettime.m4 (gl_GETTIME):
16233         * m4/getugroups.m4 (gl_GETUGROUPS):
16234         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
16235         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
16236         * m4/hard-locale.m4 (gl_HARD_LOCALE):
16237         * m4/hash.m4 (gl_HASH):
16238         * m4/idcache.m4 (gl_IDCACHE):
16239         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
16240         * m4/lchown.m4 (gl_FUNC_LCHOWN):
16241         * m4/long-options.m4 (gl_LONG_OPTIONS):
16242         * m4/lstat.m4 (gl_FUNC_LSTAT):
16243         * m4/md5.m4 (gl_MD5):
16244         * m4/memcasecmp.m4 (gl_MEMCASECMP):
16245         * m4/memcoll.m4 (gl_MEMCOLL):
16246         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
16247         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
16248         * m4/memxor.m4 (gl_MEMXOR):
16249         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
16250         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
16251         * m4/modechange.m4 (gl_MODECHANGE):
16252         * m4/mountlist.m4 (gl_MOUNTLIST):
16253         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
16254         * m4/openat.m4 (gl_FUNC_OPENAT):
16255         * m4/pathmax.m4 (gl_PATHMAX):
16256         * m4/physmem.m4 (gl_PHYSMEM):
16257         * m4/posixtm.m4 (gl_POSIXTM):
16258         * m4/posixver.m4 (gl_POSIXVER):
16259         * m4/quote.m4 (gl_QUOTE):
16260         * m4/quotearg.m4 (gl_QUOTEARG):
16261         * m4/readtokens.m4 (gl_READTOKENS):
16262         * m4/readutmp.m4 (gl_READUTMP):
16263         * m4/regex.m4 (gl_REGEX):
16264         * m4/safe-read.m4 (gl_SAFE_READ):
16265         * m4/safe-write.m4 (gl_SAFE_WRITE):
16266         * m4/same.m4 (gl_SAME):
16267         * m4/save-cwd.m4 (gl_SAVE_CWD):
16268         * m4/savedir.m4 (gl_SAVEDIR):
16269         * m4/settime.m4 (gl_SETTIME):
16270         * m4/sha1.m4 (gl_SHA1):
16271         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
16272         * m4/stat-macros.m4 (gl_STAT_MACROS):
16273         * m4/stat-time.m4 (gl_STAT_TIME):
16274         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
16275         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
16276         * m4/strdup.m4 (gl_FUNC_STRDUP):
16277         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
16278         * m4/strndup.m4 (gl_FUNC_STRNDUP):
16279         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
16280         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
16281         * m4/time_r.m4 (gl_TIME_R):
16282         * m4/timespec.m4 (gl_TIMESPEC):
16283         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
16284         * m4/unlinkdir.m4 (gl_UNLINKDIR):
16285         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
16286         * m4/userspec.m4 (gl_USERSPEC):
16287         * m4/utimecmp.m4 (gl_UTIMECMP):
16288         * m4/utimens.m4 (gl_UTIMENS):
16289         * m4/xalloc.m4 (gl_XALLOC):
16290         * m4/xgetcwd.m4 (gl_XGETCWD):
16291         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
16292         * m4/xreadlink.m4 (gl_XREADLINK):
16293         * m4/xstrtod.m4 (gl_XSTRTOD):
16294         * m4/yesno.m4 (gl_YESNO):
16295         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
16296         to get the necessary .h files and whatnot.
16297
16298 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
16299             Bruno Haible  <bruno@clisp.org>
16300
16301         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
16302         /bin/sh understanding of '!' conditional negation.
16303
16304 2006-08-21  Jim Meyering  <jim@meyering.net>
16305
16306         * modules/openat (Depends-on): Really alphabetize.
16307
16308         * modules/acl (Depends-on): Add error and quote.
16309
16310         * check-module (find_included_lib_files): Add at-func.c to the
16311         ok-to-include-more-than-once white list.
16312
16313         * modules/openat (Depends-on): Add lstat.  Alphabetize.
16314
16315 2006-08-21  Bruno Haible  <bruno@clisp.org>
16316
16317         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16318         Emit a pkgdata_DATA variable only if some snippets add contents to it.
16319         Reported by Martin Lambers <marlam@marlam.de>.
16320
16321 2006-08-21  Bruno Haible  <bruno@clisp.org>
16322
16323         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
16324         specify an installation location, don't emit a noinst_LIBRARIES or
16325         noinst_LTLIBRARIES assignment.
16326
16327 2006-08-21  Bruno Haible  <bruno@clisp.org>
16328
16329         BeOS portability.
16330         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
16331         BeOS has mbrtowc() but no <wctype.h>.
16332
16333 2006-08-21  Bruno Haible  <bruno@clisp.org>
16334
16335         BeOS portability.
16336         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
16337         exist.
16338
16339 2006-08-21  Bruno Haible  <bruno@clisp.org>
16340
16341         BeOS portability.
16342         * lib/mbchar.h: Include <wctype.h> only if it exists.
16343
16344 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16345
16346         Remove files that are no longer needed by their respective modules.
16347         * m4/obstack.m4: Remove.
16348         * m4/strerror_r.m4: Remove.
16349         * m4/uint32_t.m4: Remove.
16350         * m4/uintptr_t.m4: Remove.
16351         * m4/ullong_max.m4: Remove.
16352         * m4/xstrtoimax.m4: Remove.
16353         * m4/xstrtoumax.m4: Remove.
16354
16355         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
16356         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
16357         dependencies now capture this.
16358
16359         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
16360         Do not use AC_LIBSOURCES, since gnulib modules now do this.
16361         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
16362         * m4/human.m4 (gl_HUMAN): Likewise.
16363         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
16364         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
16365
16366         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
16367
16368         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
16369         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
16370         stdint.
16371         * m4/human.m4 (gl_HUMAN): Likewise.
16372         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
16373         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
16374         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
16375         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
16376         * m4/xstrtol (gl_XSTRTOL): Likewise.
16377
16378         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
16379         AC_TYPE_LONG_LONG_INT.
16380         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
16381         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
16382         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
16383         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
16384
16385         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
16386         on stdbool.
16387
16388         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
16389         (gl_PREREQ_XSTRTOUL): Remove.
16390
16391         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
16392
16393         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
16394         mode.
16395
16396 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16397
16398         Add and change modules to make it easier for coreutils to use
16399         gnulib-tool.
16400         * modules/backupfile (Files): Remove m4/d-ino.m4.
16401         (Depends-on): Add d-ino.
16402         * modules/cycle-check (Depends-on): Add stdint.
16403         (lib_SOURCES): Add cycle-check.h.
16404         * modules/d-ino: New module.
16405         * modules/d-type: New module.
16406         * modules/error (Files): Remove m4/strerror_r.m4.
16407         * modules/filemode (Files): Add m4/st_dm_mode.m4.
16408         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
16409         m4/inttypes_h.m4, m4/uintmax_t.m4.
16410         (Depends-on): Add stdint.
16411         (lib_SOURCES): Add fsusage.h.
16412         * modules/getcwd (Files): Remove d-ino.m4.
16413         (Depends-on): Add d-ino.
16414         * modules/getndelim2 (Depends-on): Add stdint.
16415         * modules/glob (Files): Remove m4/d-type.m4.
16416         (Depends-on): Add d-type.
16417         * modules/host-os: New module.
16418         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
16419         m4/inttypes_h.m4, m4/uintmax_t.m4.
16420         * Depends-on: Add stdint.
16421         (lib_SOURCES): Add human.h.
16422         * modules/inttostr (Files): Remove m4/intmax_t.m4,
16423         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
16424         m4/uintmax_t.m4, m4/ulonglong.m4.
16425         (Depends-on): Add stdint.
16426         (EXTRA_DIST): Add inttostr.h.
16427         * modules/lchmod: New module.
16428         * modules/link-follow: New module.
16429         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
16430         (Depends-on): Add lchmod.
16431         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
16432         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
16433         (Depends-on): Add stdint.
16434         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
16435         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
16436         (Depends-on): Add stdint.
16437         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
16438         * modules/perl: New module.
16439         * modules/regex (Depends-on): Add stdint.
16440         * modules/rmdir-errno: New module.
16441         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
16442         m4/intmax_t.m4.
16443         (Depends-on): Add stdint.
16444         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
16445         m4/uintmax_t.m4.
16446         (Depends-on): Add stdint.
16447         * modules/unlink-busy: New module.
16448         * modules/utimecmp (Depends-on): Add stdint.
16449         * modules/uptime: New module.
16450         * modules/winsz-ioctl: New module.
16451         * modules/winsz-termios: New module.
16452         * modules/xnanosleep (Depends-on): Add nanosleep.
16453         * modules/ullong_max: Remove.
16454         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
16455         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
16456         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
16457         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
16458         (Depends-on): Add inttypes.
16459         (lib_SOURCES): Add xstrtol.h.
16460         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
16461         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
16462         * MODULES.html.sh: Move 'assert' into the assert section.
16463         Move 'dummy' into the linking section.
16464         Remove ullong_max.
16465         Add section for compatibility checks for POSIX:2001 functions,
16466         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
16467         winsz-ioctl, and winsz-termios into it.
16468         Add lchmod.
16469         Add top-level Misc section and put host-os, perl, and uptime
16470         into it.
16471
16472 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16473
16474         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
16475         now assume the stdint module.  Do not include inttypes.h.
16476         * lib/fsusage.h: Likewise.
16477         * lib/getndelim2.c: Likewise.
16478         * lib/human.h: Likewise.
16479         * lib/inttostr.h: Likewise.
16480         * lib/obstack.c: Likewise.
16481         * lib/regex_internal.h: Likewise.
16482         * lib/tempname.c: Likewise.
16483         * lib/utimecmp.c: Likewise.
16484         * lib/xstrtol.h: Likewise.
16485
16486         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
16487
16488         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
16489         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
16490         * lib/xtime.h: Likewise.
16491
16492 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16493
16494         * modules/openat (Files): Add lib/fchmodat.c.
16495         Fixes problem reported by Jay Youngman.
16496
16497 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16498
16499         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
16500         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
16501
16502 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
16503             Bruno Haible  <bruno@clisp.org>
16504
16505         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
16506         and is a script that invokes bison. Tighten the code. Add comments.
16507
16508 2006-08-18  Jim Meyering  <jim@meyering.net>
16509
16510         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
16511         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
16512         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
16513         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
16514
16515 2006-08-18  Bruno Haible  <bruno@clisp.org>
16516
16517         * modules/bison-i18n: New file.
16518         * MODULES.html.sh (Internationalization functions): Add it.
16519
16520 2006-08-18  Bruno Haible  <bruno@clisp.org>
16521
16522         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
16523         sys/statvfs.h. When getmntinfo was found, check its declaration and
16524         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
16525
16526 2006-08-18  Bruno Haible  <bruno@clisp.org>
16527
16528         * m4/bison-i18n.m4: New file, from bison.
16529
16530 2006-08-18  Bruno Haible  <bruno@clisp.org>
16531
16532         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
16533         (ME_DUMMY): Treat "kernfs" as a dummy.
16534         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
16535
16536 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16537
16538         Update from coreutils.
16539
16540         2006-08-15  Jim Meyering  <jim@meyering.net>
16541
16542         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
16543
16544         2006-01-17  Jim Meyering  <jim@meyering.net>
16545
16546         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
16547
16548         2006-01-11  Jim Meyering  <jim@meyering.net>
16549
16550         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
16551         Check for the lchmod function.
16552
16553 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16554
16555         Update from coreutils.
16556
16557         * lib/__fpending.h: Add copyright notice.
16558         * lib/fprintftime.h: Likewise.
16559         * lib/savedir.c: Use (C) in copyright notice.
16560         * lib/savedir.h: Likewise.
16561
16562         2006-08-15  Jim Meyering  <jim@meyering.net>
16563
16564         * lib/at-func.c: New file, with the logic of all emulated at-functions.
16565         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
16566         in support of the EXPECTED_ERRNO macro.
16567         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
16568         definitions.  Instead, define the appropriate symbols and include
16569         "at-func.c".
16570         * lib/mkdirat.c (mkdirat): Likewise.
16571         * lib/fchmodat.c (fchmodat): Likewise.
16572         (ENOSYS): Remove definition.
16573         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
16574         it.  Don't include "unistd--.h" -- it wasn't ever used.
16575
16576         2006-01-17  Jim Meyering  <jim@meyering.net>
16577
16578         Rewrite fts.c not to change the current working directory,
16579         by using openat, fstatat, fdopendir, etc..
16580
16581         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
16582         (HAVE_OPENAT_SUPPORT): Define.
16583         [_LIBC] (fchdir): Don't undef or define; no longer used.
16584         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
16585         Now, this `function' always succeeds, and consumes its file descriptor
16586         parameter -- so callers must not close such FDs.  Update callers.
16587         (diropen_fd, opendirat, cwd_advance_fd): New functions.
16588         (diropen): Add parameter, SP.  Adjust all callers.
16589         Implement using diropen_fd, rather than open.
16590         (fts_open): Initialize new member, fts_cwd_fd.
16591         Remove fts_rft-setting code.
16592         (fts_close): Close fts_cwd_fd, if necessary.
16593         (__opendir2): Define in terms of opendir or opendirat,
16594         depending on whether the FST_NOCHDIR flag is set.
16595         (fts_build): Since fts_safe_changedir consumes its FD, and since
16596         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
16597         and close the dup'd file descriptor upon failure.
16598         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
16599         (fts_safe_changedir): Tweak semantics to reflect that this function
16600         now calls cwd_advance_fd and hence consumes its FD argument.
16601         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
16602         [struct FTS] (fts_rft): Remove now-unused member.
16603         [struct FTS] (fts_cycle.state): Improve comment.
16604
16605         * lib/openat.c (openat_needs_fchdir): New function.
16606         * lib/openat.h (openat_needs_fchdir): Declare it.
16607
16608 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
16609
16610         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
16611         Problem and fix reported by Pádraig Brady in
16612         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
16613
16614 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
16615
16616         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
16617
16618 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
16619
16620         * lib/memcoll.c (memcoll): Optimize for the common case where the
16621         arguments are bytewise equal.
16622
16623 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
16624
16625         * doc/regexprops-generic.texi: Add a copyright notice.
16626
16627 2006-08-15  Bruno Haible  <bruno@clisp.org>
16628
16629         * modules/tmpdir (License): Change to LGPL.
16630
16631 2006-08-15  Bruno Haible  <bruno@clisp.org>
16632
16633         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
16634         module.
16635
16636 2006-08-14  Simon Josefsson  <jas@extundo.com>
16637
16638         * config/srclist.txt: Add gnupload.
16639
16640 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
16641
16642         Change copyright notice from LGPL 2 to GPL 2, since that's the
16643         standard form used in the gnulib repository.
16644         * tests/test-lock.c: Likewise.
16645         * tests/test-stdint.c: Likewise.
16646         * tests/test-tls.c: Likewise.
16647
16648         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
16649         prelude-manager.  User shorter URLs for GNU projects, without '?'.
16650         Add copyright notice.
16651
16652         * check-module: Add copyright notice.  Output a copyright
16653         notice if "--version" is specified.
16654         * modules/COPYING: New file.
16655         * tests/test-getaddrinfo.c: Add copyright notice.
16656         * tests/test-verify.c: Likewise.
16657
16658 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
16659
16660         Change copyright notice from LGPL 2 to GPL 2, since that's the
16661         standard form used in the gnulib repository.
16662         * lib/lock.c: LGPL -> GPL.
16663         * lib/lock.h: Likewise.
16664         * lib/strnlen1.c: Likewise.
16665         * lib/strnlen1.h: Likewise.
16666         * lib/tls.c: Likewise.
16667         * lib/tls.h: Likewise.
16668         * lib/tmpdir.c: Likewise.
16669
16670         * lib/TODO: Remove; this belongs only in coreutils.
16671
16672 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
16673
16674         Add copyright notices to long-enough files that lack them, since
16675         otherwise the files aren't clearly free.  Use the same notice that
16676         getdate.texi already uses.
16677         * doc/alloca-opt.texi: Add copyright notice.
16678         * doc/alloca.texi: Likewise.
16679         * doc/ctime.texi: Likewise.
16680         * doc/functions.texi: Likewise.
16681         * doc/gcd.texi: Likewise.
16682         * doc/gnulib-tool.texi: Likewise.
16683         * doc/inet_ntoa.texi: Likewise.
16684         * doc/visibility.texi: Likewise.
16685
16686         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
16687         * doc/quote.texi: Add copyright notice.
16688
16689         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
16690         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
16691         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
16692         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
16693         is now obsolete, and give a pointer to the Sun list.
16694         Add copyright notice.
16695
16696 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
16697
16698         * config/srclistvars.sh: Add copyright notice.
16699
16700 2006-08-14  Eric Blake  <ebb9@byu.net>
16701
16702         Import the following change from libc:
16703
16704         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
16705
16706         Upstream bug 2997.
16707         * lib/misc/error.c: Add space between program name and message if file
16708         name is missing.
16709
16710 2006-08-12  Karl Berry  <karl@gnu.org>
16711
16712         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
16713         remove, these originate in gnulib now.
16714
16715 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16716
16717         * doc/Makefile (standards.info standards.html standards.dvi):
16718         Also depend on make-stds.texi.
16719
16720 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16721
16722         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
16723         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
16724
16725         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
16726         in wchar_t.  Problem reported by Eric Blake.
16727
16728         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
16729         LEN is smaller than SIZE.  Suggested by Bruno Haible.
16730         Also, help the compiler to keep LEN in a register.
16731
16732 2006-08-11  Eric Blake  <ebb9@byu.net>
16733
16734         * users.txt: Sort.  Add tar.
16735
16736 2006-08-11  Bruno Haible  <bruno@clisp.org>
16737
16738         * users.txt: New file.
16739
16740 2006-08-11  Bruno Haible  <bruno@clisp.org>
16741
16742         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
16743         before <wchar.h>. Needed for OSF/1 and BSD/OS.
16744
16745 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
16746
16747         * modules/snprintf (Depends-on): Remove minmax.
16748         (Maintainer): Add self and Bruno.
16749
16750 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
16751
16752         * lib/.cppi-disable: Add snprintf.h, socket_.h.
16753         * lib/snprintf.c: Include <errno.h> and <limits.h>.
16754         (EOVERFLOW): Define if the system does not.
16755         Do not include "minmax.h"; it wasn't used.
16756         (snprintf): Don't assume size_t promotes to an unsigned type.
16757         Fix bug when generated string was too long for the buffer: the
16758         buffer's contents are supposed to be the initial prefix of the
16759         output.  Don't assume vasnprintf returns EOVERFLOW if the size
16760         exceeds INT_MAX; do the check ourselves.
16761
16762         Import the following changes from libc:
16763
16764         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
16765
16766         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
16767         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
16768         set wc to the byte which couldn't be converted.
16769         (re_string_reconstruct): Don't clear valid_raw_len before calling
16770         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
16771         tip_context using re_string_context_at.
16772
16773         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
16774
16775         * lib/posix/regex.h: g++ still cannot handled [restrict].
16776
16777         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
16778
16779         * lib/posix/regex.h: Remove special handling for VMS.
16780
16781 2006-08-10  Jim Meyering  <jim@meyering.net>
16782
16783         * modules/same-inode: New module.
16784         * modules/dev-ino: New module.
16785         * modules/cycle-check: Depend on these modules, rather than simply
16786         including their .h files.
16787         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
16788         required via m4/cycle-check.m4.
16789         * modules/same: Depend on new same-inode module, rather than
16790         including same-inode.h.
16791         * modules/chdir-safer: New file.
16792
16793         * modules/chown (Depends-on): Add stat-macros.
16794
16795 2006-08-10  Jim Meyering  <jim@meyering.net>
16796
16797         * m4/cycle-check.m4: New file.
16798         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
16799         * m4/dev-ino.m4, m4/same-inode.m4: New files.
16800
16801 2006-08-10  Eric Blake  <ebb9@byu.net>
16802
16803         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
16804         in from original proposal.
16805
16806 2006-08-10  Eric Blake  <ebb9@byu.net>
16807         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
16808
16809         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
16810         namespace.
16811
16812 2006-08-10  Bruno Haible  <bruno@clisp.org>
16813
16814         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
16815         as well.
16816
16817 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16818
16819         Sync from coreutils.
16820
16821         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
16822
16823         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
16824         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
16825
16826 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16827
16828         * modules/restrict: Remove; no longer needed now that we assume
16829         Autoconf 2.59 or later.
16830         * MODULES.html.sh: Remove 'restrict'.
16831         * modules/argp (Depends-on): Remove 'restrict'.
16832         * modules/base64 (Depends-on): Likewise.
16833         * modules/gc (Depends-on): Likewise.
16834         * modules/getaddrinfo (Depends-on): Likewise.
16835         * modules/glob (Depends-on): Likewise.
16836         * modules/inet_ntop (Depends-on): Likewise.
16837         * modules/inet_pton (Depends-on): Likewise.
16838         * modules/memxor (Depends-on): Likewise.
16839         * modules/regex (Depends-on): Likewise.
16840         * modules/strtok_r (Depends-on): Likewise.
16841         * modules/time_r (Depends-on): Likewise.
16842
16843 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16844
16845         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
16846         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
16847         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
16848         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
16849         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
16850         * m4/memxor.m4 (gl_MEMXOR): Likewise.
16851         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
16852         gl_C_RESTRICT replaced by AC_C_RESTRICT.
16853
16854         Merge from coreutils.
16855         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
16856         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
16857         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
16858         * m4/time_r.m4 (gl_TIME_R): Likewise.
16859
16860 2006-08-09  Karl Berry  <karl@gnu.org>
16861
16862         * config/srclist.txt: no more gettext-tools, per Bruno.
16863
16864 2006-08-08  Eric Blake  <ebb9@byu.net>
16865
16866         * modules/verror: New module.
16867         * MODULES.html.sh: Document it.
16868
16869 2006-08-08  Eric Blake  <ebb9@byu.net>
16870
16871         * lib/verror.h, lib/verror.c: New files.
16872
16873 2006-08-08  Eric Blake  <ebb9@byu.net>
16874
16875         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
16876         verror_at_line output complies with GNU Coding Standards even when
16877         file is NULL.
16878
16879 2006-08-07  Bruno Haible  <bruno@clisp.org>
16880
16881         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
16882         versions of AIX.
16883         Reported by Ralf Wildenhues.
16884
16885 2006-08-07  Bruno Haible  <bruno@clisp.org>
16886
16887         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
16888         in an AC_DEFUN. Needed so that the autoconf snippets can use
16889         AC_REQUIRE.
16890
16891 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16892
16893         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16894         Initialize pkgdata_DATA.
16895         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
16896         overriding it.
16897
16898 2006-08-06  Eric Blake  <ebb9@byu.net>
16899
16900         * lib/error.h: Fold in some upstream changes from glibc.
16901         * lib/error.c: Likewise.
16902
16903 2006-08-04  Bruno Haible  <bruno@clisp.org>
16904
16905         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16906         Make the mostlyclean-local rule depend on mostlyclean-generic.
16907         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
16908
16909 2006-07-31  Bruno Haible  <bruno@clisp.org>
16910
16911         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
16912         <stdlib.h>, <string.h>.
16913
16914 2006-07-30  Bruno Haible  <bruno@clisp.org>
16915
16916         * modules/readlink (License): Change to LGPL.
16917
16918 2006-07-30  Bruno Haible  <bruno@clisp.org>
16919
16920         * modules/javaversion (Makefile.am): Distribute javaversion.java and
16921         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
16922         set PKGDATADIR to point to it.
16923
16924 2006-07-30  Bruno Haible  <bruno@clisp.org>
16925
16926         * modules/csharpexec (configure.ac): Comment out macro invocation.
16927         * modules/javaexec (configure.ac): Likewise.
16928         * modules/javacomp-script (configure.ac): Likewise.
16929
16930         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
16931
16932 2006-07-30  Bruno Haible  <bruno@clisp.org>
16933
16934         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
16935         linked-list.
16936
16937 2006-07-30  Bruno Haible  <bruno@clisp.org>
16938
16939         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
16940
16941 2006-07-30  Bruno Haible  <bruno@clisp.org>
16942
16943         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16944         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
16945         get removed.
16946
16947 2006-07-29  Bruno Haible  <bruno@clisp.org>
16948
16949         Make it possible for gnulib-tool to work with locally modified or
16950         augmented gnulib repositories.
16951         * gnulib-tool (func_usage): Document --local-dir option.
16952         (local_gnulib_dir): New variable.
16953         Handle --local-dir option.
16954         (func_lookup_file): New function.
16955         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
16956         (func_get_description, func_get_filelist, func_get_description,
16957         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
16958         func_get_automake_snippet, func_get_include_directive,
16959         func_get_license, func_get_maintainer): Use func_lookup_file.
16960         (func_import, func_create_testdir): Use func_lookup_file.
16961
16962 2006-07-29  Bruno Haible  <bruno@clisp.org>
16963
16964         * modules/setenv (Depends-on): Add unistd.
16965
16966 2006-07-29  Bruno Haible  <bruno@clisp.org>
16967
16968         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
16969
16970 2006-07-29  Bruno Haible  <bruno@clisp.org>
16971
16972         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
16973
16974 2006-07-29  Bruno Haible  <bruno@clisp.org>
16975
16976         * gnulib-tool (import, update): If there is no Makefile.am, look at
16977         aclocal.m4, instead of bailing out.
16978
16979 2006-07-29  Bruno Haible  <bruno@clisp.org>
16980
16981         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
16982         Categorize the options by when they are useful.
16983
16984 2006-07-29  Bruno Haible  <bruno@clisp.org>
16985
16986         * gnulib-tool (func_usage): Document option --no-libtool.
16987         Handle option --no-libtool.
16988         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
16989         for changed semantics of $libtool variable.
16990         (func_import): Likewise. If libtool is not used, show this through
16991         an option --no-libtool.
16992         (func_create_testdir): Update.
16993
16994 2006-07-29  Bruno Haible  <bruno@clisp.org>
16995
16996         * gnulib-tool (func_import): Extend error message about missing
16997         --doc-base.
16998
16999 2006-07-29  Bruno Haible  <bruno@clisp.org>
17000
17001         * gnulib-tool (func_import): Don't create the $docbase directory if
17002         there is no file to store there.
17003
17004 2006-07-29  Bruno Haible  <bruno@clisp.org>
17005
17006         * gnulib-tool (autoconf_minversion): If a --dir option is given and
17007         relevant, look for configure.ac there, not in the current directory.
17008         Also use a simple search for AC_PREREQ, not "autoconf --trace".
17009
17010 2006-07-29  Bruno Haible  <bruno@clisp.org>
17011
17012         * gnulib-tool (SORT): New variable.
17013         (func_usage): Undocument --assume-autoconf option.
17014         Remove --assume-autoconf option handling.
17015         (autoconf_minversion): Determine from the contents of configure.ac.
17016         (func_import): Remove autoconf_minversion handling.
17017         Suggested by Eric Blake.
17018
17019 2006-07-29  Bruno Haible  <bruno@clisp.org>
17020
17021         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
17022
17023 2006-07-29  Bruno Haible  <bruno@clisp.org>
17024
17025         * config/srclist.txt (*setenv.[ch]): Remove rules.
17026
17027 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17028
17029         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
17030
17031 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17032
17033         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
17034         arpa/inet.h.
17035
17036 2006-07-28  Simon Josefsson  <jas@extundo.com>
17037
17038         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
17039         * modules/inet_pton (Depends-on): Likewise.
17040
17041 2006-07-28  Simon Josefsson  <jas@extundo.com>
17042
17043         * m4/netinet_in_h.m4: New file.
17044
17045 2006-07-28  Simon Josefsson  <jas@extundo.com>
17046
17047         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
17048         #include's.
17049
17050 2006-07-28  Simon Josefsson  <jas@extundo.com>
17051
17052         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
17053         #include's.
17054
17055 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
17056
17057         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
17058         setgid on directories only if they set these bits.
17059         * lib/modechange.h: Remove obsolete comment about masks.
17060
17061 2006-07-28  Eric Blake  <ebb9@byu.net>
17062
17063         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
17064         macro expansion.
17065
17066 2006-07-28  Bruno Haible  <bruno@clisp.org>
17067
17068         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
17069
17070 2006-07-28  Bruno Haible  <bruno@clisp.org>
17071
17072         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
17073
17074 2006-07-28  Bruno Haible  <bruno@clisp.org>
17075
17076         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
17077         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
17078         Define fallbacks.
17079         Avoids link error on FreeBSD 4.x.
17080         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
17081
17082         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
17083         encoding.
17084         * lib/mbswidth.c (iswcntrl): Likewise.
17085
17086 2006-07-27  Bruno Haible  <bruno@clisp.org>
17087
17088         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
17089         test.
17090
17091 2006-07-27  Bruno Haible  <bruno@clisp.org>
17092
17093         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
17094         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
17095         defined.
17096
17097 2006-07-26  Eric Blake  <ebb9@byu.net>
17098
17099         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
17100
17101 2006-07-26  Eric Blake  <ebb9@byu.net>
17102
17103         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
17104         like mingw that lack mkstemp.
17105         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
17106         avoid compilation warning on mingw.
17107
17108 2006-07-26  Bruno Haible  <bruno@clisp.org>
17109
17110         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
17111         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
17112         INT_FAST*_MIN, INTPTR_MIN.
17113
17114 2006-07-25  Bruno Haible  <bruno@clisp.org>
17115
17116         * modules/version-etc (Depends-on): Add stdarg.
17117
17118 2006-07-25  Bruno Haible  <bruno@clisp.org>
17119
17120         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
17121         complex commands.
17122
17123 2006-07-25  Bruno Haible  <bruno@clisp.org>
17124
17125         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
17126         defined in <stdarg.h> or config.h.
17127
17128 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
17129
17130         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
17131         (gl_STDIO_SAFER): Remove.
17132
17133 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
17134
17135         * MODULES.html.sh (File stream based Input/Output):
17136         Add fopen-safer, tmpfile-safer; remove stdio-safer.
17137         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
17138         * modules/fopen-safer, modules/tmpfile-safer: New files.
17139         * modules/stdio-safer: Remove.
17140
17141 2006-07-24  Bruno Haible  <bruno@clisp.org>
17142
17143         * modules/tmpdir: New file.
17144         * MODULES.html.sh (File system functions): Add it.
17145
17146 2006-07-24  Bruno Haible  <bruno@clisp.org>
17147
17148         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
17149         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
17150
17151 2006-07-24  Bruno Haible  <bruno@clisp.org>
17152
17153         * modules/clean-temp: New file.
17154
17155 2006-07-24  Bruno Haible  <bruno@clisp.org>
17156
17157         * m4/tmpdir.m4: New file, from GNU gettext.
17158
17159 2006-07-24  Bruno Haible  <bruno@clisp.org>
17160
17161         * lib/tmpdir.h: New file, from GNU gettext.
17162         * lib/tmpdir.c: New file, from GNU gettext.
17163
17164 2006-07-24  Bruno Haible  <bruno@clisp.org>
17165
17166         * lib/clean-temp.h: New file, from GNU gettext.
17167         * lib/clean-temp.c: New file, from GNU gettext.
17168
17169 2006-07-23  Eric Blake  <ebb9@byu.net>
17170
17171         * modules/stdio-safer (Files): Add tmpfile-safer.c.
17172         (Depends-on): Add binary-io.
17173
17174 2006-07-23  Eric Blake  <ebb9@byu.net>
17175
17176         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
17177
17178 2006-07-23  Eric Blake  <ebb9@byu.net>
17179
17180         * lib/tmpfile-safer.c: New file.
17181         * lib/stdio-safer.h (fopen_safer): Add prototype.
17182         * lib/stdio--.h (tmpfile): Make safer.
17183
17184 2006-07-23  Bruno Haible  <bruno@clisp.org>
17185
17186         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
17187         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
17188         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
17189         gl_linked_remove_at): Use it.
17190
17191 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17192         and Simon Josefsson <jas@extundo.com>
17193
17194         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
17195
17196         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
17197
17198 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
17199
17200         * modules/close-stream: New file.
17201         * modules/closeout (Description): Make it clear that it exits
17202         with a diagnostic on error.
17203         (Depends-on): Add close-stream.  Remove fpending, stdbool.
17204         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
17205
17206 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
17207
17208         * m4/close-stream.m4: New file.
17209
17210 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
17211
17212         * lib/close-stream.c, lib/close-stream.h: New files.
17213
17214 2006-07-22  Bruno Haible  <bruno@clisp.org>
17215
17216         Merge from GNU gettext 0.15.
17217
17218         2006-05-01  Bruno Haible  <bruno@clisp.org>
17219
17220                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
17221
17222         2006-07-22  Bruno Haible  <bruno@clisp.org>
17223
17224                 * modules/javaversion: New file.
17225                 * MODULES.html.sh (Java): Add javaversion.
17226
17227         2006-03-12  Bruno Haible  <bruno@clisp.org>
17228
17229                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
17230
17231         2005-12-04  Bruno Haible  <bruno@clisp.org>
17232
17233                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
17234                 (untested).
17235
17236         2006-06-21  Bruno Haible  <bruno@clisp.org>
17237
17238                 Avoid warnings from recent versions of mcs.
17239                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
17240                 -o, -L, -r any more. Use options documented since mcs-1.0
17241                 instead. Similarly for -g.
17242
17243         2005-12-04  Bruno Haible  <bruno@clisp.org>
17244
17245                 * build-aux/csharpcomp.sh.in: Suffix for resources is
17246                 .resources, not .resource.
17247
17248         2005-07-09  Bruno Haible  <bruno@clisp.org>
17249
17250                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
17251                 add a .dll suffix.
17252                 Reported by Mark Junker <mjscod@gmx.de>.
17253
17254         2006-07-22  Bruno Haible  <bruno@clisp.org>
17255
17256                 * modules/gettext: Upgrade to gettext-0.15.
17257                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
17258                 m4/visibility.m4.
17259                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
17260
17261 2006-07-22  Bruno Haible  <bruno@clisp.org>
17262
17263         Merge from GNU gettext 0.15.
17264
17265         2006-03-25  Bruno Haible  <bruno@clisp.org>
17266
17267                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
17268
17269         2006-07-21  Bruno Haible  <bruno@clisp.org>
17270
17271                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
17272                 "1.1".
17273
17274         2006-05-09  Bruno Haible  <bruno@clisp.org>
17275
17276                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
17277                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
17278                 for the conftestver execution.
17279
17280         2006-05-01  Bruno Haible  <bruno@clisp.org>
17281
17282                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
17283                 optional target-version argument. Verify that the compiler
17284                 groks source of the specified source-version, or add -source
17285                 option as necessary. Verify that the compiler produces
17286                 bytecode in the specified target-version, or add -target and
17287                 -source options as necessary. Make the result of the test
17288                 available as variable CONF_JAVAC. Also log error output in
17289                 config.log.
17290
17291         2006-03-11  Bruno Haible  <bruno@clisp.org>
17292
17293                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
17294
17295         2006-05-09  Bruno Haible  <bruno@clisp.org>
17296
17297                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
17298                 CLASSPATH_SEPARATOR to a semicolon.
17299
17300         2006-03-12  Bruno Haible  <bruno@clisp.org>
17301
17302                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
17303                 available as variable CONF_JAVA, for subsequent autoconf
17304                 tests. Also log error output in config.log.
17305
17306         2006-07-19  Bruno Haible  <bruno@clisp.org>
17307
17308                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
17309                 that getline works on glibc2 systems. Needed to avoid trouble
17310                 in relocatable.c.
17311                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
17312
17313         2005-12-04  Bruno Haible  <bruno@clisp.org>
17314
17315                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
17316                 launcher (untested).
17317
17318         2005-12-04  Bruno Haible  <bruno@clisp.org>
17319
17320                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
17321
17322         2006-07-22  Bruno Haible  <bruno@clisp.org>
17323
17324                 * gettext.m4: Update from GNU gettext-0.15.
17325                 * nls.m4: Likewise.
17326                 * po.m4: Likewise.
17327                 * inttypes-pri.m4: Likewise.
17328                 * inttypes-h.m4: Renamed from inttypes.m4.
17329                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
17330
17331 2006-07-22  Bruno Haible  <bruno@clisp.org>
17332
17333         Merge from GNU gettext 0.15.
17334
17335         2005-07-05  Bruno Haible  <bruno@clisp.org>
17336
17337                 * printf-args.c (printf_fetchargs): Work around broken
17338                 definition of wint_t on mingw.
17339
17340         2005-02-12  Bruno Haible  <bruno@clisp.org>
17341
17342                 * xallocsa.h: Add extern "C" for C++.
17343
17344         2006-05-17  Bruno Haible  <bruno@clisp.org>
17345
17346                 Cygwin portability.
17347                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
17348
17349         2006-04-30  Bruno Haible  <bruno@clisp.org>
17350
17351                 * progreloc.c: Include <mach-o/dyld.h> if available.
17352                 (find_executable): Use _NSGetExecutablePath when possible.
17353
17354         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
17355
17356                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
17357                 function.
17358
17359         2005-12-29  Bruno Haible  <bruno@clisp.org>
17360
17361                 * progreloc.c (set_program_name_and_installdir): Fix
17362                 compilation error.
17363
17364         2005-12-04  Bruno Haible  <bruno@clisp.org>
17365
17366                 Cygwin portability.
17367                 * progreloc.c: Include <windows.h> also on Cygwin.
17368                 (find_executable): Add support for Cygwin.
17369                 (set_program_name_and_installdir): Handle also platforms with
17370                 nonempty EXEEXT.
17371
17372         2006-07-11  Bruno Haible  <bruno@clisp.org>
17373
17374                 * javacomp.c: Fix a comment.
17375                 Reported by Jim Meyering.
17376
17377         2006-04-30  Bruno Haible  <bruno@clisp.org>
17378
17379                 * javacomp.h (compile_java_class): Add source_version,
17380                 target_version arguments.
17381                 * javacomp.c: Rewritten to choose only a compiler that
17382                 respects the specified source_version and target_version.
17383
17384         2006-06-27  Bruno Haible  <bruno@clisp.org>
17385
17386                 Assume correct S_ISDIR macro.
17387                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
17388
17389         2006-07-22  Bruno Haible  <bruno@clisp.org>
17390
17391                 * javaversion.h: New file, from GNU gettext.
17392                 * javaversion.c: New file, from GNU gettext.
17393                 * javaversion.java: New file, from GNU gettext.
17394                 * javaversion.class: New file, from GNU gettext.
17395
17396         2006-05-17  Bruno Haible  <bruno@clisp.org>
17397
17398                 Cygwin portability.
17399                 * javaexec.c (execute_java_class): Test for jview program
17400                 also on Cygwin.
17401
17402         2006-04-09  Bruno Haible  <bruno@clisp.org>
17403
17404                 * fatal-signal.c: Don't include string.h.
17405                 (at_fatal_signal): Use a copying loop instead of memcpy.
17406
17407         2005-12-04  Bruno Haible  <bruno@clisp.org>
17408
17409                 * csharpexec.c: Add support for 'clix' launcher (untested).
17410                 (execute_csharp_using_sscli): New function.
17411                 (execute_csharp_program): Call it.
17412
17413         2006-06-21  Bruno Haible  <bruno@clisp.org>
17414
17415                 Avoid warnings from recent versions of mcs.
17416                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
17417                 -o, -L, -r any more. Use options documented since mcs-1.0
17418                 instead. Similarly for -g.
17419
17420         2005-07-09  Bruno Haible  <bruno@clisp.org>
17421
17422                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
17423                 add a .dll suffix.
17424                 Reported by Mark Junker <mjscod@gmx.de>.
17425
17426         2006-06-17  Bruno Haible  <bruno@clisp.org>
17427
17428                 * config.charset: Update for NetBSD 3.0.
17429
17430         2006-05-17  Bruno Haible  <bruno@clisp.org>
17431
17432                 Cygwin portability.
17433                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
17434
17435         2006-05-16  Bruno Haible  <bruno@clisp.org>
17436
17437                 * localcharset.c [CYGWIN]: Include <windows.h>.
17438                 (get_charset_aliases): For Cygwin, return the same CPxxx
17439                 aliases list as under WIN32.
17440                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
17441                 the environment variables. Fall back to GetACP().
17442
17443         2006-04-05  Bruno Haible  <bruno@clisp.org>
17444
17445                 * config.charset: Update Juan Manuel Guerrero's address.
17446
17447         2005-02-12  Bruno Haible  <bruno@clisp.org>
17448
17449                 * allocsa.h: Add extern "C" for C++.
17450
17451         2005-02-10  Bruno Haible  <bruno@clisp.org>
17452
17453                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
17454                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
17455
17456         2006-07-22  Bruno Haible  <bruno@clisp.org>
17457
17458                 * gettext.h: Update to GNU gettext-0.15.
17459
17460 2006-07-22  Bruno Haible  <bruno@clisp.org>
17461
17462         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
17463         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
17464         lib-prefix.m4, longdouble.m4, ssize_t.m4.
17465
17466 2006-07-21  Eric Blake  <ebb9@byu.net>
17467
17468         * modules/stdlib-safer: New file.
17469         * MODULES.html.sh (File stream based Input/Output): Add
17470         stdlib-safer.
17471
17472 2006-07-21  Eric Blake  <ebb9@byu.net>
17473
17474         * lib/stdlib-safer.h: New file from coreutils, required by
17475         stdlib--.h.
17476
17477 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
17478
17479         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
17480
17481 2006-07-20  Bruno Haible  <bruno@clisp.org>
17482
17483         * gnulib-tool: Recognize new option --assume-autoconf.
17484         (autoconf_minversion): New variable.
17485         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
17486
17487 2006-07-20  Bruno Haible  <bruno@clisp.org>
17488
17489         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
17490
17491 2006-07-19  Derek R. Price  <derek@ximbiot.com>
17492
17493         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
17494         Reindent and repaginate.
17495
17496 2006-07-19  Derek Price  <derek@ximbiot.com>
17497
17498         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
17499         Correct grammar.
17500
17501 2006-07-17  Bruno Haible  <bruno@clisp.org>
17502
17503         * modules/list: New file.
17504         * modules/array-list: New file.
17505         * modules/carray-list, modules/carray-list-tests: New files.
17506         * modules/linked-list, modules/linked-list-tests: New files.
17507         * modules/avltree-list, modules/avltree-list-tests: New files.
17508         * modules/rbtree-list, modules/rbtree-list-tests: New files.
17509         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
17510         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
17511         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
17512         * modules/oset: New file.
17513         * modules/array-oset: New file.
17514         * modules/avltree-oset, modules/avltree-oset-tests: New files.
17515         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
17516         * tests/test-carray_list.c: New file.
17517         * tests/test-linked_list.c: New file.
17518         * tests/test-avltree_list.c: New file.
17519         * tests/test-rbtree_list.c: New file.
17520         * tests/test-linkedhash_list.c: New file.
17521         * tests/test-avltreehash_list.c: New file.
17522         * tests/test-rbtreehash_list.c: New file.
17523         * tests/test-avltree_oset.c: New file.
17524         * tests/test-rbtree_oset.c: New file.
17525         * MODULES.html.sh (Container data structures): New section.
17526
17527 2006-07-17  Bruno Haible  <bruno@clisp.org>
17528
17529         * m4/gl_list.m4: New file.
17530
17531 2006-07-17  Bruno Haible  <bruno@clisp.org>
17532
17533         * lib/gl_list.h: New file.
17534         * lib/gl_list.c: New file.
17535         * lib/gl_array_list.h: New file.
17536         * lib/gl_array_list.c: New file.
17537         * lib/gl_carray_list.h: New file.
17538         * lib/gl_carray_list.c: New file.
17539         * lib/gl_linked_list.h: New file.
17540         * lib/gl_linked_list.c: New file.
17541         * lib/gl_anylinked_list1.h: New file.
17542         * lib/gl_anylinked_list2.h: New file.
17543         * lib/gl_avltree_list.h: New file.
17544         * lib/gl_avltree_list.c: New file.
17545         * lib/gl_anyavltree_list1.h: New file.
17546         * lib/gl_anyavltree_list2.h: New file.
17547         * lib/gl_rbtree_list.h: New file.
17548         * lib/gl_rbtree_list.c: New file.
17549         * lib/gl_anyrbtree_list1.h: New file.
17550         * lib/gl_anyrbtree_list2.h: New file.
17551         * lib/gl_anytree_list1.h: New file.
17552         * lib/gl_anytree_list2.h: New file.
17553         * lib/gl_linkedhash_list.h: New file.
17554         * lib/gl_linkedhash_list.c: New file.
17555         * lib/gl_anyhash_list1.h: New file.
17556         * lib/gl_anyhash_list2.h: New file.
17557         * lib/gl_avltreehash_list.h: New file.
17558         * lib/gl_avltreehash_list.c: New file.
17559         * lib/gl_rbtreehash_list.h: New file.
17560         * lib/gl_rbtreehash_list.c: New file.
17561         * lib/gl_anytreehash_list1.h: New file.
17562         * lib/gl_anytreehash_list2.h: New file.
17563
17564         * lib/gl_oset.h: New file.
17565         * lib/gl_oset.c: New file.
17566         * lib/gl_array_oset.h: New file.
17567         * lib/gl_array_oset.c: New file.
17568         * lib/gl_avltree_oset.h: New file.
17569         * lib/gl_avltree_oset.c: New file.
17570         * lib/gl_rbtree_oset.h: New file.
17571         * lib/gl_rbtree_oset.c: New file.
17572         * lib/gl_anytree_oset.h: New file.
17573
17574 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
17575
17576         * m4/mkancesdirs.m4: New file.
17577         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
17578         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
17579         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
17580         it.
17581
17582 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
17583
17584         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
17585         * lib/mkancesdirs.h: New files.
17586         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
17587         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
17588         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
17589         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
17590         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
17591         callers changed.  Revamp internals significantly, by not
17592         attempting to create directories that are temporarily more
17593         permissive than the final results.  Do not attempt to use
17594         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
17595         This removes some race conditions, fixes some bugs, and simplifies
17596         things.  Use new dirchownmod function to do owner and mode changes.
17597         * lib/mkdir-p.h: Likewise.
17598         * lib/modechange.c (octal_to_mode): New function.
17599         (struct mode_change): New member mentioned.
17600         (make_node_op_equals): New arg mentioned.  All callers changed.
17601         (mode_compile): Keep track of which mode bits the user has explicitly
17602         mentioned.
17603         (mode_adjust): New arg DIR, so that we implement the X op correctly.
17604         New arg PMODE_BITS, to keep track of which mode bits the user
17605         mentioned; it treats S_ISUID and S_ISGID speciall.
17606         All callers changed.
17607         * lib/modechange.h: Likewise.
17608
17609 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
17610
17611         * MODULES.html.sh: Add mkancestors.
17612         * modules/mkancesdirs: New module.
17613         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
17614         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
17615         The chdir-safer and afs files are now orphans; I'll remove them
17616         unless someone speaks up.
17617         Add lib/dirchownmod.c, lib/dirchownmod.h.
17618         (Depends-on): Remove alloca, chown, save-cwd, dirname.
17619         Add lchown, mkancesdirs.
17620         (Maintainer): Add self.
17621
17622 2006-07-15  Karl Berry  <karl@gnu.org>
17623
17624         * gnulib-tool: help message wording/arrangement.
17625
17626 2006-07-14  Simon Josefsson  <jas@extundo.com>
17627
17628         * doc/gnulib.texi (Libtool and Windows): New section.
17629
17630 2006-07-12  Simon Josefsson  <jas@extundo.com>
17631
17632         * modules/gendocs (License): Fix license, approved by Karl.
17633
17634 2006-07-12  Eric Blake  <ebb9@byu.net>
17635
17636         * MODULES.html.sh: Add gendocs.
17637
17638 2006-07-11  Eric Blake  <ebb9@byu.net>
17639
17640         * modules/fdl: New module, to install doc/fdl.texi.
17641         * MODULES.html.sh: Add new section for documentation modules.
17642         * gnulib-tool: Avoid space-tab.
17643         (--doc-base): New option, to manage files from doc.
17644
17645 2006-07-11  Eric Blake  <ebb9@byu.net>
17646
17647         * m4/absolute-header.m4: Fix comments to match recent change.
17648
17649 2006-07-11  Eric Blake  <ebb9@byu.net>
17650
17651         * gnulib-tool: List --doc-base before --tests-base.
17652
17653 2006-07-11  Derek R. Price  <derek@ximbiot.com>
17654
17655         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
17656
17657 2006-07-11  Bruno Haible  <bruno@clisp.org>
17658
17659         * README: Mention where to put documentation.
17660
17661 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17662
17663         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
17664
17665 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
17666
17667         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
17668         to stdint.m4.
17669
17670 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
17671
17672         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
17673         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
17674         "no/such/file/stdint.h" when there is no such file, so that
17675         the resulting C code can be parsed by dodgy compilers.
17676         Problems reported by Bob Proulx.
17677
17678 2006-07-10  Derek R. Price  <derek@ximbiot.com>
17679
17680         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
17681         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
17682         macros into the GNU _D_EXACT_NAMLEN.
17683         * lib/savedir.c:  Likewise.
17684         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
17685
17686 2006-07-10  Derek R. Price  <derek@ximbiot.com>
17687         and Paul Eggert  <eggert@cs.ucla.edu>
17688
17689         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
17690         * m4/savedir.m4:
17691         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
17692         macros into the GNU _D_EXACT_NAMLEN.
17693
17694 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
17695
17696         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
17697         around the absolute name, to work around a problem with the HP-UX
17698         11.23 native C compiler, reported by Bob Proulx.
17699
17700 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
17701
17702         * doc/maintain.texi, make-stds.texi: Sync from
17703         <http://savannah.gnu.org/projects/gnustandards>.
17704
17705 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
17706
17707         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
17708
17709 2006-07-09  Jim Meyering  <jim@meyering.net>
17710
17711         * m4/glob.m4: Remove a doubled word in a comment.
17712
17713 2006-07-09  Jim Meyering  <jim@meyering.net>
17714
17715         * lib/argp-pv.c: Remove a doubled word in a comment.
17716         * lib/check-version.c (check_version): Likewise.
17717         * lib/javacomp.c (compile_java_class): Likewise.
17718
17719 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
17720
17721         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
17722         for the benefit of people using Autoconf 2.60.  If you want to
17723         support older Autoconf versions you can copy m4/onceonly_2_57.m4
17724         (or m4/onceonly.m4, if pre-2.57) manually.
17725
17726 2006-07-08  Jim Meyering  <jim@meyering.net>
17727
17728         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
17729         comment.
17730         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
17731         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
17732         comment.
17733
17734 2006-07-08  Jim Meyering  <jim@meyering.net>
17735
17736         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
17737
17738 2006-07-07  Simon Josefsson  <jas@extundo.com>
17739
17740         * tests/test-crc.c: Change expected crc value, the test vector
17741         were probably computed using the old broken crc.c?
17742
17743 2006-07-06  Simon Josefsson  <jas@extundo.com>
17744
17745         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
17746         now the canonical place for the M4 file).
17747
17748         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
17749         from the sys_socket dependency now.
17750
17751         * modules/inet_pton (Files): Ditto.
17752
17753         * modules/inet_ntop (Files): Ditto.
17754
17755 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17756
17757         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
17758         not gl_PREREQ_GETUSERSHELL.
17759
17760 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17761
17762         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
17763         with only one argument, for Autoconf 2.60.
17764         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
17765         expand to nothing, so add a shell command to avoid syntax error.
17766         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
17767
17768 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17769
17770         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
17771
17772 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17773
17774         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
17775         no longer needed.  Check for isblank decl.
17776         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
17777         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
17778         of existence.
17779
17780 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17781
17782         * lib/getloadavg.c: Use __VMS, not VMS.
17783         * lib/getopt.c: Likewise.
17784         * lib/getpagesize.h: Likewise.
17785         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
17786         and probably does not work.
17787
17788 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17789
17790         * lib/.cppi-disable: Add wcwidth.
17791         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
17792         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
17793         (ISGRAPH): Remove.  All uses changed to isgraph.
17794         (FOLD) [!defined _LIBC]: Remove special case.
17795         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
17796         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
17797         HAVE_ISBLANK.
17798         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
17799         case.
17800
17801 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
17802
17803         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
17804         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
17805         brackets.  Other minor changes to suppress some compiler
17806         warnings.
17807
17808 2006-07-06  Derek R. Price  <derek@ximbiot.com>
17809         and Paul Eggert  <eggert@cs.ucla.edu>
17810
17811         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
17812         of invoking obsolescent AC_HEADER_DIRENT macro.
17813         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
17814         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
17815         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
17816         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
17817         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
17818         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
17819         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
17820         * m4/readdir.m4: Remove; no longer needed.
17821
17822 2006-07-06  Derek R. Price  <derek@ximbiot.com>
17823         and Paul Eggert  <eggert@cs.ucla.edu>
17824
17825         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
17826         Don't worry about this obsolete case any more.
17827         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
17828         directories.
17829         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
17830         worry about this obsolete case any more.
17831         * lib/fts.c: Likewise.
17832         * lib/getcwd.c: Likewise.
17833         * lib/glob.h: Likewise.
17834         * lib/savedir.c: Likewise.
17835
17836 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
17837
17838         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
17839         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
17840         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
17841         needed.
17842         All uses removed.
17843         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
17844         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
17845         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
17846         needed.
17847         * m4/getdate.m4 (gl_GETDATE): Likewise.
17848         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
17849         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
17850         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
17851         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
17852         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
17853         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17854         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
17855         needed.
17856
17857 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
17858
17859         * lib/memcasecmp.c: Include <limits.h>.
17860         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
17861         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
17862         Don't assume isdigit succeeds only on '0' through '9'.
17863
17864 2006-07-05  Eric Blake  <ebb9@byu.net>
17865
17866         * modules/getaddrinfo (Depends-on): Add snprintf.
17867
17868 2006-07-05  Eric Blake  <ebb9@byu.net>
17869
17870         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
17871         to avoid 'header present but could not be compiled' on cygwin.
17872
17873 2006-07-05  Eric Blake  <ebb9@byu.net>
17874
17875         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
17876         missing from netdb.h.
17877         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
17878
17879 2006-07-05  Derek R. Price  <derek@ximbiot.com>
17880
17881         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
17882         no longer needed.
17883         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
17884         * m4/getdate.m4 (gl_GETDATE): Likewise.
17885         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
17886         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
17887         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
17888         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
17889         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17890
17891 2006-07-05  Derek R. Price  <derek@ximbiot.com>
17892
17893         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
17894         All uses of is_space replaced by isspace.
17895         * lib/exit.h: Don't talk about STDC_HEADERS.
17896         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
17897         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
17898         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
17899         replaced by isprint etc.
17900         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
17901         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
17902         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
17903         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
17904         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
17905         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
17906
17907 2006-07-05  Bruno Haible  <bruno@clisp.org>
17908
17909         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
17910         the function exists, before testing against AIX.
17911         Reported by Martin Lambers <marlam@marlam.de>.
17912
17913 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
17914
17915         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
17916         From Mark D. Baushke.
17917
17918 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
17919
17920         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
17921         to the absolute name, not just one, to bypass Sun C 5.8's
17922         "warning: #include of /usr/include/... may be non-portable".
17923
17924 2006-07-04  Eric Blake  <ebb9@byu.net>
17925
17926         * modules/dirname-tests: New test module.
17927         * tests/test-dirname.c: New file, replacing dirname.c
17928         TEST_DIRNAME section that was recently deleted.
17929
17930 2006-07-04  Bruno Haible  <bruno@clisp.org>
17931
17932         Assume ANSI C header files and <ctype.h> functions.
17933         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
17934         (mbsnwidth): Use isprint, iscntrl instead.
17935
17936 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17937
17938         Merge from coreutils.
17939         * MODULES.html.sh: Add xstrtold.
17940         * modules/xstrtold: New file.
17941         * modules/cycle-check (Files): Add lib/same-inode.h.
17942         * modules/dirname (Files): Add m4/double-slash-root.m4.
17943         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
17944         * modules/mkdir-p (Files): Add lib/same-inode.h.
17945         * modules/same (Files): Add lib/same-inode.h.
17946
17947 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17948
17949         * m4/absolute-header.m4: Renamed from full-header-path.m4.
17950         This is to keep the terminology clean; POSIX talks about
17951         "absolute pathnames", not "full pathnames", but the GNU
17952         Coding Standards say to use "path" for something else;
17953         so use "absolute" to keep both sides happy.
17954         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
17955         Set gl_absolute_header, not gl_full_header_path.
17956         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
17957         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
17958         All uses changed.
17959
17960         Merge from coreutils.
17961
17962         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
17963
17964         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
17965         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
17966         want to require the building of c-strtod.o.
17967         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
17968         needs -lm directly.
17969         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
17970
17971         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
17972
17973         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
17974         --as-needed option if available.  Problem reported by Albert Chin in
17975         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
17976         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
17977         cc merely issues a bunch of annoying warnings for --as-needed
17978         (this problem was reported by Bob Proulx).  Also, try linking with
17979         -lm to detect a bug in binutils 2.16 (this problem was reported
17980         by Ralf Wildenhues).
17981
17982         2006-06-18  Jim Meyering  <jim@meyering.net>
17983
17984         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
17985         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
17986         macro.
17987         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
17988         also check for glibc-2.4's abort-inducing bug.
17989
17990         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
17991         Low-probability clean-up should be to use rmdir to get rid of
17992         the just-created directory, not unlink.
17993
17994         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
17995         configure fail, and request a bug report to inform us about it.
17996         Add a comment that, barring reports to the contrary, in 2007 we'll
17997         assume ftruncate is universally available.
17998
17999         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
18000
18001         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
18002
18003         2006-03-12  Jim Meyering  <jim@meyering.net>
18004
18005         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
18006         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
18007         * m4/same.m4 (gl_SAME): Likewise.
18008         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
18009
18010         2006-03-11  Eric Blake  <ebb9@byu.net>
18011
18012         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
18013         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
18014         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
18015         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
18016
18017 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18018
18019         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
18020         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
18021         reported by Mark D. Baushke, one in
18022         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
18023
18024         Merge from coreutils.
18025
18026         * lib/.cppi-disable: Add stdint_.h.
18027         * lib/.cvsignore: Add stdint.h.
18028
18029         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
18030
18031         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
18032         both double and long double versions.
18033         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
18034         * lib/xstrtold.c: New file.
18035         * lib/xstrtod.h (xstrtold): New decl.
18036
18037         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
18038
18039         * lib/filemode.c (setst): Remove.
18040         (strmode): Rewrite to avoid setst.  This makes the code shorter,
18041         (arguably) clearer, and the generated code is a bit smaller on my
18042         Debian GNU/Linux stable x86 host.
18043
18044         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
18045
18046         * lib/filemode.c: Include "filemode.h" first, to test the interface.
18047         Assume that filemode.h includes sys/types.h and sys/stat.h.
18048         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
18049         (ftypelet): Reorder to put common cases first, for efficiency.
18050         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
18051         to do 'M'.
18052         (strmode): Renamed from mode_string, and now stores 12 bytes instead
18053         of 10, for compatibility with FreeBSD.  All callers changed.
18054         (filemodestring): Now stores 12 bytes instead of 10, and sets file
18055         types that can't be deduced solely from st_mode.  First arg is now a
18056         const pointer.
18057         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
18058         (strmode): Renamed from mode_string.
18059         (filemodestring): New decl.
18060         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
18061         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
18062         needed.
18063         (S_ISPORT, S_ISWHT): New macros, if not already defined.
18064
18065         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
18066
18067         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
18068         fsusage.h now does that.  Include fsusage.h first, to test interface.
18069         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
18070         at most one method (the old code could have generated decls that
18071         didn't conform to C89, not that this was ever exercised).
18072         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
18073
18074         2006-03-19  Jim Meyering  <jim@meyering.net>
18075
18076         Work even in a chroot where d_ino values for entries in "/"
18077         don't match the stat.st_ino values for the same names.
18078         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
18079         number, iterate through all entries again, using lstat instead.
18080         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
18081         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
18082
18083         * lib/getcwd.c (__getcwd): Clarify a comment.
18084         Use memcpy in place of a call to strcpy.
18085
18086         2006-03-12  Jim Meyering  <jim@meyering.net>
18087
18088         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
18089         matches that of the current directory (which we're about to chdir ".."
18090         out of), then save the dev-ino of the parent, instead.
18091
18092         * lib/same-inode.h (SAME_INODE): New file/macro.
18093         * lib/chdir-safer.c (SAME_INODE): Remove definition.
18094         Include "same-inode.h", instead.
18095         * lib/same.c: Likewise.
18096         * lib/cycle-check.h: Include "same-inode.h".
18097         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
18098         * lib/cycle-check.c (SAME_INODE): Remove definition.
18099         * lib/root-dev-ino.h: Include "same-inode.h".
18100
18101         2006-03-11  Eric Blake  <ebb9@byu.net>
18102
18103         * lib/same.c (same_name): s/base_name/last_component/
18104         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
18105         * lib/filenamecat.c (file_name_concat): Likewise.
18106
18107         2006-03-11  Eric Blake  <ebb9@byu.net>,
18108                     Paul Eggert  <eggert@cs.ucla.edu>
18109
18110         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
18111         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
18112         drive prefix.
18113         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
18114         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
18115         (last_component): New method.
18116         * lib/dirname.c (dir_len): Determine when drive letters need a
18117         subsequent slash.  Preserve // when it is special.
18118         (dir_name): Don't append dot when drive letter is absolute.
18119         [TEST_DIRNAME]: Move into a full-blown gnulib test.
18120         * lib/basename.c (base_name): New semantics - malloc the result.
18121         Preserve // when it is special.  Preserve relative files that look
18122         like drive letters.
18123         (base_len): Preserve // when it is special.
18124         (last_component): New method, similar to old base_name semantics.
18125         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
18126         base_name.  Strip redundant slashes from ///.
18127
18128 2006-07-03  Jim Meyering  <jim@meyering.net>
18129
18130         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
18131         macro is used before the first cycle_check call.
18132
18133 2006-07-03  Eric Blake  <ebb9@byu.net>
18134
18135         * modules/dirname (Depends-on): Add xstrndup.
18136
18137 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
18138
18139         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
18140         test cases, so that config.log is a bit easier to follow.
18141
18142 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
18143
18144         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
18145         both are 64 bits, since this seems to be the tradition, and this
18146         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
18147         we ever run into a host that prefers long long to long in this
18148         case, we'll need another configure-time test.  Problem reported by
18149         Jim Meyering.
18150
18151 2006-07-02  Eric Blake  <ebb9@byu.net>
18152
18153         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
18154
18155 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
18156
18157         * modules/inttypes (Depends-on): No longer depends on stdint.
18158         * modules/stdint (Description): Say more about assumptions.
18159         Say that the fast types might differ.  Say macros are used.
18160         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
18161         (Makefile.am): Revise list of substituted symbols to match
18162         new stdint.m4.
18163         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
18164         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
18165         * tests/test-stdint.c (verify_same_types)
18166         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
18167         the code conforms to C99/C89.
18168         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
18169         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
18170
18171 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
18172
18173         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
18174         but fix a bug, by requiring at least 64 bits.
18175         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
18176         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
18177         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
18178         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
18179
18180         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
18181         changes.  Make 2.59 a prerequisite.  Check and substitute for
18182         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
18183         inttypes.h.  Do not use special include files; just use the
18184         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
18185         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
18186         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
18187         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
18188         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
18189         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
18190         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
18191         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
18192         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
18193         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
18194         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
18195         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
18196         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
18197         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
18198         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
18199         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
18200         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
18201         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
18202         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
18203         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
18204         WINT_MAX.  Check for C99 conformance more strictly, by detecting
18205         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
18206         not check for things that C99 does not require, e.g., int8_t.  If
18207         a test isn't needed unless <stdint.h> isn't working, and is
18208         unlikely to be needed for any other reason, then don't do it
18209         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
18210         size_t, since we assume C89 freestanding at least.  Do not check
18211         for sig_atomic_t, wchar_t, or wint_t, since the code now does
18212         the right thing even if the types are not defined.  Instead use:
18213         (gl_STDINT_TYPE_PROPERTIES): New macro.
18214         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
18215         testing whether <sys/types.h> clashes, as Autoconf does this for
18216         us now.  All uses removed.
18217         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
18218         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
18219         (gl_CHECK_TYPE_SAME):
18220         Remove; no longer needed.
18221         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
18222         exists, since we'll return 0 anyway in that case.
18223         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
18224
18225 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
18226
18227         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
18228         possible collision with system files.
18229         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
18230         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
18231         WCHAR_MIN and WCHAR_MAX in this case.
18232         (<stddef.h>): Do not include; no longer needed.
18233         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
18234         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
18235         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
18236         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
18237         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
18238         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
18239         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
18240         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
18241         !defined(__c99))]: Include in this case too, since it's harmless
18242         now.
18243         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
18244         dangerous to do so.
18245         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
18246         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
18247         (_STDINT_MIN, _STDINT_MAX): New macros.
18248         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
18249         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
18250         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
18251         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
18252         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
18253         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
18254         macros, not typedefs; this simplifies things quite a bit.
18255         Use long int for all types narrower than int64_t.
18256         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
18257         Define in terms of long long int or int64_t or long int,
18258         not int64_t or int32_t.  This saves some compile-time testing.
18259         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
18260         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
18261         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
18262         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
18263         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
18264         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
18265         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
18266         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
18267         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
18268         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
18269         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
18270         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
18271         undef any previous version and define our own version, for
18272         simplicity and consistency with the new macros for types.
18273         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
18274         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
18275         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
18276         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
18277         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
18278         @WINT_T_SUFFIX@ to keep things simple here.
18279         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
18280         Simplify by assuming typical 8/16/32/64 host, since we're
18281         already doing that elsewhere anyway.
18282         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
18283         and assume long long int is 64 bits if available.  This
18284         speeds up 'configure'.
18285
18286 2006-07-01  Eric Blake  <ebb9@byu.net>
18287
18288         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
18289         Reported by Andreas Buening.
18290
18291 2006-07-01  Eric Blake  <ebb9@byu.net>
18292
18293         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
18294
18295 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
18296
18297         * lib/getaddrinfo.c: fixed typo
18298
18299 2006-06-29  Jim Meyering  <jim@meyering.net>
18300
18301         * modules/strftime (Maintainer): Add my name, since with the
18302         FPRINTFTIME changes strftime.c has forked from glibc.
18303
18304 2006-06-29  Eric Blake  <ebb9@byu.net>
18305
18306         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
18307
18308 2006-06-29  Eric Blake  <ebb9@byu.net>
18309
18310         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
18311
18312 2006-06-29  Eric Blake  <ebb9@byu.net>
18313
18314         * lib/stat_.h: New file.
18315
18316 2006-06-29  Eric Blake  <ebb9@byu.net>
18317
18318         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
18319         unused static function.
18320
18321 2006-06-29  Eric Blake  <ebb9@byu.net>
18322
18323         * doc/functions.texi (Function Portability): Document missing lstat
18324         on mingw.
18325
18326 2006-06-29  Eric Blake  <ebb9@byu.net>
18327
18328         * MODULES.html.sh: Add sys_stat.
18329         * modules/sys_stat: New module.
18330         * modules/mkstemp (Depends-on): Add sys_stat.
18331
18332 2006-06-29  Derek R. Price  <derek@ximbiot.com>
18333
18334         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
18335
18336 2006-06-29  Derek R. Price  <derek@ximbiot.com>
18337
18338         * m4/c-bs-a.m4: Removed.
18339
18340 2006-06-29  Derek R. Price  <derek@ximbiot.com>
18341
18342         * lib/strftime.c: Assume strftime() exists.
18343
18344 2006-06-29  Derek Price  <derek@ximbiot.com>
18345
18346         * modules/c-bs-a: Removed - \a is C89.
18347         * MODULES.html.sh: Remove c-bs-a.
18348
18349 2006-06-29  Bruno Haible  <bruno@clisp.org>
18350
18351         * modules/wcwidth (License): Change to LGPL.
18352
18353 2006-06-28  Simon Josefsson  <jas@extundo.com>
18354
18355         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
18356         on _WIN32.
18357
18358         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
18359         getnameinfo.
18360
18361 2006-06-28  Simon Josefsson  <jas@extundo.com>
18362
18363         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
18364
18365 2006-06-28  Simon Josefsson  <jas@extundo.com>
18366
18367         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
18368         functions there.  It will succeed on Windows XP, but on Windows
18369         2000 and (presumably) earlier, it will fail, and use the internal
18370         re-implementation.
18371         (use_win32_p): New function.
18372         (getaddrinfo): Use strtoul on servname, to support numeric ports.
18373         Support AI_NUMERICSERV to disable getservbyname.
18374         (getnameinfo): New function, only supports
18375         NI_NUMERICHOST|NI_NUMERICSERV for now.
18376
18377         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
18378         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
18379         getnameinfo.
18380
18381 2006-06-28  Eric Blake  <ebb9@byu.net>
18382
18383         * modules/wcwidth: New file.
18384         * modules/mbchar (Depends-on): Add wcwidth.
18385         * modules/mbswidth (Depends-on): Add wcwidth.
18386         * MODULES.html.sh: Add wcwidth.
18387
18388 2006-06-28  Eric Blake  <ebb9@byu.net>
18389
18390         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
18391         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
18392
18393 2006-06-28  Eric Blake  <ebb9@byu.net>
18394
18395         * lib/xvasprintf.h: Fix comments.
18396
18397 2006-06-28  Eric Blake  <ebb9@byu.net>
18398
18399         * lib/mbchar.h (wcwidth): Include wcwidth.h.
18400         * lib/mbswidth.c (wcwidth): Move from here...
18401         * lib/wcwidth.h: ...to this new file.
18402
18403 2006-06-28  Derek R. Price  <derek@ximbiot.com>
18404
18405         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
18406
18407         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
18408         it's obsolete.
18409         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
18410
18411 2006-06-28  Derek R. Price  <derek@ximbiot.com>
18412
18413         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
18414         Autoconf 2.60 says this stuff was obsolete.
18415
18416 2006-06-28  Bruno Haible  <bruno@clisp.org>
18417
18418         * modules/wcwidth (Files): Add m4/wchar_t.m4.
18419
18420 2006-06-28  Bruno Haible  <bruno@clisp.org>
18421
18422         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
18423         gt_TYPE_WCHAR_T.
18424
18425 2006-06-28  Bruno Haible  <bruno@clisp.org>
18426
18427         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
18428         declaration for wcwidth.
18429         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
18430
18431 2006-06-28  Bruno Haible  <bruno@clisp.org>
18432
18433         * lib/mkdtemp.c [MINGW]: Include <io.h>.
18434         (mkdir): Define using _mkdir.
18435
18436 2006-06-28  Bruno Haible  <bruno@clisp.org>
18437
18438         * lib/getaddrinfo.h: Fix POSIX URL.
18439         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
18440         _WIN32.
18441         (use_win32_p): Make static.
18442         (getaddrinfo): Reject service name if it is empty or does not consist
18443         solely of decimal digits, or if its value is > 65535.
18444         (getnameinfo): Remove useless casts.
18445
18446 2006-06-27  Simon Josefsson  <jas@extundo.com>
18447
18448         * modules/sys_select: New file, suggested by Bruno Haible, Paul
18449         Eggert and Martin Lambers.
18450
18451 2006-06-27  Simon Josefsson  <jas@extundo.com>
18452
18453         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
18454         Eggert and Martin Lambers.
18455
18456 2006-06-27  Bruno Haible  <bruno@clisp.org>
18457
18458         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
18459         result to 0, not to empty.
18460         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
18461
18462 2006-06-27  Bruno Haible  <bruno@clisp.org>
18463
18464         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
18465
18466 2006-06-26  Simon Josefsson  <jas@extundo.com>
18467
18468         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
18469         present.
18470
18471 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
18472
18473         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
18474         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
18475         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
18476
18477 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
18478
18479         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
18480
18481 2006-06-26  Bruno Haible  <bruno@clisp.org>
18482
18483         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
18484
18485 2006-06-26  Bruno Haible  <bruno@clisp.org>
18486
18487         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
18488
18489 2006-06-26  Bruno Haible  <bruno@clisp.org>
18490
18491         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
18492         SGI C compiler in pre-C99 mode.
18493         Suggested by Mark D. Baushke and Larry Jones.
18494
18495 2006-06-26  Bruno Haible  <bruno@clisp.org>
18496
18497         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
18498         WCHAR_MAX.
18499         Reported by Mark D. Baushke and Larry Jones.
18500
18501 2006-06-26  Bruno Haible  <bruno@clisp.org>
18502
18503         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
18504         in pre-C99 mode.
18505         Suggested by Mark D. Baushke and Larry Jones.
18506
18507 2006-06-23  Simon Josefsson  <jas@extundo.com>
18508             Bruno Haible  <bruno@clisp.org>
18509
18510         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
18511         Emit mostlyclean-local rule.
18512         (func_emit_tests_Makefile_am): Likewise.
18513         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
18514
18515 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
18516
18517         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
18518
18519 2006-06-23  Bruno Haible  <bruno@clisp.org>
18520
18521         * tests/test-stdint.c: Update to match ISO C 99 Technical
18522         Corrigendum 1.
18523
18524 2006-06-23  Bruno Haible  <bruno@clisp.org>
18525
18526         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
18527
18528 2006-06-23  Bruno Haible  <bruno@clisp.org>
18529
18530         * lib/stdint_.h: Treat IRIX like OpenBSD.
18531
18532 2006-06-23  Bruno Haible  <bruno@clisp.org>
18533
18534         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
18535         ISO C 99 Technical Corrigendum 1.
18536
18537 2006-06-22  Simon Josefsson  <jas@extundo.com>
18538
18539         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
18540         MinGW.
18541
18542 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
18543
18544         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
18545         needed.  Some compiler complained about some of them.  Problem reported
18546         by Larry Jones in
18547         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
18548
18549 2006-06-21  Simon Josefsson  <jas@extundo.com>
18550
18551         * tests/test-getaddrinfo.c: New file.
18552
18553         * modules/getaddrinfo-tests: New file.
18554
18555         * MODULES.html.sh: Add inet_pton.
18556
18557         * modules/inet_pton: New file.
18558
18559 2006-06-21  Simon Josefsson  <jas@extundo.com>
18560
18561         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
18562         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
18563         of using the (limited) gnulib implementation on Windows XP.
18564
18565         * m4/inet_pton.m4: New file.
18566
18567 2006-06-21  Simon Josefsson  <jas@extundo.com>
18568
18569         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
18570         variable.
18571
18572         * lib/socket_.h: Don't define WINVER.
18573
18574         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
18575         slightly modified to work in gnulib.
18576
18577 2006-06-21  Simon Josefsson  <jas@extundo.com>
18578
18579         * doc/gnulib.texi (Windows sockets): Add.
18580
18581 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
18582
18583         * lib/read-file.c (fread_file): Start with buffer allocation of
18584         0 bytes rather than 1 byte; this simplifies the code.
18585         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
18586         code to free buffer and save/restore errno.
18587         (internal_read_file): Remove unused local.
18588
18589 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
18590
18591         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
18592         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
18593         Problem reported by Denis Excoffier in
18594         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
18595
18596 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18597
18598         * modules/sys_socket, modules/socklen: Include sys/types since
18599         FreeBSD 4.x's sys/socket.h needs it.
18600
18601 2006-06-19  Simon Josefsson  <jas@extundo.com>
18602
18603         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
18604
18605 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
18606
18607         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
18608
18609 2006-06-19  Bruno Haible  <bruno@clisp.org>
18610
18611         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
18612         and FULL_PATH_INTTYPES_H in angle brackets.
18613         Reported by Mark D. Baushke <mdb@gnu.org>.
18614
18615 2006-06-17  Eric Blake  <ebb9@byu.net>
18616
18617         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
18618         errno.
18619
18620 2006-06-17  Bruno Haible  <bruno@clisp.org>
18621
18622         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
18623         <sys/inttypes.h>.
18624
18625 2006-06-17  Bruno Haible  <bruno@clisp.org>
18626
18627         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
18628         whether errno is declared. Assume <errno.h> declares errno.
18629
18630 2006-06-17  Bruno Haible  <bruno@clisp.org>
18631
18632         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
18633
18634 2006-06-17  Bruno Haible  <bruno@clisp.org>
18635
18636         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
18637         problem on Solaris 2.5.1.
18638
18639 2006-06-16  Eric Blake  <ebb9@byu.net>
18640
18641         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
18642         * lib/unicodeio.c [!defined errno]: Likewise.
18643         * lib/strtol.c [!defined errno]: Likewise.
18644         * lib/strtod.c [!defined errno]: Likewise.
18645
18646 2006-06-15  Eric Blake  <ebb9@byu.net>
18647
18648         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
18649
18650 2006-06-15  Eric Blake  <ebb9@byu.net>
18651
18652         * config/srclist.txt (ssize_t.m4): Lose sync.
18653
18654 2006-06-15  Bruno Haible  <bruno@clisp.org>
18655
18656         * modules/stdint (Files): Include m4/full-header-path.m4,
18657         m4/size_max.m4, m4/wchar_t.m4.
18658         (Makefile.am): Many more substitutions.
18659         * modules/stdint-tests: New file.
18660         * tests/test-stdint.c: New file.
18661
18662 2006-06-15  Bruno Haible  <bruno@clisp.org>
18663
18664         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
18665         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
18666         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
18667         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
18668         gl_CHECK_TYPE_SAME): New macros.
18669
18670 2006-06-15  Bruno Haible  <bruno@clisp.org>
18671
18672         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
18673
18674 2006-06-15  Bruno Haible  <bruno@clisp.org>
18675
18676         * lib/stdint_.h: Rewritten to be fully auto-configured.
18677         Fixes bug on HP-UX/IA64.
18678
18679 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
18680
18681         * lib/getdate.y (__attribute__): Don't define if already defined.
18682         Problem reported by Larry Jones.
18683         * lib/utimens.c (__attribute__): Likewise.
18684
18685 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
18686
18687         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
18688         reported by Andreas Schwab.
18689
18690 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18691             Bruno Haible  <bruno@clisp.org>
18692
18693         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
18694         check for the declaration of strnlen and a run test that exposes the
18695         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
18696         rpl_strndup.
18697
18698 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18699             Bruno Haible  <bruno@clisp.org>
18700
18701         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
18702
18703 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18704
18705         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
18706         compile test, for Tru64 4.0D.
18707
18708 2006-05-28  Karl Berry  <karl@gnu.org>
18709
18710         * config/srclist.txt (printf-args.c): lose sync.
18711
18712 2006-05-26  Martin Lambers  <marlam@marlam.de>
18713
18714         * lib/getpass.c: Updates the test for the native W32 API, and adds
18715         missing includes, thus fixing compilation warnings.
18716
18717 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
18718
18719         * lib/exclude.c (exclude_fnmatch): New function.
18720         (excluded_file_name): Call exclude_fnmatch.
18721         * lib/exclude.h (excluded_file_name): New prototype
18722
18723 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
18724
18725         * lib/tempname.c (small_open, large_open): New macros.
18726         (__open, __open64) [!_LIBC]: Remove.
18727         (__gen_tempname): Use small_open and large_open instead of __open
18728         and __open64.  This fixes a portability bug on HP-UX 11.11i
18729         reported by Simon Wing-Tang in
18730         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
18731
18732 2006-05-24  Bruno Haible  <bruno@clisp.org>
18733
18734         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
18735         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
18736         Reported by Thorsten Maerz <torte@netztorte.de> via
18737         Aaron Stone <aaron@serendipity.cx>.
18738
18739 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
18740
18741         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
18742         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
18743         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
18744         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
18745         not really conditional on the cache.
18746         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
18747
18748 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
18749
18750         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
18751         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
18752         (my_usleep): Don't mishandle maximum value.
18753
18754 2006-05-19  Jim Meyering  <jim@meyering.net>
18755
18756         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
18757
18758 2006-05-17  Bruno Haible  <bruno@clisp.org>
18759
18760         Cygwin portability.
18761         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
18762
18763 2006-05-17  Bruno Haible  <bruno@clisp.org>
18764
18765         * lib/stdint_.h: Fix recognition of Cygwin.
18766
18767 2006-05-15  Bruno Haible  <bruno@clisp.org>
18768
18769         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
18770         on libtool patch by Ralf Wildenhues.
18771
18772 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18773
18774         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
18775         test for C99 conformance; (bool) 0.5 is an integer constant
18776         expression, but (bool) -0.5 is not.  Problem reported by Fedor
18777         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
18778
18779 2006-05-11  Simon Josefsson  <jas@extundo.com>
18780
18781         * m4/xvasprintf.m4: Fix obvious typo.
18782
18783 2006-05-11  Jim Meyering  <jim@meyering.net>
18784
18785         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
18786         James Lemley.
18787
18788 2006-05-10  Simon Josefsson  <jas@extundo.com>
18789
18790         * lib/md4.c: Typo fix, update copyright years.
18791         (K1, K2): Don't use L because it turn computations into 64-bit on
18792         64-bit platforms.
18793
18794 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
18795
18796         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
18797         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
18798         unwanted sign propagation, e.g., on hosts with 64-bit int.
18799         There still are some problems with reeelly weird theoretical hosts
18800         (e.g., 33-bit int) but it's not worth worrying about now.
18801         * lib/sha1.c (rol): Likewise.
18802         (K1, K2, K3, K4): Remove unnecessary L suffix.
18803
18804 2006-05-10  Bruno Haible  <bruno@clisp.org>
18805
18806         * lib/des.c: Cast to avoid warnings.
18807
18808 2006-05-09  Bruno Haible  <bruno@clisp.org>
18809
18810         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
18811         (Depends-on): Depend also on xsize, stdarg.
18812         (configure.ac): Add gl_XVASPRINTF.
18813
18814 2006-05-09  Bruno Haible  <bruno@clisp.org>
18815
18816         * m4/xvasprintf.m4: New file.
18817
18818 2006-05-09  Bruno Haible  <bruno@clisp.org>
18819
18820         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
18821         (EOVERFLOW): Define fallback value.
18822         (xstrcat): New function.
18823         (xvasprintf): Recognize the special case of a string concatenation.
18824
18825 2006-05-08  Eric Blake  <ebb9@byu.net>
18826
18827         * gnulib-tool (func_version): Base copyright year on CVS date.
18828         (func_emit_copyright_notice): New function.
18829         (func_emit_lib_Makefile_am): Use it.
18830         (func_emit_tests_Makefile_am): Likewise.
18831         (func_import): Likewise.
18832
18833 2006-05-08  Bruno Haible  <bruno@clisp.org>
18834
18835         * modules/stdarg: New file.
18836         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
18837
18838 2006-05-08  Bruno Haible  <bruno@clisp.org>
18839
18840         * m4/stdarg.m4: New file, from GNU gettext.
18841
18842 2006-05-08  Bruno Haible  <bruno@clisp.org>
18843
18844         * config/srclist.txt (build-aux/config.rpath): different from latest
18845         release.
18846
18847 2006-05-08  Bruno Haible  <bruno@clisp.org>
18848
18849         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
18850
18851 2006-05-05  Jim Meyering  <jim@meyering.net>
18852
18853         * m4/warning.m4: New file, derived from bison's file by the same name.
18854
18855 2006-05-03  Bruno Haible  <bruno@clisp.org>
18856
18857         * lib/stdint_.h: Shorter URL.
18858         * lib/inttypes.h: Likewise.
18859
18860 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
18861
18862         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
18863
18864 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
18865
18866         * lib/verify.h: Document the internals better.  Most of this change
18867         was written by Bruno Haible.
18868
18869 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
18870
18871         * doc/verify.texi: New file, partly based on a proposal by
18872         Bruno Haible.
18873
18874 2006-05-02  Bruno Haible  <bruno@clisp.org>
18875
18876         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
18877         test from here...
18878         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
18879
18880 2006-04-29  Bruno Haible  <bruno@clisp.org>
18881
18882         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
18883         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
18884
18885 2006-04-29  Bruno Haible  <bruno@clisp.org>
18886
18887         * gnulib-tool: Make --update option actually work.
18888
18889 2006-04-29  Bruno Haible  <bruno@clisp.org>
18890
18891         * doc/gcd.texi: New file.
18892         * doc/gnulib.texi: Include it.
18893
18894 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
18895
18896         * lib/getdate.y (get_date): When adding relative date, start with the
18897         initial time, not with the result of the first mktime call.
18898
18899 2006-04-25  Bruno Haible  <bruno@clisp.org>
18900
18901         * gnulib-tool (func_import): Output the include directives in three
18902         blocks, sorted separately.
18903         Reported by Ben Pfaff <blp@cs.stanford.edu>.
18904
18905 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
18906
18907         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
18908         to define main with arguments, for C++.  Reported by Eric Blake.
18909         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
18910         Prefer 'int main ()' to 'int main (void)', for C++.
18911         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
18912         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
18913         for 'main', for C99 and C++.
18914
18915 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
18916
18917         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
18918         Don't assume that exit status -1 is valid.
18919         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
18920         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
18921         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
18922         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
18923         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
18924         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
18925         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
18926         functions can be used without declaring them, or that you can
18927         exit with status -1.
18928         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
18929
18930 2006-04-24  Karl Berry  <karl@gnu.org>
18931
18932         * config/srclist.txt (longdouble.m4): sync lost.
18933
18934 2006-04-24  Eric Blake  <ebb9@byu.net>
18935
18936         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
18937
18938 2006-04-24  Bruno Haible  <bruno@clisp.org>
18939
18940         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
18941         poll() implementation in AIX.
18942         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18943
18944 2006-04-24  Bruno Haible  <bruno@clisp.org>
18945
18946         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
18947         assigned exactly once.
18948
18949 2006-04-23  Claudio Fontana  <claudio@gnu.org>
18950             Bruno Haible  <bruno@clisp.org>
18951
18952         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
18953         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
18954         for AM_CPPFLAGS.
18955
18956 2006-04-23  Bruno Haible  <bruno@clisp.org>
18957
18958         * modules/copy-file: Depend on unistd.
18959         * modules/execute: Likewise.
18960         * modules/fatal-signal: Likewise.
18961         * modules/findprog: Likewise.
18962         * modules/mkdtemp : Likewise.
18963         * modules/pipe: Likewise.
18964         * modules/wait-process: Likewise.
18965
18966 2006-04-23  Bruno Haible  <bruno@clisp.org>
18967
18968         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
18969         condition was already detected.
18970         Reported by Ben Pfaff <blp@cs.stanford.edu>.
18971
18972 2006-04-23  Bruno Haible  <bruno@clisp.org>
18973
18974         * lib/copy-file.c: Include <unistd.h> unconditionally.
18975         * lib/execute.c: Likewise.
18976         * lib/fatal-signal.c: Likewise.
18977         * lib/findprog.c: Likewise.
18978         * lib/mkdtemp.c: Likewise.
18979         * lib/pipe.h: Likewise.
18980         * lib/pipe.c: Likewise.
18981         * lib/wait-process.h: Likewise.
18982
18983 2006-04-23  Bruno Haible  <bruno@clisp.org>
18984
18985         * gnulib-tool (func_usage): Fix --import description. Document
18986         --update.
18987         (func_import): Create temporary file in a temporary directory, if
18988         --dry-run is specified. Silence errors from 'grep' when there are no
18989         m4 files in $m4dir.
18990         (func_create_testdir): Silence errors from 'grep' when there are no
18991         m4 files in $m4dir.
18992         Reported by Karl Berry <karl@freefriends.org>.
18993
18994 2006-04-20  Bruno Haible  <bruno@clisp.org>
18995
18996         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
18997         one argument, so that the code will be portable to Autoconf 2.60.
18998         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
18999         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
19000         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
19001
19002 2006-04-19  Derek Price  <derek@ximbiot.com>
19003             Eric Blake  <ebb9@byu.net>
19004
19005         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
19006         rather than "/full/path.h".  Update comment to match.  Shorten &
19007         generalize m4_translit call via AS_TR_CPP.
19008
19009 2006-04-19  Derek Price  <derek@ximbiot.com>
19010             Eric Blake  <ebb9@byu.net>
19011
19012         * lib/inttypes.h: Correct grammar in comment.
19013
19014 2006-04-18  Derek Price  <derek@ximbiot.com>
19015             Paul Eggert  <eggert@cs.ucla.edu>
19016
19017         * modules/inttypes: New file.
19018         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
19019
19020 2006-04-18  Derek Price  <derek@ximbiot.com>
19021             Paul Eggert  <eggert@cs.ucla.edu>
19022
19023         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
19024         New files.
19025
19026 2006-04-18  Derek Price  <derek@ximbiot.com>
19027             Paul Eggert  <eggert@cs.ucla.edu>
19028
19029         * lib/inttypes.h: New file.
19030         * lib/strtoimax.c: Assume <inttypes.h>.
19031
19032 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
19033
19034         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
19035         isn't mounted.  Problem reported by Kir Kolyshkin.
19036
19037 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
19038
19039         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
19040         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
19041         Derek R. Price.
19042         * lib/regex.h (RE_DUP_MAX): Update comment to match current
19043         implementation.
19044
19045 2006-04-12  Eric Blake  <ebb9@byu.net>
19046
19047         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
19048         is now done automatically by the corresponding Autoconf macro.
19049
19050 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
19051
19052         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
19053         time_r.h.
19054
19055 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
19056
19057         Merge regex changes from libc, removing some of our
19058         POSIX-conformance changes that were rejected and redoing them in a
19059         less-intrusive way.
19060
19061         * lib/regcomp.c (re_compile_internal, init_dfa):
19062         Length arg is now size_t, not Idx.  All uses changed.
19063         (peek_token): Forward decl now says internal_function.
19064         (__re_error_msgid, __re_error_msgid_idx):
19065         Now static rather than extern with attribute_hidden.
19066         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
19067         For some reason libc prefers K&R style defns for external functions.
19068         (regerror) [!defined _LIBC]: Likewise.
19069         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
19070         (seek_collating_symbol_entry, lookup_collation_sequence_value):
19071         (build_range_exp, build_collating_symbol):
19072         Use K&R-style defn.
19073         (re_compile_fastmap): Use '\0' to memset, not 0.
19074         (utf8_sb_map): Make the calculations more obvious.
19075         (init_dfa, parse_bracket_exp, build_charclass_op):
19076         Call calloc and cast result, as glibc does.
19077         (init_word_char, fetch_token, peek_token, peek_token_bracket):
19078         (build_range_exp, build_collating_symbol):
19079         Now internal functions.
19080
19081         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
19082
19083         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
19084         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
19085         Don't depend on VMS; depend on __VMS instead, for POSIX
19086         namespace cleanness.
19087         (regoff_t): Define to ssize_t, not long int.
19088
19089         Remove the REG_ macros named below.  Instead, make the old names
19090         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
19091         __USE_GNU_REGEX.
19092         (REG_BACKSLASH_ESCAPE_IN_LISTS):
19093         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
19094         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
19095         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
19096         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
19097         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
19098         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
19099         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
19100         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
19101         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
19102         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
19103         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
19104         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
19105         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
19106         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
19107         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
19108         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
19109         (REG_NREGS):
19110         Remove.  All uses replaced by the old RE_* names.
19111         (RE_BACKSLASH_ESCAPE_IN_LISTS):
19112         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
19113         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
19114         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
19115         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
19116         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
19117         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
19118         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
19119         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
19120         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
19121         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
19122         Don't bother having these macros be independent of each others'
19123         values, since they no longer exist in the POSIX name space.
19124
19125         Rename the following member names back to their old names,
19126         unless !__USE_GNU_REGEX.  All uses changed back.
19127         (buffer): Renamed from re_buffer.
19128         (allocated): Renamed from re_allocated.
19129         (used): Renamed from re_used.
19130         (syntax): Renamed from re_syntax.
19131         (fastmap): Renamed from re_fastmap.
19132         (translate): Renamed from re_translate.
19133         (can_be_null): Renamed from re_can_be_null.
19134         (regs_allocated): Renamed from re_regs_allocated.
19135         (fastmap_accurate): Renamed from re_fastmap_accurate.
19136         (no_sub): Renamed from re_no_sub.
19137         (not_bol): Renamed from re_not_bol.
19138         (not_eol): Renamed from re_not_eol.
19139         (newline_anchor): Renamed from re_newline_anchor.
19140         (num_regs): Renamed from rm_num_regs.
19141         (start): Renamed from rm_start.
19142         (end): Renamed from rm_end.
19143
19144         (free_state): Move up a bit.
19145
19146         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
19147         #define to be empty.
19148         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
19149         when that is what is intended.
19150         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
19151         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
19152         (MAX): New macro.
19153         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
19154         All uses changed back to re_malloc, etc.  It's now the caller's
19155         responsibility to check for overflow; all callers changed.
19156         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
19157         (re_x2nrealloc): Remove.
19158         (free_state): Remove decl.
19159
19160         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
19161         (re_set_registers, re_exec):
19162         Use K&R-style defn.
19163
19164         2006-01-31  Roland McGrath  <roland@redhat.com>
19165
19166         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
19167         Reported by Mike Frysinger <vapier@gentoo.org>.
19168
19169         2006-01-15  Andreas Jaeger  <aj@suse.de>
19170
19171         [BZ #1950]
19172         * lib/regex_internal.c (re_string_reconstruct): Adjust for
19173         build_wcs_upper_buffer change.
19174         (build_wcs_upper_buffer): Change return type.
19175
19176         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
19177
19178         * lib/regex_internal.h: Include <stdint.h> if available.
19179
19180         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
19181
19182         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
19183
19184         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
19185
19186         * lib/regcomp.c: Adjust for changed secondary hash function.
19187
19188         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
19189
19190         * lib/regex.h: Pretty printing.
19191         Clean up namespace a bit.
19192
19193         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
19194
19195         * lib/regexec.c (update_cur_sifted_state, check_arrival,
19196         check_arrival_add_next_nodes): Avoid using uninitialized variable.
19197
19198         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
19199                     Ulrich Drepper  <drepper@redhat.com>
19200
19201         [BZ #1302]
19202         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
19203         changed.
19204         (bitset_word_t): Renamed from bitset_word.  All uses changed.
19205
19206         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
19207
19208         [BZ #281]
19209         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
19210         * lib/regcomp.c: Remove unnecessary uses of
19211         unsigned RE_TRANSLATE_TYPE.
19212         * lib/regex_internal.h: Likewise.
19213         * lib/regex_internal.c: Likewise.
19214         * lib/regexec.c: Likewise.
19215         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
19216
19217         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
19218
19219         * lib/regexec.c (find_recover_state): Remove unnecessary
19220         initialization.
19221         (transit_state_bkref): Make DFA a const pointer.
19222         (get_subexp): Likewise.
19223         (check_arrival): Likewise.
19224         (update_cur_sifted_state): Likewise.
19225         (re_search_internal): Likewise.
19226         (prune_impossible_nodes): Likewise.
19227         (acquire_init_state_context): Likewise.
19228         (proceed_next_node): Likewise.
19229         (set_regs): Likewise.
19230         (free_fail_stack_return): Likewise.
19231         (check_arrival_expand_ecl): Mark DFA parameter as const.
19232         (check_arrival_expand_ecl_sub): Likewise.
19233         (check_subexp_limits): Likewise.
19234         (sub_epsilon_src_nodes):  Likewise.
19235         (add_epsilon_src_nodes):  Likewise.
19236         (merge_state_array): Likewise.
19237         (update_regs): Likewise.
19238         (build_trtable): Likewise.
19239         (sift_states_backward): Mark MCTX parameter as const.
19240         (build_sifted_states): Likewise.
19241         (update_cur_sifted_state): Likewise.
19242         (sift_states_mkref): Likewise.
19243         (check_arrival_expand_ecl): Mark eclosure as const.
19244         (check_dst_limits_calc_pos_1): Likewise.
19245         * lib/regex_internal.h (re_match_context_t): Make dfa a const
19246         pointer.
19247
19248         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
19249
19250         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
19251         (transit_state_sb): Likewise.
19252         (transit_state_mb): Likewise.
19253         (sift_states_iter_mb): Likewise.
19254         (check_arrival_add_next_nodes): Likewise.
19255         (check_node_accept_bytes): Change first parameter to pointer-to-const.
19256         [_LIBC] (re_search_2_stub): Use mempcpy.
19257
19258         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
19259         mbrtowc for very simple UTF-8 case.
19260
19261         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
19262         a pointer-to-const.
19263         (re_acquire_state_context): Likewise.
19264         * lib/regex_internal.h: Adjust prototypes.
19265
19266         * lib/regex.c: Prevent using C++ compilers.
19267
19268         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
19269         (re_acquire_state_context): Likewise.
19270
19271 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
19272
19273         * modules/regex (Depends-on): Add ssize_t.
19274
19275 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
19276
19277         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
19278         translation table.
19279
19280 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
19281
19282         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
19283
19284 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
19285             Bruno Haible  <bruno@clisp.org>
19286
19287         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
19288         <sys/types.h> and <inttypes.h>.
19289
19290 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19291
19292         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
19293         `__error_t_defined', so argp.h will not typedef the former.
19294
19295 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
19296
19297         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
19298         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
19299         glibc names.  Even if glibc is changed to conform to POSIX, the
19300         traditional names will be available anyway, since regex depends on
19301         the extensions module.  Also, fix a longstanding typo in the
19302         implementation of Spencer ERE test #75 from grep 2.3.  Problems
19303         reported by Emanuele Giaquinta.  Also, change sense of cached
19304         variable, so that the message makes sense.
19305
19306 2006-03-24  Simon Josefsson  <jas@extundo.com>
19307
19308         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
19309         including some doc fixes.
19310         (base64_encode_alloc): Fix +1 bug on allocation failures.
19311
19312 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19313
19314         * lib/base64.c (base64_encode): Do not read past end of array with
19315         unsanitized input on systems with CHAR_BIT > 8.
19316
19317 2006-03-24  Eric Blake  <ebb9@byu.net>
19318
19319         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
19320
19321 2006-03-22  Karl Berry  <karl@gnu.org>
19322
19323         * config/srclist.txt (*setenv.[ch]): get from coreutils.
19324         * config/srclistvars.sh (COREUTILS): new var.
19325
19326 2006-03-17  Jim Meyering  <jim@meyering.net>
19327
19328         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
19329         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
19330
19331 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
19332
19333         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
19334         no longer needs it.  Instead, check that regoff_t is as least
19335         as wide as ptrdiff_t.
19336
19337         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
19338         so that our regex.h stays compatible with the installed regex.
19339         This is helpful for installers who configure --without-included-regex.
19340         Problem reported by Emanuele Giaquinta.
19341
19342 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
19343
19344         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
19345         Typedef to long int, not to off_, as POSIX will likely change
19346         in that direction.
19347
19348 2006-03-15  Eric Blake  <ebb9@byu.net>
19349
19350         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
19351
19352 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
19353
19354         * lib/argp-help.c (validate_uparams): Fix typo
19355         * lib/argp-parse.c (argp_default_options): Consistently begin help
19356         messages with a lowercase letter.
19357
19358 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
19359
19360         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
19361         overrun buffers and shouldn't be used (much as gets shouldn't be
19362         used).
19363         * lib/time_r.c (asctime_r, ctime_r): Likewise.
19364
19365 2006-03-08  Simon Josefsson  <jas@extundo.com>
19366
19367         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
19368         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19369
19370 2006-03-08  Simon Josefsson  <jas@extundo.com>
19371
19372         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
19373         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19374
19375 2006-03-08  Simon Josefsson  <jas@extundo.com>
19376
19377         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
19378         signal that configure disabled the device.
19379
19380 2006-03-08  Simon Josefsson  <jas@extundo.com>
19381
19382         * build-aux/maint.mk: Fix refresh-po, to handle no translated
19383         languages.
19384
19385 2006-03-07  Simon Josefsson  <jas@extundo.com>
19386
19387         * modules/getopt (Depends-on): Add unistd.
19388
19389         * modules/unistd: New file.
19390
19391 2006-03-07  Simon Josefsson  <jas@extundo.com>
19392
19393         * modules/gc-random: New file.
19394
19395 2006-03-07  Simon Josefsson  <jas@extundo.com>
19396
19397         * m4/unistd_h.m4: New file.
19398
19399 2006-03-07  Simon Josefsson  <jas@extundo.com>
19400
19401         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
19402         test to be side-effect free by storing the result in the cache
19403         variable gl_cv_lib_readline, and moving the assignment of
19404         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
19405         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19406
19407 2006-03-07  Simon Josefsson  <jas@extundo.com>
19408
19409         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
19410         error on missing devices (the functions will return an error).
19411
19412         * m4/gc.m4: Move random stuff to gc-random.m4
19413
19414 2006-03-07  Simon Josefsson  <jas@extundo.com>
19415
19416         * lib/unistd_.h: New file.
19417
19418 2006-03-07  Simon Josefsson  <jas@extundo.com>
19419
19420         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
19421
19422 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
19423
19424         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
19425         Problem reported by Juan Manuel Guerrero.
19426
19427 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
19428
19429         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
19430         the unistd module.
19431         * lib/getlogin_r.c: Likewise.
19432         * lib/getlogin_r.h: Likewise.
19433         * lib/glob.c: Likewise.
19434         * lib/pagealign_alloc.c: Likewise.
19435         * lib/unistd_.h: Remove; no longer needed.
19436
19437 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
19438
19439         * MODULES.html.sh (Support for systems lacking POSIX:2001):
19440         Add unistd.
19441         * modules/c-stack (Depends-on): Add unistd.
19442         * modules/getlogin_r: Likewise.
19443         * modules/glob: Likewise.
19444         * modules/pagealign_alloc: Likewise.
19445         * modules/unistd (Files): Remove lib/unistd_.h.
19446         (EXTRA_DIST): Remove.
19447         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
19448         need unistd_.h.
19449         (MOSTLYCLEANFILES): Remove unistd.h-t.
19450
19451 2006-03-03  Simon Josefsson  <jas@extundo.com>
19452
19453         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
19454
19455 2006-03-03  Simon Josefsson  <jas@extundo.com>
19456
19457         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
19458         libidn and bison.
19459
19460 2006-03-03  Simon Josefsson  <jas@extundo.com>
19461
19462         * build-aux/maint.mk: Add indent target.
19463
19464 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
19465
19466         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
19467         our replacement poll.h in any case, to avoid a differing
19468         declaration from a system header.  Seen on AIX.
19469
19470 2006-03-01  Simon Josefsson  <jas@extundo.com>
19471
19472         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
19473         <kasal@ucw.cz>.
19474
19475 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19476
19477         * modules/gettime (Depends-on): Add extensions module.
19478         * modules/nanosleep (Depends-on): Likewise.
19479         * modules/settime (Depends-on): Likewise.
19480
19481 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19482
19483         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
19484         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
19485         pedantically.
19486         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
19487         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
19488
19489         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
19490         not "==".  Reported by Ralf Wildenhues.
19491
19492 2006-03-01  Karl Berry  <karl@gnu.org>
19493
19494         * doc/Copyright/request-*: new files, synced from gnuorg.
19495
19496 2006-03-01  Karl Berry  <karl@gnu.org>
19497
19498         * config/srclist.txt (Copyright/*): new entries.
19499
19500 2006-02-28  Simon Josefsson  <jas@extundo.com>
19501
19502         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
19503
19504 2006-02-27  Simon Josefsson  <jas@extundo.com>
19505
19506         * lib/base64.h: Indent #define's.  From Jim Meyering
19507         <jim@meyering.net>.
19508
19509 2006-02-27  Jim Meyering  <jim@meyering.net>
19510
19511         Revert the change of 2006-02-24, so these files can continue
19512         to be sync'd from gettext.
19513         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
19514         of `config.h'.
19515
19516 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
19517
19518         * modules/intprops: New file.
19519         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
19520         Add intprops.
19521         * modules/getloadavg (Files): Remove lib/intprops.h.
19522         (Depends-on): Add intprops.
19523         * modules/human: Likewise.
19524         * modules/inttostr: Likewise.
19525         * modules/openat: Likewise.
19526         * modules/sig2str: Likewise.
19527         * modules/userspec: Likewise.
19528         * modules/utimecmp: Likewise.
19529         * modules/xnanosleep: Likewise.
19530         * modules/xstrtol: Likewise.
19531
19532 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
19533
19534         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
19535         * modules/lock-tests (TESTS): Use $(EXEEXT).
19536         * modules/tls-tests: Likewise.
19537         * modules/argp-tests: Likewise.
19538         (check_PROGRAMS): New var, replacing...
19539         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
19540
19541 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19542
19543         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
19544         `config.h'.
19545
19546 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
19547
19548         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
19549
19550 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19551
19552         Sync from coreutils.
19553         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
19554         gl_CHDIR_SAFER.
19555
19556 2006-02-22  Jim Meyering  <jim@meyering.net>
19557
19558         Sync from coreutils.
19559         * m4/chdir-safer.m4: New file.
19560
19561 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
19562
19563         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
19564         AT_FDCWD exceeds INT_MAX.
19565         * lib/openat.h (AT_FDCWD): Likewise.
19566
19567 2006-02-17  Eric Blake  <address@hidden>
19568
19569         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
19570
19571 2006-02-16  Simon Josefsson  <jas@extundo.com>
19572
19573         * modules/getaddrinfo (Depends-on): Add sys_socket.
19574
19575 2006-02-15  Simon Josefsson  <jas@extundo.com>
19576
19577         * build-aux/maint.mk: Add dsyntax-check rule.
19578
19579 2006-02-15  Eric Blake  <ebb9@byu.net>
19580
19581         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
19582         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
19583         'present but cannot compile' warnings on cygwin.
19584         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
19585         use ws2tcpip.h if sys/socket.h works.
19586         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
19587         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
19588
19589 2006-02-14  Simon Josefsson  <jas@extundo.com>
19590
19591         * modules/maintainer-makefile (Files): Rename.
19592
19593         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
19594         and (the local) Makefile.cfg to maint-cfg.mk.
19595
19596         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
19597         to the latter.
19598
19599         * modules/maintainer-makefile: New module.
19600
19601         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
19602         severaly stripped to make it possible to build it up from scratch
19603         with reliable tests.
19604
19605         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
19606         fixes to permit overriding the default actions when configure and
19607         makefile are not available.
19608
19609 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
19610
19611         Sync from coreutils.
19612         * modules/lstat (Depends-on): Don't depend on xalloc.
19613         (License): Change from GPL to LGPL, since this is now simply a
19614         replacement for a libc function.
19615
19616 2006-02-14  Jim Meyering  <jim@meyering.net>
19617
19618         Sync from coreutils.
19619
19620         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
19621         failure on deficient systems, and simplify gnulib lgpl dependencies.
19622         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
19623         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
19624
19625         * lib/xalloc-die.c: Remove unused definition of N_.
19626
19627 2006-02-14  Jim Meyering  <jim@meyering.net>
19628
19629         Sync from coreutils.
19630         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
19631         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
19632         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
19633         double-quote uses of that variable, to accommodate the rare case in
19634         which getmntent is available in none of the libraries checked.  This
19635         happens at least on FreeBSD 5.0.
19636
19637 2006-02-13  Simon Josefsson  <jas@extundo.com>
19638
19639         * gnulib-tool (Usage): Fix --import, from
19640         karl@freefriends.org (Karl Berry).
19641
19642 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
19643
19644         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
19645
19646 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
19647
19648         * lib/argp-namefrob.h: Restore changes accidentally lost during the
19649         "autoupdate" on 2005-12-12.
19650
19651 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
19652
19653         * modules/closeout (Depends-on): Remove atexit.
19654
19655 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
19656
19657         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
19658         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
19659
19660 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
19661
19662         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
19663         __EXTENSIONS__ if this causes compilation to fail.  Problem
19664         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
19665         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
19666
19667 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
19668
19669         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
19670         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
19671         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
19672         All uses changed.
19673
19674 2006-01-26  Simon Josefsson  <jas@extundo.com>
19675
19676         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
19677         prototype is visible on mingw32.
19678
19679         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
19680         for mingw32.
19681
19682         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
19683         mingw32).
19684
19685 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
19686
19687         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
19688         attempt to open for write; this always fails, at least on POSIX
19689         hosts.  This reinstates the 2006-01-09 change, which was
19690         inadvertently removed.
19691
19692 2006-01-26  Bruno Haible  <bruno@clisp.org>
19693
19694         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
19695         Reported by Paul Eggert.
19696
19697 2006-01-26  Bruno Haible  <bruno@clisp.org>
19698             Paul Eggert  <eggert@cs.ucla.edu>
19699
19700         * lib/stdbool_.h (_Bool)
19701         [(! (defined __cplusplus || defined __BEOS__)
19702           && !defined __GNUC__
19703           && !(defined __HP_cc || defined __xlc__
19704                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
19705                || defined __sgi))]:
19706         #define to signed char in these cases too; this simplifies
19707         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
19708         etc., separately) and makes it more conservative.
19709
19710 2006-01-25  Simon Josefsson  <jas@extundo.com>
19711
19712         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
19713         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
19714         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
19715
19716 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
19717
19718         * lib/argp-namefrob.h: Bugfix. Remove stray #
19719
19720 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
19721
19722         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
19723         so that we test the test.
19724         Check for yet another HP-UX cc bug involving *bool |= bool.
19725
19726 2006-01-25  Karl Berry  <karl@gnu.org>
19727
19728         * config/srclist.txt (vasnprintf.c): sync lost.
19729
19730 2006-01-25  Jim Meyering  <jim@meyering.net>
19731
19732         Sync from the stable (b5) branch of coreutils:
19733
19734         * lib/fts.c (fts_children): Don't let close() clobber errno from
19735         failed fchdir().
19736
19737         * lib/fts.c (fts_stat): When following a symlink-to-directory,
19738         don't necessarily interpret stat-fails+lstat-succeeds as indicating
19739         a dangling symlink.  That can also happen at least for ELOOP.
19740         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
19741         FYI, this bug predates the inclusion of fts.c in coreutils.
19742
19743         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
19744         in their own block, so pre-c99 compilers don't object.
19745
19746         Avoid the double-free (first in fts_read, second in fts_close) that
19747         would occur when an `active' directory is made inaccessible (e.g.,
19748         via chmod a-x) during a traversal.
19749         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
19750         before returning.  Reproduce this failure by
19751         mkdir -p a/b; cd a; chmod a-x . b
19752         Reported by Stavros Passas.
19753
19754 2006-01-25  Jim Meyering  <jim@meyering.net>
19755
19756         * lib/fileblocks.c: Remove more useless parentheses.
19757         * lib/readutmp.h: Likewise.
19758
19759 2006-01-25  Bruno Haible  <bruno@clisp.org>
19760
19761         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
19762         warnings.
19763         Reported by Paul Eggert.
19764
19765 2006-01-25  Bruno Haible  <bruno@clisp.org>
19766
19767         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
19768         rid of a trap command. For Solaris sh.
19769         Reported by Mark D. Baushke <mdb@gnu.org>.
19770
19771 2006-01-24  Simon Josefsson  <jas@extundo.com>
19772
19773         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
19774         Bruno.
19775
19776 2006-01-24  Karl Berry  <karl@gnu.org>
19777
19778         * config/srclist.txt (argp-namefrob.h): sync lost.
19779
19780 2006-01-24  Jim Meyering  <jim@meyering.net>
19781
19782         * modules/openat (Files): Add lib/intprops.h.
19783         From Mark D. Baushke.
19784
19785 2006-01-24  Jim Meyering  <jim@meyering.net>
19786
19787         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
19788         Reported by Mark D. Baushke.
19789
19790 2006-01-24  Jim Meyering  <jim@meyering.net>
19791
19792         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
19793
19794 2006-01-24  Bruno Haible  <bruno@clisp.org>
19795
19796         * modules/strnlen (Maintainer): Change from glibc to all.
19797
19798 2006-01-24  Bruno Haible  <bruno@clisp.org>
19799
19800         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
19801         Patch by Paul Eggert.
19802
19803 2006-01-24  Bruno Haible  <bruno@clisp.org>
19804
19805         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
19806         already has it.
19807         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
19808         2005-11-26.
19809
19810         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
19811         'signed char' to avoid problems with the built-in _Bool type.
19812         Reported by Paul Eggert on 2005-11-26.
19813
19814 2006-01-24  Bruno Haible  <bruno@clisp.org>
19815
19816         * gnulib-tool (func_import): Avoid constructing complicated sed
19817         expressions inside backquote.
19818         Report and solution by Mark D. Baushke <mdb@gnu.org>.
19819
19820 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
19821
19822         These changes imported from libc.
19823         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
19824         test and two separate function calls.
19825         * lib/strndup.c (__strndup): Add libc_hidden_def.
19826
19827 2006-01-23  Simon Josefsson  <jas@extundo.com>
19828
19829         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
19830         Remove the test_*_SOURCES variable: automake infers it by default.
19831         * modules/tls-tests: Likewise.
19832
19833 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19834
19835         Work around porting bugs reported by Dieter in
19836         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
19837         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
19838         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
19839         Include "getopt.h" first, to check interface.
19840         (getenv): Declare only if defined HAVE_DECL_GETENV &&
19841         !HAVE_DECL_GETENV.
19842         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
19843         (__strndup): Revert to K&R-style function dfns, the glibc style.
19844         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
19845         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
19846         Include strnlen.h first, to get prototype properly.
19847         (strnlen): Renamed from __strnlen.
19848         Remove weak alias.
19849
19850 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19851
19852         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
19853
19854 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19855
19856         * config/srclist.txt: Adjust to reflect glibc reorganization.
19857         This affects only comments.
19858
19859 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
19860
19861          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
19862          Reported by Bruce Korb <bkorb@gnu.org>.
19863
19864 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
19865
19866         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
19867         to pacify gcc -Wswitch-default.
19868
19869 2006-01-22  Bruno Haible  <bruno@clisp.org>
19870
19871         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
19872         temporary buffer for sprintf, take into account the precision also
19873         for 'd', 'i', 'u', 'o', 'x', 'X'.
19874
19875 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
19876
19877         * modules/argp-tests: New module
19878         * tests/test-argp.c: New file
19879         * tests/test-argp-2.sh: New file
19880
19881 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
19882
19883         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
19884         (__argp_base_name): Removed
19885         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
19886         typo.
19887         (__argp_base_name): Provide macro definition or extern declaration
19888         depending on the configuration
19889
19890 2006-01-20  Simon Josefsson  <jas@extundo.com>
19891
19892         * modules/inet_ntop (Depends-on): Depend on sys_socket.
19893
19894 2006-01-20  Simon Josefsson  <jas@extundo.com>
19895
19896         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
19897
19898 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19899
19900         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
19901         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
19902         Suggested by Bruno Haible.
19903
19904 2006-01-20  Karl Berry  <karl@gnu.org>
19905
19906         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
19907         until changes propagate, I guess.
19908
19909 2006-01-19  Simon Josefsson  <jas@extundo.com>
19910
19911         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
19912
19913 2006-01-19  Simon Josefsson  <jas@extundo.com>
19914
19915         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
19916
19917 2006-01-19  Simon Josefsson  <jas@extundo.com>
19918
19919         * gnulib-tool: Set check_PROGRAMS.
19920
19921         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
19922         modules/des-tests, modules/gc-arcfour-tests,
19923         modules/gc-arctwo-tests, modules/gc-des-tests,
19924         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
19925         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
19926         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
19927         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
19928         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
19929         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
19930         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
19931         test_*_SOURCES.
19932
19933 2006-01-18  Simon Josefsson  <jas@extundo.com>
19934
19935         * modules/socklen (Depends-on): Depend on sys_socket.
19936
19937 2006-01-18  Simon Josefsson  <jas@extundo.com>
19938
19939         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
19940         modules/des-tests, modules/gc-arcfour-tests,
19941         modules/gc-arctwo-tests, modules/gc-des-tests,
19942         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
19943         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
19944         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
19945         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
19946         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
19947         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
19948         $(EXEEXT) to automake TESTS variable, for mingw32.
19949
19950 2006-01-17  Simon Josefsson  <jas@extundo.com>
19951
19952         * modules/socklen (Include): Need sys/socket.h.
19953
19954 2006-01-17  Bruno Haible  <bruno@clisp.org>
19955
19956         * modules/ssize_t (Include): Add <sys/types.h>.
19957
19958 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
19959
19960         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
19961         it's not portable and it doesn't work with cross-compiles.
19962         Problem reported by Bruno Haible.  Fix missing-$ typo in
19963         'test "gl_cv_ignore_unused_libraries" ...' that prevented
19964         -zignore from being used with Sun's C compiler.
19965
19966 2006-01-12  Simon Josefsson  <jas@extundo.com>
19967
19968         * lib/base64.c: Fix warning, reported by Bruno Haible
19969         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
19970
19971 2006-01-12  Bruno Haible  <bruno@clisp.org>
19972
19973         * modules/ldd: New file.
19974         * build-aux/ldd.sh.in: New file.
19975         * MODULES.html.sh (Support for building libraries and executables): Add
19976         ldd.
19977
19978 2006-01-12  Bruno Haible  <bruno@clisp.org>
19979
19980         * m4/ldd.m4: New file.
19981
19982 2006-01-12  Bruno Haible  <bruno@clisp.org>
19983
19984         * gnulib-tool (func_import, func_create_testdir): Don't go into an
19985         endless loop while replacing $auxdir with build-aux.
19986
19987 2006-01-11  Simon Josefsson  <jas@extundo.com>
19988
19989         * lib/stdint_.h (SIZE_MAX): Add missing (.
19990
19991 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
19992
19993         Sync from coreutils.
19994         * lib/md5.c: Fix commentary typos.
19995         (alignof, UNALIGNED_P): No need for a GCC-specific version.
19996         * lib/md5.h (__attribute__): Remove; unused.
19997         * lib/sha1.c: Fix commentary to match md5 better.
19998         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
19999         so that we don't need to worry about alignment.  All uses changed.
20000         This merges the 2005-10-28 md5 change into sha1.
20001
20002 2006-01-11  Jim Meyering  <jim@meyering.net>
20003
20004         Sync from coreutils.
20005         * lib/md5.c (OP): Fix spacing.
20006
20007 2006-01-11  Bruno Haible  <bruno@clisp.org>
20008
20009         Ensure automatic ordering between gl_LOCK and gl_ARGP.
20010         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
20011         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
20012
20013 2006-01-11  Bruno Haible  <bruno@clisp.org>
20014
20015         Ensure automatic ordering between gl_LOCK and gl_ARGP.
20016         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
20017         the "early" section as well.
20018
20019 2006-01-11  Bruno Haible  <bruno@clisp.org>
20020
20021         Avoid "ar: no archive members specified" error on MacOS X.
20022         * gnulib-tool (func_modules_add_dummy): New function.
20023         (func_import, func_create_testdir): Invoke it.
20024
20025 2006-01-11  Bruno Haible  <bruno@clisp.org>
20026
20027         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
20028         with $auxdir in AC_CONFIG_FILES statements.
20029
20030 2006-01-11  Bruno Haible  <bruno@clisp.org>
20031
20032         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20033         Initialize also noinst_HEADERS to empty.
20034
20035 2006-01-11  Bruno Haible  <bruno@clisp.org>
20036
20037         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
20038         variables.
20039         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
20040         autoreconf.
20041
20042 2006-01-11  Bruno Haible  <bruno@clisp.org>
20043
20044         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
20045         overridable by the user.
20046         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20047
20048 2006-01-10  Simon Josefsson  <jas@extundo.com>
20049
20050         * modules/sys_socket: New file.
20051
20052 2006-01-10  Simon Josefsson  <jas@extundo.com>
20053
20054         * m4/sys_socket_h.m4: New file.
20055
20056 2006-01-10  Simon Josefsson  <jas@extundo.com>
20057
20058         * lib/socket_.h: New file.
20059
20060 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
20061
20062         * modules/readutmp (Maintainer): Add myself.
20063
20064 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
20065
20066         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
20067         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
20068         People who are still concerned with buggy memcmp implementations
20069         can invoke gl_FUNC_MEMCMP themselves.
20070
20071 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
20072
20073         * lib/regex_internal.h (BITSET_WORD_BITS):
20074         Work around a bug in 64-bit PGC (before version 6.1-2), where the
20075         preprocessor mishandles large unsigned values as if they were signed.
20076         Problem reported by Claudio Fontana in
20077         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
20078
20079 2006-01-10  Jim Meyering  <jim@meyering.net>
20080
20081         Avoid the double-free (first in fts_read, second in fts_close) that
20082         would occur when an `active' directory is made inaccessible (e.g.,
20083         via chmod a-x) during a traversal.
20084         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
20085         before returning.  Reproduce this failure by
20086         mkdir -p a/b; cd a; chmod a-x . b
20087         Reported by Stavros Passas.
20088
20089         Sync from coreutils.
20090         * lib/sha1.c: Tweak grammar in a comment.
20091
20092 2006-01-10  Jim Meyering  <jim@meyering.net>
20093
20094         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
20095         Patch by Joerg Sonnenberger.
20096
20097 2006-01-10  Bruno Haible  <bruno@clisp.org>
20098
20099         * modules/readutmp: Depend on module free.
20100         * modules/strtok_r: Depend on module restrict.
20101
20102 2006-01-10  Bruno Haible  <bruno@clisp.org>
20103
20104         * modules/gettext (configure.ac): Add an invocation of
20105         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
20106
20107 2006-01-10  Bruno Haible  <bruno@clisp.org>
20108
20109         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
20110         Reported by Werner Lemberg <wl@gnu.org>.
20111
20112 2006-01-10  Bruno Haible  <bruno@clisp.org>
20113
20114         * lib/localcharset.c: Update from GNU gettext.
20115
20116 2006-01-10  Bruno Haible  <bruno@clisp.org>
20117
20118         * lib/argp.h (__const): Remove macro. Use const instead.
20119         * lib/argp-fmtstream.h (__const): Likewise.
20120         * lib/glob_.h (__const): Remove macro.
20121         * lib/glob-libc.h: Use const instead of __const.
20122
20123 2006-01-10  Bruno Haible  <bruno@clisp.org>
20124
20125         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
20126         variable.
20127         Needed to avoid an automake error regarding the 'gettext' module.
20128
20129 2006-01-09  Simon Josefsson  <jas@extundo.com>
20130
20131         * modules/inet_ntop (Depends-on): Add restrict.
20132
20133 2006-01-09  Simon Josefsson  <jas@extundo.com>
20134
20135         * modules/gc-rijndael-tests (License): Put under LGPL.
20136
20137         * modules/gc-des-tests (License): Likewise.
20138
20139         * modules/gc-arcfour-tests (License): Likewise.
20140
20141         * modules/gc-arctwo-tests (License): Likewise.
20142
20143         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
20144
20145         * modules/gc-hmac-sha1-tests (Files): Likewise.
20146
20147         * modules/gc-hmac-md5-tests (License): Likewise.
20148
20149         * modules/gc-sha1-tests (License): Likewise.
20150
20151         * modules/gc-md5-tests (License): Likewise.
20152
20153         * modules/gc-md4-tests (License): Likewise.
20154
20155         * modules/gc-md2-tests (License): Likewise.
20156
20157         * modules/gc-tests (License): Likewise.
20158
20159         * modules/des-tests (License): Likewise.
20160
20161         * modules/md4-tests (License): Likewise.
20162
20163         * modules/md2-tests (License): Likewise.
20164
20165 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
20166
20167         Sync from coreutils:
20168
20169         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
20170         * modules/lib-ignore: New file.
20171         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
20172         chdir-safer.m4, lchmod.m4.
20173         * modules/openat: Add mkdirat.c, openat-priv.h.
20174
20175 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
20176
20177         Sync from coreutils.
20178         * m4/lib-ignore.m4: New file.
20179         * m4/lchmod.m4: New file.
20180
20181 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
20182
20183         Sync from coreutils.
20184         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
20185         for write access: POSIX says that must fail.
20186         * lib/fts.c (diropen): Likewise.
20187         * lib/save-cwd.c (save_cwd): Likewise.
20188         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
20189         well, for minor improvements on hosts that lack O_DIRECTORY.
20190         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
20191         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
20192         Fall back on chown if open failed with EACCES.
20193
20194         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
20195         Report an error at compile-time if only a 1-second nominal clock
20196         resolution is found.
20197
20198         * lib/lchmod.h: New file.
20199         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
20200         (make_dir_parents): Use lchown rather than chown, and
20201         lchmod rather than chmod.
20202
20203         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
20204         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
20205         "proc" reported by n0dalus.
20206
20207         * lib/mountlist.c: Include <limits.h>.
20208         (dev_from_mount_options)
20209         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
20210         New function.  It no longer assumes "dev=" has the System V meaning
20211         on Linux (since it doesn't).  It also parses "dev=" more carefully.
20212         (read_file_system_list)
20213         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
20214         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
20215         dev= in that case.
20216
20217         * lib/posixtm.h (PDS_PRE_2000): New macro.
20218         * lib/posixtm.c (year): Arg is now syntax_bits rather than
20219         allow_century.  All usages changed.  Reject dates outside the range
20220         1969-1999 if PDS_PRE_2000 is used.
20221
20222 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
20223
20224         Sync from coreutils.
20225         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
20226         (Time of day items): Mention the possibility of leap seconds.
20227         Problem reported by Dr. David Alan Gilbert.
20228
20229 2006-01-09  Jim Meyering  <jim@meyering.net>
20230
20231         Sync from coreutils.
20232
20233         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
20234
20235         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
20236
20237         * lib/modechange.c (mode_compile): Reject an invalid mode string
20238         that starts with an octal digit.  From Andreas Gruenbacher.
20239
20240         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
20241         and dup to open_safer and dup_safer, respectively.
20242         (openat_permissive): Fix typo in comment.
20243
20244         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
20245         "gettext.h"; either no longer needed or are guaranteed by openat.h.
20246         (_): Remove; no longer needed.
20247         (openat): Renamed from rpl_openat; no need for rpl_openat
20248         since openat.h renames openat for us.
20249         Replace most of the body with a call to openat_permissive,
20250         to avoid duplicate code.
20251         Port to (probably hypothetical) environments were mode_t is
20252         wider than int.
20253         (openat_permissive): Require mode arg, so that we can check
20254         types better.  Put it just after flags.  Change cwd failure
20255         indicator from pointer-to-bool to pointer-to-errno-value.
20256         All callers changed.
20257         Invoke openat_save_fail and/or openat_restore_fail if
20258         cwd_errno is null, so that openat can call us.
20259         (openat_permissive, fdopendir, fstatat, unlinkat):
20260         Simplify errno handling to avoid some duplicate code,
20261         as it's OK to set errno on success.
20262         * lib/openat.h: Revamp code so that function macros depend on
20263         __OPENAT_PREFIX only, not also on AT_FDCWD.
20264         (openat_ro): Remove.  Caller changed to use openat_permissive.
20265         (openat_permissive): Now a macro, if not a function.
20266         (openat_restore_fail, openat_save_fail): Now always functions,
20267         since mkdirat needs them even if __OPENAT_PREFIX is defined.
20268
20269         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
20270         and openat.c.
20271         * lib/mkdirat.c: Include openat-priv.h.
20272         Remove definitions of macros defined therein.
20273         * lib/openat.c: Likewise.
20274
20275         * lib/mkdirat.c (mkdirat): New file and function.
20276         * lib/openat.h (mkdirat): Declare.
20277
20278         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
20279
20280         * lib/openat.h (openat_permissive): Declare.
20281         (openat_ro): Define.
20282
20283         * lib/openat.c (EXPECTED_ERRNO): New macro.
20284         (openat_permissive): New function -- used in remove.c rewrite.
20285         (all functions): Set errno just before returning, only if there
20286         was an actual failure.
20287         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
20288
20289         Emulate openat-family functions using Linux's procfs, if possible.
20290         Idea and some code based on Ulrich Drepper's glibc changes.
20291
20292         * lib/openat.c: (BUILD_PROC_NAME): New macro.
20293         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
20294         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
20295         before falling back on save_cwd and restore_cwd.
20296         (fdopendir, fstatat, unlinkat): Likewise.
20297
20298         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
20299         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
20300
20301         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
20302         as second argument to va_arg.  Otherwise, some versions of gcc
20303         warn that `if this code is reached, the program will abort'.
20304
20305 2006-01-09  Jim Meyering  <jim@meyering.net>
20306
20307         Sync from coreutils.
20308         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
20309         Require openat-priv.h.
20310
20311 2006-01-09  Bruno Haible  <bruno@clisp.org>
20312
20313         * modules/strnlen (Include): Use strnlen.h.
20314
20315 2006-01-09  Bruno Haible  <bruno@clisp.org>
20316
20317         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
20318
20319 2006-01-09  Bruno Haible  <bruno@clisp.org>
20320
20321         * lib/sysexit_.h (EX_OK): New macro.
20322         Suggested by Martin Lambers <marlam@marlam.de>.
20323
20324 2006-01-09  Bruno Haible  <bruno@clisp.org>
20325
20326         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
20327         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
20328
20329 2006-01-09  Bruno Haible  <bruno@clisp.org>
20330
20331         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
20332         numbers.
20333
20334 2006-01-09  Bruno Haible  <bruno@clisp.org>
20335
20336         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
20337         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
20338         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
20339         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
20340
20341 2006-01-09  Bruno Haible  <bruno@clisp.org>
20342
20343         * build-aux/javacomp.sh.in: New file, moved from lib/.
20344         * modules/javacomp-script (Files): Update.
20345         (configure.ac): Add AC_CONFIG_FILES invocation.
20346         (EXTRA_DIST): Remove variable.
20347
20348         * build-aux/javaexec.sh.in: New file, moved from lib/.
20349         * modules/javaexec (Files): Update.
20350         (configure.ac): Add AC_CONFIG_FILES invocation.
20351         (EXTRA_DIST): Remove javaexec.sh.in.
20352
20353         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
20354         * modules/csharpcomp-script (Files): Update.
20355         (configure.ac): Add AC_CONFIG_FILES invocation.
20356         (EXTRA_DIST): Remove variable.
20357
20358         * build-aux/csharpexec.sh.in: New file, moved from lib/.
20359         * modules/csharpexec (Files): Update.
20360         (configure.ac): Add AC_CONFIG_FILES invocation.
20361         (EXTRA_DIST): Remove csharpexec.sh.in.
20362
20363 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
20364
20365         Sync from coreutils.
20366
20367         Add POSIX ACL support
20368         * lib/acl.h (copy_acl, set_acl): Add declarations.
20369         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
20370         systems other than Linux.
20371         (chmod_or_fchmod): New function: use fchmod when possible,
20372         and chmod otherwise.
20373         (file_has_acl): Add a POSIX ACL implementation, with a
20374         Linux-specific subcase.
20375         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
20376         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
20377         acls are unsupported.
20378         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
20379         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
20380         are unsupported.
20381
20382 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
20383
20384         Sync from coreutils.
20385         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
20386
20387 2006-01-07  Bruno Haible  <bruno@clisp.org>
20388
20389         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
20390         gl_EARLY.
20391
20392 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
20393
20394         * lib/strftime.c (tzname): Don't declare if it is already #defined.
20395         Problem reported for Mingw by Mark Junker.
20396
20397 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
20398
20399         * README: Gnulib normally doesn't generate a tarball.
20400
20401 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
20402
20403         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
20404         long int, not int, for nanosecond counts, so that people who are
20405         used to POSIX struct timespec won't be surprised.  Reported by Jim
20406         Meyering.
20407
20408 2005-12-28  Bruno Haible  <bruno@clisp.org>
20409
20410         * build-aux/config.rpath: Update from GNU gettext.
20411
20412 2005-12-16  Jim Meyering  <jim@meyering.net>
20413
20414         * modules/fprintftime: New module.
20415         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
20416
20417 2005-12-16  Jim Meyering  <jim@meyering.net>
20418
20419         * m4/fprintftime.m4: New file.
20420
20421 2005-12-16  Jim Meyering  <jim@meyering.net>
20422
20423         * lib/fprintftime.c, lib/fprintftime.h: New files.
20424
20425 2005-12-15  Simon Josefsson  <jas@extundo.com>
20426
20427         * modules/socklen (configure.ac): Fix M4 macro name, to align with
20428         new m4/socklen.m4.
20429
20430 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
20431
20432         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
20433         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
20434
20435 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
20436
20437         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
20438         * lib/argp-help.c (fill_in_uparams): Check if the constructed
20439         struct uparams is valid. Fall back to the default values if it is
20440         not.
20441
20442 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
20443
20444         * modules/argp (Files): Add argp-pin.c
20445         (Depends-on): dirname
20446         (lib_SOURCES): Add argp-pin.c
20447
20448 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
20449
20450         * m4/argp.m4:  Check if program_invocation_name and
20451         program_invocation_short_name are declared and define appropriate
20452         macros if they are not.
20453
20454 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
20455
20456         * lib/argp-help.c (__argp_base_name): New function
20457         (__argp_short_program_name): Rewrite using __argp_base_name
20458         * lib/argp-namefrob.h: Define program_invocation_name and
20459         program_invocation_short_name if requested
20460         (__argp_base_name): Add prototype
20461         * lib/argp-parse.c (argp_def): Use gettext wrappers
20462         (argp_default_parser): Use __argp_base_name
20463         * lib/argp-pin.c: New file. Defines program_invocation_name and
20464         program_invocation_short_name on systems that lack them.
20465
20466 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
20467
20468         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
20469         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
20470         porting problem reported by Georg Schwarz in
20471         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
20472
20473 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
20474
20475         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
20476         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
20477         porting problem reported by Georg Schwarz in
20478         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
20479
20480 2005-12-05  Bruno Haible  <bruno@clisp.org>
20481
20482         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
20483         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
20484         Reported by Mark Junker <mjscod@gmx.de>.
20485
20486 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
20487
20488         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
20489         Use implementation from Albert Chin, with some
20490         comments/corrections by Stepan Kasal and myself.
20491
20492 2005-12-02  Bruno Haible  <bruno@clisp.org>
20493
20494         * gnulib-tool (func_import): Accept GPLed build tool modules when
20495         --lgpl is given.
20496         * modules/csharpcomp-script: New file.
20497         * modules/csharpcomp: Depend on it.
20498         * modules/javacomp-script: New file.
20499         * modules/javacomp: Depend on it.
20500         Suggested by Simon Josefsson.
20501
20502 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
20503
20504         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
20505         statement, to work around an HP-UX 10.20 compiler bug reported by
20506         Peter O'Gorman.
20507
20508 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
20509
20510         * modules/savedir (Depends-on): Add openat.
20511
20512 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
20513
20514         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
20515         (uintmax_t) [defined uintmax_t]: Do not declare.
20516         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
20517         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
20518         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
20519         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
20520         sake of portability to weird hosts that C allows (though we don't
20521         know of any practical examples).
20522
20523         * lib/savedir.h (fdsavedir): New decl.
20524         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
20525         contains most of the former guts of savedir.
20526         (savedir): Use savedirstream.
20527         Include "openat.h".
20528
20529 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
20530
20531         * modules/obstack (Files): Add m4/ulonglong.m4.
20532         Problem reported by Davide Angelocola.
20533
20534 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
20535
20536         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
20537         coreutils no longer futzes with rounding modes.
20538
20539 2005-11-14  Jim Meyering  <jim@meyering.net>
20540
20541         * lib/mkstemp-safer.c: Include <config.h>, required for possible
20542         replacement of mkstemp.
20543
20544 2005-11-10  Simon Josefsson  <jas@extundo.com>
20545
20546         * lib/readline.c: Remove EOL.
20547
20548 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20549
20550         * modules/gethrxtime (Depends-on): Add gettime.
20551
20552 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20553
20554         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
20555         or gettimeofday; no longer needed.
20556
20557 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20558
20559         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
20560         time business.
20561         (gethrxtime) [! (HAVE_NANOUPTIME
20562         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
20563         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
20564         our own approximation.
20565
20566 2005-11-08  Eric Blake  <ebb9@byu.net>
20567
20568         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
20569
20570 2005-11-08  Eric Blake  <ebb9@byu.net>
20571
20572         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
20573
20574 2005-11-04  Bruno Haible  <bruno@clisp.org>
20575
20576         * gnulib-tool: Implement --update mode.
20577
20578 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
20579
20580         Fix porting problem reported by Theodoros V. Kalamatianos.
20581         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
20582         Don't assume that futimes failing means we must fail.
20583
20584 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
20585
20586         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
20587         variables to suggest the intended function of the PATH_MAX check.
20588
20589 2005-10-30  Kean Johnston  <jkj@sco.com>
20590
20591         Trivial changes to support SCO systems.
20592         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
20593         as PATH_MAX.
20594         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
20595         where __ptr is null when no I/O is pending.
20596
20597 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20598
20599         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
20600         leave errno alone.  Problem reported by Dmitry V. Levin.
20601
20602 2005-10-28  Simon Josefsson  <jas@extundo.com>
20603
20604         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
20605         Test more.
20606
20607         * tests/test-gc-md2.c, tests/test-md2.c: New files.
20608
20609         * modules/md2, modules/md2-tests: New files.
20610
20611 2005-10-28  Simon Josefsson  <jas@extundo.com>
20612
20613         * m4/inet_ntop.m4: More tests.
20614
20615         * m4/gc-md2.m4, md2.m4: New file.
20616
20617 2005-10-28  Simon Josefsson  <jas@extundo.com>
20618
20619         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
20620         "restrict" keywords, as per POSIX.  Protect the function
20621         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
20622         Don't use K&R prototypes.  Check the sprintf return values.
20623         Re-define EAFNOSUPPORT if not present.  Indent.
20624
20625         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
20626         suggested by Bruno Haible <bruno@clisp.org>.
20627
20628         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
20629
20630         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
20631
20632         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
20633         libgcrypt).
20634
20635         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
20636
20637         * lib/md2.h, lib/md2.c: New files.
20638
20639 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
20640
20641         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
20642         errno alone.  Problem reported by Frederic Jolliton.
20643
20644 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
20645
20646         * modules/verify (License): Change from GPL to LGPL.  This is a
20647         tiny module and there are apparently near-equivalents that are
20648         under the BSD license.
20649
20650 2005-10-24  Simon Josefsson  <jas@extundo.com>
20651
20652         * modules/sha1: Relicense to LGPL.
20653
20654 2005-10-24  Simon Josefsson  <jas@extundo.com>
20655
20656         * lib/md4.h: Shrink buffer size, now that we changed the type.
20657
20658 2005-10-23  Simon Josefsson  <jas@extundo.com>
20659
20660         * gnulib-tool (func_import): Fix --tests-base.
20661
20662 2005-10-22  Simon Josefsson  <jas@extundo.com>
20663
20664         * modules/arcfour (Depends-on): Need stdint.
20665
20666 2005-10-22  Simon Josefsson  <jas@extundo.com>
20667
20668         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
20669         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
20670
20671 2005-10-22  Simon Josefsson  <jas@extundo.com>
20672
20673         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
20674         suggested by Bruno Haible <bruno@clisp.org>.
20675
20676 2005-10-22  Simon Josefsson  <jas@extundo.com>
20677
20678         * lib/crc.h: Include stddef.h, for size_t.
20679
20680 2005-10-22  Simon Josefsson  <jas@extundo.com>
20681
20682         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
20683         arcfour_context struct (simplify test vector testing in GNU
20684         Shishi).
20685
20686 2005-10-21  Simon Josefsson  <jas@extundo.com>
20687
20688         * modules/des, modules/des-tests: New files.
20689
20690         * modules/gc-des, modules/gc-des-tests: New files.
20691
20692         * tests/test-des.c, tests/test-gc-des.c: New file.
20693
20694 2005-10-21  Simon Josefsson  <jas@extundo.com>
20695
20696         * modules/arctwo, modules/arctwo-tests: New files.
20697
20698         * tests/test-arctwo.c: New file.
20699
20700         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
20701
20702         * tests/test-gc-arctwo.c: New file.
20703
20704 2005-10-21  Simon Josefsson  <jas@extundo.com>
20705
20706         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
20707         Bruno Haible <bruno@clisp.org>.
20708
20709         * m4/gc-des.m4: New file.
20710
20711 2005-10-21  Simon Josefsson  <jas@extundo.com>
20712
20713         * m4/arctwo.m4: New file.
20714
20715         * m4/gc-arctwo.m4: New file.
20716
20717 2005-10-21  Simon Josefsson  <jas@extundo.com>
20718
20719         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
20720         block.
20721
20722 2005-10-21  Simon Josefsson  <jas@extundo.com>
20723
20724         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
20725         <bruno@clisp.org>.
20726
20727         * lib/hmac-sha1.c (hmac_sha1): Likewise.
20728
20729         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
20730         Bruno Haible <bruno@clisp.org>.
20731
20732         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
20733         <bruno@clisp.org>.
20734
20735 2005-10-21  Simon Josefsson  <jas@extundo.com>
20736
20737         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
20738
20739 2005-10-21  Simon Josefsson  <jas@extundo.com>
20740
20741         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
20742
20743 2005-10-21  Simon Josefsson  <jas@extundo.com>
20744
20745         * lib/des.h, lib/des.c: New files.
20746
20747         * lib/gc-gnulib.c: Support DES.c
20748
20749 2005-10-21  Simon Josefsson  <jas@extundo.com>
20750
20751         * lib/arctwo.h, lib/arctwo.c: New files.
20752
20753         * lib/gc-gnulib.c: Support ARCTWO.
20754
20755 2005-10-21  Simon Josefsson  <jas@extundo.com>
20756
20757         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
20758         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20759
20760 2005-10-21  Simon Josefsson  <jas@extundo.com>
20761
20762         * gnulib-tool (func_import, func_create_testdir): Define automake
20763         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
20764         Makefile.am snippet),
20765         suggested by Bruno Haible <bruno@clisp.org>.
20766
20767         * modules/gc (Makefile.am): Use it.
20768
20769 2005-10-21  Bruno Haible  <bruno@clisp.org>
20770
20771         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
20772         patch.
20773
20774 2005-10-19  Simon Josefsson  <jas@extundo.com>
20775
20776         * tests/test-gc-rijndael.c: New file.
20777
20778         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
20779
20780 2005-10-19  Simon Josefsson  <jas@extundo.com>
20781
20782         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
20783         interface too.
20784
20785 2005-10-19  Simon Josefsson  <jas@extundo.com>
20786
20787         * tests/test-gc-arcfour.c: New file.
20788
20789         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
20790
20791 2005-10-19  Simon Josefsson  <jas@extundo.com>
20792
20793         * modules/gc-md4, modules/gc-md4-tests: New file.
20794
20795         * tests/test-gc-md4.c: New file.
20796
20797 2005-10-19  Simon Josefsson  <jas@extundo.com>
20798
20799         * m4/gc-md4.m4: New file.
20800
20801 2005-10-19  Simon Josefsson  <jas@extundo.com>
20802
20803         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
20804         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
20805         <kasal@ucw.cz>.
20806
20807 2005-10-19  Simon Josefsson  <jas@extundo.com>
20808
20809         * m4/gc-arcfour.m4: New file.
20810
20811         * m4/gc-rijndael.m4: New file.
20812
20813 2005-10-19  Simon Josefsson  <jas@extundo.com>
20814
20815         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
20816
20817 2005-10-19  Simon Josefsson  <jas@extundo.com>
20818
20819         * lib/gc-gnulib.c: Support ARCFOUR.
20820
20821 2005-10-19  Simon Josefsson  <jas@extundo.com>
20822
20823         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
20824         support.
20825
20826         * lib/gc.h: Add ECB enum type.
20827
20828         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
20829
20830 2005-10-18  Simon Josefsson  <jas@extundo.com>
20831
20832         * tests/test-md5.c: New file.
20833
20834         * modules/md5-tests: New file.
20835
20836 2005-10-18  Simon Josefsson  <jas@extundo.com>
20837
20838         * tests/test-md4.c: New file.
20839
20840         * modules/md4, modules/md4-tests: New files.
20841
20842 2005-10-18  Simon Josefsson  <jas@extundo.com>
20843
20844         * m4/md4.m4: New file.
20845
20846 2005-10-18  Simon Josefsson  <jas@extundo.com>
20847
20848         * lib/md4.h, lib/md4.c: New files, based on md5.?.
20849
20850 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
20851
20852         * gnulib-tool (func_create_testdir): Omit the second check whether
20853         BUILT_SOURCES in nonempty.
20854
20855 2005-10-17  Simon Josefsson  <jas@extundo.com>
20856
20857         * tests/test-rijndael.c: New file.
20858
20859 2005-10-17  Simon Josefsson  <jas@extundo.com>
20860
20861         * modules/sha1: Depend on stdint instead of md5.
20862
20863         * modules/md5: Depend on stdint, remove uint32_t.
20864
20865 2005-10-17  Simon Josefsson  <jas@extundo.com>
20866
20867         * modules/gc-sha1-tests: New file.
20868
20869         * tests/test-gc-sha1.c: New file.
20870
20871 2005-10-17  Simon Josefsson  <jas@extundo.com>
20872
20873         * m4/md5.m4: Remove call to uint32_t.m4.
20874
20875 2005-10-17  Simon Josefsson  <jas@extundo.com>
20876
20877         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
20878
20879         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
20880         md5.h.
20881
20882         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
20883
20884         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
20885
20886 2005-10-17  Simon Josefsson  <jas@extundo.com>
20887
20888         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
20889
20890 2005-10-17  Simon Josefsson  <jas@extundo.com>
20891
20892         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
20893
20894 2005-10-17  Simon Josefsson  <jas@extundo.com>
20895
20896         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
20897
20898         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
20899
20900 2005-10-17  Bruno Haible  <bruno@clisp.org>
20901
20902         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
20903         that it can also be used in a test.
20904
20905 2005-10-16  Bruno Haible  <bruno@clisp.org>
20906
20907         * gnulib-tool (func_emit_tests_Makefile_am): Also define
20908         TESTS_ENVIRONMENT, so that individual tests can augment it.
20909
20910         * gnulib-tool (func_create_testdir): Use an intermediate target for
20911         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
20912         macros, like $(ALLOCA_H), which cannot be passed through the command
20913         line.
20914
20915 2005-10-15  Simon Josefsson  <jas@extundo.com>
20916
20917         * modules/rijndael-tests: New file.
20918
20919         * modules/rijndael: New file.
20920
20921 2005-10-15  Simon Josefsson  <jas@extundo.com>
20922
20923         * m4/rijndael.m4: New file.
20924
20925 2005-10-15  Simon Josefsson  <jas@extundo.com>
20926
20927         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
20928
20929         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
20930
20931 2005-10-14  Simon Josefsson  <jas@extundo.com>
20932
20933         * tests/test-arcfour.c: New file.
20934
20935         * modules/arcfour, modules/arcfour-tests: New files.
20936
20937 2005-10-14  Simon Josefsson  <jas@extundo.com>
20938
20939         * m4/arcfour.m4: New file.
20940
20941 2005-10-14  Simon Josefsson  <jas@extundo.com>
20942
20943         * lib/arcfour.h, lib/arcfour.c: New files.
20944
20945 2005-10-14  Roland McGrath  <roland@redhat.com>
20946
20947         Import from libc.  [BZ #1331]
20948         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
20949         macro argument.
20950         Reported by Matej Vela <vela@debian.org>.
20951
20952 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
20953
20954         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
20955         include <wchar.h>; no longer needed.
20956
20957 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
20958
20959         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
20960
20961 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
20962         and  Ulrich Drepper  <drepper@redhat.com>
20963
20964         Import from libc.
20965         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
20966         instead of inline stream orientation test and two separate
20967         function calls.  Pay no attention to USE_IN_LIBIO.
20968
20969 2005-10-13  Simon Josefsson  <jas@extundo.com>
20970
20971         * modules/gc-hmac-md5-tests: New file.
20972
20973         * tests/test-gc-hmac-sha1.c: New file.
20974
20975         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
20976
20977         * modules/gc-hmac-md5-tests: New file.
20978
20979         * tests/test-gc-md5.c: New file.
20980
20981         * modules/gc-md5-tests: New file.
20982
20983 2005-10-13  Simon Josefsson  <jas@extundo.com>
20984
20985         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
20986         Move memory allocation outside of loop.
20987
20988 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
20989
20990         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
20991         intermediate directory is in a read-only file system.  Problem
20992         reported by Eric Blake.
20993
20994 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
20995
20996         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
20997
20998 2005-10-12  Simon Josefsson  <jas@extundo.com>
20999
21000         * tests/test-hmac-sha1.c: New file.
21001
21002         * modules/hmac-sha1-tests: New file.
21003
21004         * modules/hmac-sha1: New file.
21005
21006 2005-10-12  Simon Josefsson  <jas@extundo.com>
21007
21008         * modules/gc-sha1: New file.
21009
21010 2005-10-12  Simon Josefsson  <jas@extundo.com>
21011
21012         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
21013
21014         * tests/test-gc-pbkdf2-sha1.c: New file.
21015
21016 2005-10-12  Simon Josefsson  <jas@extundo.com>
21017
21018         * modules/gc-md5, modules/gc-hmac-md5: New files.
21019
21020         * modules/gc (Files): Remove md5, memxor and hmac files.
21021
21022 2005-10-12  Simon Josefsson  <jas@extundo.com>
21023
21024         * m4/gc-pbkdf2-sha1.m4: New file.
21025
21026         * m4/gc-hmac-sha1.m4: New file.
21027
21028         * m4/gc-sha1: New file.
21029
21030         * m4/hmac-sha1.m4: New file.
21031
21032 2005-10-12  Simon Josefsson  <jas@extundo.com>
21033
21034         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
21035
21036         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
21037
21038 2005-10-12  Simon Josefsson  <jas@extundo.com>
21039
21040         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
21041         suggested by Bruno Haible <bruno@clisp.org>.
21042
21043 2005-10-12  Simon Josefsson  <jas@extundo.com>
21044
21045         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
21046
21047 2005-10-12  Simon Josefsson  <jas@extundo.com>
21048
21049         * lib/gc-pbkdf2-sha1.c: New file.
21050
21051         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
21052
21053 2005-10-12  Simon Josefsson  <jas@extundo.com>
21054
21055         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
21056
21057         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
21058
21059 2005-10-12  Simon Josefsson  <jas@extundo.com>
21060
21061         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
21062         GC_USE_HMAC_MD5, respectively.
21063
21064         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
21065         (gc_md5): Fix typo.
21066
21067         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
21068
21069         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
21070
21071         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
21072
21073 2005-10-12  Bruno Haible  <bruno@clisp.org>
21074
21075         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
21076         Reported by Stepan Kasal <kasal@ucw.cz>.
21077
21078 2005-10-11  Simon Josefsson  <jas@extundo.com>
21079
21080         * tests/test-crc.c: New file.
21081
21082         * modules/crc, modules/crc-tests: New files.
21083
21084 2005-10-11  Simon Josefsson  <jas@extundo.com>
21085
21086         * m4/crc.m4: New file.
21087
21088 2005-10-11  Simon Josefsson  <jas@extundo.com>
21089
21090         * lib/gc.h: Add gc_hash and gc_hash_buffer.
21091
21092         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
21093
21094         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
21095
21096 2005-10-11  Simon Josefsson  <jas@extundo.com>
21097
21098         * lib/crc.h, lib/crc.c: New files.
21099
21100         * lib/gc.h (gc_hash_buffer): Add doc.
21101
21102 2005-10-11  Bruno Haible  <bruno@clisp.org>
21103
21104         * modules/c-strcasestr: New file.
21105         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
21106
21107 2005-10-11  Bruno Haible  <bruno@clisp.org>
21108
21109         * modules/c-strcase: New file.
21110         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
21111
21112 2005-10-11  Bruno Haible  <bruno@clisp.org>
21113
21114         * lib/strcasecmp.c: Include limits.h.
21115         (strcasecmp): Avoid integer overflow on exotic platforms.
21116         * lib/strncasecmp.c: Include limits.h.
21117         (strncasecmp): Avoid integer overflow on exotic platforms.
21118         Reported by Paul Eggert.
21119
21120 2005-10-11  Bruno Haible  <bruno@clisp.org>
21121
21122         * lib/c-strcasestr.h: New file, from GNU gettext.
21123         * lib/c-strcasestr.c: New file, from GNU gettext.
21124
21125 2005-10-11  Bruno Haible  <bruno@clisp.org>
21126
21127         * lib/c-strcase.h: New file, from GNU gettext.
21128         * lib/c-strcasecmp.c: New file, from GNU gettext.
21129         * lib/c-strncasecmp.c: New file, from GNU gettext.
21130
21131 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21132
21133         * modules/mempcpy (License): GPL -> LGPL.
21134         * modules/strchrnul (License): Likewise.
21135         * modules/sysexits (License): Likewise.
21136
21137 2005-10-08  Simon Josefsson  <jas@extundo.com>
21138
21139         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
21140
21141 2005-10-07  Simon Josefsson  <jas@extundo.com>
21142
21143         * m4/memxor.m4: Remove gl_C_RESTRICT call.
21144
21145 2005-10-06  Simon Josefsson  <jas@extundo.com>
21146
21147         * tests/test-hmac-md5.c: New file.
21148
21149         * modules/hmac-md5-tests: New file.
21150
21151         * modules/hmac-md5: New file.
21152
21153 2005-10-06  Simon Josefsson  <jas@extundo.com>
21154
21155         * m4/hmac-md5.m4: New file.
21156
21157         * m4/memxor.m4: Require gl_C_RESTRICT.
21158
21159 2005-10-06  Simon Josefsson  <jas@extundo.com>
21160
21161         * lib/memxor.c (memxor): Avoid casts and warnings.
21162
21163 2005-10-06  Simon Josefsson  <jas@extundo.com>
21164
21165         * lib/hmac-md5.c: New file.
21166
21167         * lib/hmac.h: New file.
21168
21169 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21170
21171         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
21172         promotes to int, not unsigned int, to catch the AIX 5.3
21173         compiler bug.
21174
21175 2005-10-05  Simon Josefsson  <jas@extundo.com>
21176
21177         * modules/memxor: New file.
21178
21179         * modules/iconv (Files): Move config.rpath to havelib, it is used
21180         there.
21181
21182         * modules/havelib (Files): Add config.rpath.
21183
21184 2005-10-05  Simon Josefsson  <jas@extundo.com>
21185
21186         * m4/memxor.m4: New file.
21187
21188 2005-10-05  Simon Josefsson  <jas@extundo.com>
21189
21190         * lib/memxor.c (memxor): Fix compiler error.
21191
21192         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
21193         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
21194
21195         * lib/memxor.h, lib/memxor.c: New files.
21196
21197         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
21198         we assume all systems have it, suggested by Jim Meyering
21199         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
21200         any systems lack sys/socket.h; mingw32 is known to lack it, but we
21201         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
21202         same reasons.
21203
21204 2005-10-05  Simon Josefsson  <jas@extundo.com>
21205
21206         * config/srclist.txt: Add glibc bug 1423 for md5.h.
21207
21208 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
21209
21210         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
21211         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
21212         needed, since the source code now assumes these .h files.
21213
21214 2005-10-05  Derek Price  <derek@ximbiot.com>
21215
21216         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
21217
21218 2005-10-05  Bruno Haible  <bruno@clisp.org>
21219
21220         * modules/stdint (License): Change to LGPL.
21221
21222 2005-10-04  Simon Josefsson  <jas@extundo.com>
21223
21224         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
21225         D. Baushke" <mdb@gnu.org>.
21226
21227 2005-10-04  Bruno Haible  <bruno@clisp.org>
21228
21229         * lib/verify.h (verify_true): Provide alternative definition for C++.
21230
21231 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
21232
21233         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
21234         (SSIZE_MAX): New macro, if not already defined.
21235         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
21236         than 2 GiB.
21237
21238 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
21239
21240         Sync from coreutils.
21241         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
21242         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
21243         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
21244         ULLONG_MAX doesn't work with 2.7.2.1.
21245
21246 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
21247
21248         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
21249         From Ben Pfaff.
21250
21251         * modules/exclude (Depends-on): Depend on verify.
21252         * modules/strtoimax (Depends-on): Likewise.
21253         * modules/utimecmp (Depends-on): Likewise.
21254
21255 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
21256
21257         * lib/exclude.c: Include verify.h.
21258         (verify): Remove.  All callers changed to use verify.h's version.
21259         * lib/strtoimax.c: Likewise.
21260         * lib/utimecmp.c: Likewis.e
21261
21262         Sync from coreutils.
21263         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
21264         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
21265         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
21266         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
21267         bother returning ENOSYS if settimeofday or stime fails; just let
21268         them return whatever errno they want to return.
21269         * lib/utimens.c: Include unistd.h, for dup2.
21270         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
21271         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
21272
21273 2005-10-02  Jim Meyering  <jim@meyering.net>
21274
21275         Sync from coreutils.
21276         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
21277         from glibc-2.2.5 that fails for read-only files.
21278
21279 2005-10-02  Jim Meyering  <jim@meyering.net>
21280
21281         Sync from coreutils.
21282         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
21283         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
21284         `#if HAVE_CONFIG_H'.
21285         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
21286         Remove AT_FDCWD test.
21287         Do not consume the fd unless successful.
21288         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
21289         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
21290         block, so that we don't even try to compile it if settimeofday is
21291         available.  This works around a compilation failure on OSF1 V5.1,
21292         due to stime requiring a `long int*' while tv_sec is `int'.
21293
21294 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
21295
21296         Sync from coreutils.
21297         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
21298         against `yes', rather than just testing for nonempty.
21299
21300 2005-10-01  Simon Josefsson  <jas@extundo.com>
21301
21302         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
21303         and Darwin.
21304
21305         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
21306         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
21307         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
21308         freeaddrinfo and gai_strerror are declared by the POSIX headers.
21309         Check if struct addrinfo is declared.
21310
21311 2005-10-01  Simon Josefsson  <jas@extundo.com>
21312
21313         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
21314         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
21315         AI_* and EAI_* definitions.  Protect function declarations.
21316
21317 2005-10-01  Jim Meyering  <jim@meyering.net>
21318
21319         Sync from coreutils.
21320
21321         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
21322         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
21323         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
21324         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
21325         in the inet and nsl libraries.  Required on Solaris 5.7.
21326
21327 2005-10-01  Jim Meyering  <jim@meyering.net>
21328
21329         Sync from coreutils.
21330         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
21331         in the inet and nsl libraries.  Required on Solaris 5.7.
21332
21333 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
21334
21335         * lib/getdelim.c (getdelim): Remove unused variables.
21336
21337 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
21338
21339         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
21340         so that the code works even with ancient cpp.  Portability problem
21341         with GCC 2.7.2.1 reported by Thomas M.Ott.
21342
21343 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
21344
21345         * modules/regex (Depends-on): Add strcase.
21346
21347         * modules/gethostname (Licence): Change from GPL to LGPL, since
21348         gethostname.c is a trivial implementation of a standard library
21349         function.
21350         * modules/poll (License): Change from GPL to LGPL, since it's
21351         derived from LGPL code.
21352
21353 2005-09-27  Jim Meyering  <jim@meyering.net>
21354
21355         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
21356         HAVE_CONFIG_H.
21357
21358         * lib/intprops.h (signed_type_or_expr__): Define.
21359         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
21360         for unsigned types.
21361
21362 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
21363
21364         * lib/verify.h (verify_expr): Remove, replacing with:
21365         (verify_true): New macro that returns true instead of void.
21366         (verify_type__): Remove.
21367         (verify): Use verify_true rather than verify_type__.
21368
21369 2005-09-26  Bruno Haible  <bruno@clisp.org>
21370
21371         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
21372         is necessary.
21373         (lib_SOURCES): Remove mbchar.c.
21374         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
21375         (Files): Add m4/mbrtowc.m4.
21376         * modules/mbiter: Likewise.
21377         * modules/mbuiter: Likewise.
21378
21379 2005-09-26  Bruno Haible  <bruno@clisp.org>
21380
21381         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
21382         compile mbchar.c if they are not both present.
21383         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
21384         * m4/mbiter.m4 (gl_MBITER): Likewise.
21385         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
21386         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
21387         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
21388
21389 2005-09-25  Jim Meyering  <jim@meyering.net>
21390
21391         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
21392         also uses socklen_t.
21393
21394 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
21395
21396         * lib/utimens.c (ENOSYS): Define if not already defined.
21397         (futimens): Support having a null PATH if the file descriptor
21398         is nonnegative.
21399
21400         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
21401         Remove.
21402         (__attribute): Define to empty unless GCC 3.1 or later.
21403         This works around a core dump on OpenBSD 3.4, which has GCC
21404         2.95.3, which dumps core when given __attribute__(()).  It also
21405         simplifies other tests, since we really don't want to bother with
21406         worrying about which ancient version of GCC supported what.
21407         Original problem reported by Yoann Vandoorselaere, with part of
21408         the fix suggested by Derek Price.
21409
21410 2005-09-24  Jim Meyering  <jim@meyering.net>
21411
21412         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
21413         so we can once again use a positive bitfield width of 1 -- now we
21414         don't have to explain why we were using a bitfield width of 2.
21415
21416 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
21417
21418         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
21419         and similarly for the other external symbols.  Problem reported
21420         by James Gallager.
21421
21422         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
21423         bug reported by Jim Meyering.
21424
21425         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
21426         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
21427         not needed, since socklen is a prerequisite module.
21428
21429 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
21430
21431         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
21432         Problem reported by Eric Blake.
21433         (getaddrinfo): Initialize se so that it's not garbage.
21434         Redo internal storage allocation so that it doesn't make unportable
21435         assumptions about alignment.
21436         Fix a memory leak.
21437
21438         * lib/utimens.c (futimens): Use futimesat if available.
21439         Prefer it to futimes since it doesn't have the futimes bug.
21440
21441         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
21442         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
21443         Instead, declare a function that returns a pointer to an array,
21444         and use verify_type__ to declare the size of the array.
21445         Problem and germ of a solution reported by Bruno Haible.
21446         (verify_type__): Use 2, not 1, for bitfield size, to avoid
21447         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
21448
21449 2005-09-23  Jim Meyering  <jim@meyering.net>
21450
21451         Sync from coreutils.
21452         Correct build failure (socklen_t not defined) on at least
21453         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
21454         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
21455
21456 2005-09-23  Jim Meyering  <jim@meyering.net>
21457
21458         * modules/getaddrinfo (Depends-on): Add socklen.
21459
21460 2005-09-23  Bruno Haible  <bruno@clisp.org>
21461
21462         * tests/test-verify.c: New file.
21463
21464 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
21465
21466         Sync from coreutils.
21467
21468         * modules/argmatch (Depends-on): Add verify.
21469         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
21470         unistd-safer.
21471         * modules/save-cwd (Depends-on): Likewise.
21472
21473         * modules/openat (Files): Add lib/openat-die.c.
21474         (Depends-on): Remove error, exitfail.
21475         Add dirname.
21476
21477         * modules/verify: New file.
21478         * MODULES.html.sh (Diagnostics <assert.h>): New section,
21479         with "verify" module.
21480
21481 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
21482
21483         Sync from coreutils.
21484
21485         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
21486         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
21487         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
21488         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
21489         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
21490         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
21491         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
21492         Don't bother checking for string.h, stdlib.h, unistd.h.
21493         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
21494         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
21495         module's job.
21496         * m4/jm-macros.m4 (gl_MACROS): Likewise.
21497         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
21498
21499         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
21500         (gl_GETDATE): Use it.
21501
21502         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
21503
21504 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
21505
21506         Sync from coreutils.
21507
21508         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
21509         stat-time.h.
21510         * lib/argmatch.h: Include verify.h
21511         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
21512         (ARGMATCH_ASSERT): Remove; unused.
21513         * lib/canonicalize.c: Assume STDC_HEADERS.
21514         * lib/exclude.c: Include "strcase.h".
21515         * lib/regex_internal.h [!defined _LIBC]: Likewise.
21516         * lib/getusershell.c: Include stdio--.h rather than stdio.h
21517         and stdio-safer.h.
21518         (getusershell): Call fopen, not fopen_safer.
21519         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
21520         Do not include unistd-safer.h.
21521         (save_cwd): Don't call fd_safer; no longer needed
21522         now that we include fcntl--.h.
21523
21524         * lib/getdate.y (relative_time): New type.
21525         (RELATIVE_TIME_0): New constant.
21526         (parser_control): Use relative_time instead of doing it ourselves.
21527         (%union): Add new relative_time rel member.
21528         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
21529         Now typeless.
21530         (relunit, relunit_snumber): Now of type rel.
21531         (zone, rel, relunit, get_date): Adjust to above changes.
21532
21533         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
21534         Do not include unistd-safer.h.
21535         (getloadavg): Don't call fd_safer; no longer needed
21536         now that we include fcntl--.h.
21537
21538         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
21539         (make_dir_parents): Treat ENOSYS like EEXIST.
21540
21541         Improve quality of diagnostics on restore_cwd failure.
21542         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
21543         (make_dir_parents): Last arg is now int * (for errno), not bool *.
21544         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
21545         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
21546         each time through the loop.  Do not diagnose restore_cwd failure;
21547         that is the caller's job (and perhaps the caller does not care).
21548
21549         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
21550         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
21551         If the file already exists but is not a directory, don't bother
21552         to try to make its parents.
21553         Close potential file descriptor leak if we can't chdir("/") (!).
21554         Don't always return true if chdir($PWD) fails; return true only
21555         if the requested action was done successfully (except for the
21556         chdir($PWD)).
21557         Don't log final directory unless we actually made it.
21558         Refactor to avoid duplicate code to fix up permissions.
21559         Don't attempt to fix up parent permissions if chdir($PWD) fails.
21560
21561         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
21562         to make it a bit faster and (I hope) clearer.
21563         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
21564         Fix bug in formats like %2N.
21565
21566         * lib/verify.h: New file.
21567
21568 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
21569
21570         Sync from coreutils.
21571         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
21572
21573 2005-09-22  Jim Meyering  <jim@meyering.net>
21574
21575         Sync from coreutils.
21576
21577         * m4/lstat.m4 (gl_FUNC_LSTAT):
21578         Use AC_LIBSOURCES to require lstat.c and lstat.h.
21579         Remove obsolete comment.
21580         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
21581         * m4/xstrtod.m4: Likewise.
21582
21583         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
21584
21585 2005-09-22  Jim Meyering  <jim@meyering.net>
21586
21587         Sync from coreutils.
21588
21589         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
21590
21591         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
21592         the .tm_year member, since otherwise gcc-4.0 would now warn about
21593         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
21594
21595         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
21596         order to avoid an unsuppressible warning from gcc on 64-bit systems.
21597
21598         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
21599         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
21600         when run in a time zone for which daylight savings time is in effect
21601         for the starting date.
21602
21603         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
21604         stop us from restricting permissions of just-created absolute-named
21605         directories.
21606         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
21607         to restore initial working directory.
21608         * lib/mkdir-p.c (make_dir_parents): New parameter:
21609         different_working_dir, to tell caller if/when we change the working
21610         directory and are unable to return to the initial one.
21611         * lib/mkdir-p.h (make_dir_parents): Update prototype.
21612         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
21613         `return false'.  This fixes a bug introduced on 2004-07-30.
21614
21615         * lib/openat.c (fdopendir): Be sure to close the supplied
21616         file descriptor before returning.  This makes our replacement
21617         implementation a little closer to Solaris's, where fdopendir
21618         ties the file descriptor to the returned DIR* pointer.
21619         * lib/openat.c (unlinkat): New function.
21620         * lib/openat.h (unlinkat): Add prototype.
21621         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
21622         (openat_restore_fail): Rename from openat_restore_die.
21623         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
21624
21625         Provide an alternative to exiting immediately upon save_cwd or
21626         restore_cwd failure.  Now, an application can arrange e.g.,
21627         to perform a longjump in that case.
21628         * lib/openat.c: Include dirname.h.
21629         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
21630         (rpl_openat, fdopendir, fstatat): Call openat_save_die
21631         and openat_restore_die rather than calling error directly.
21632         Don't include "error.h" or "exitfail.h"; they're no longer needed.
21633
21634         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
21635         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
21636         define.
21637
21638         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
21639         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
21640                             int utc, int nanoseconds);
21641         Background:
21642         date should not have to allocate a megabyte of virtual memory to
21643         handle a format argument like +%1048575T.  When implemented with
21644         strftime, it must allocate such a buffer, use strftime to fill it
21645         in, print it, then free it.
21646         With fprintftime, it simply prints everything and exits.
21647         With no need for memory allocation, that's one fewer way to fail.
21648         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
21649         optional field width, not before, so we accept %9:z, not %:9z.
21650         (my_strftime): Be sure to use L_('x') for literals.
21651
21652         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
21653         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
21654         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
21655         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
21656         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
21657         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
21658         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
21659         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
21660         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
21661         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
21662         * lib/xgethostname.c, lib/xreadlink.c:
21663         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
21664
21665         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
21666         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
21667         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
21668         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
21669         and don't include <sys/file.h>).
21670
21671 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
21672
21673         Sync from coreutils.
21674
21675         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
21676         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
21677         [!LDAV_DONE]: Avoid unused variable warning.
21678
21679 2005-09-21  Bruno Haible  <bruno@clisp.org>
21680
21681         * lib/unicodeio.h (unicode_to_mb): New declaration.
21682
21683 2005-09-20  Derek Price  <derek@ximbiot.com>
21684
21685         * lib/getaddrinfo.c: Don't include <netdb.h> included from
21686         getaddrinfo.h.
21687
21688 2005-09-20  Bruno Haible  <bruno@clisp.org>
21689
21690         * gnulib-tool: Remove trailing slashes from the values specified for
21691         --source-base, --m4-base, --tests-base, --aux-dir.
21692         Suggested by Simon Josefsson <jas@extundo.com>.
21693
21694 2005-09-20  Bruno Haible  <bruno@clisp.org>
21695
21696         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
21697         func_modules_to_filelist, func_import, func_create_testdir): Make all
21698         sorting results locale-independent, so that gnulib-cache.m4 doesn't
21699         change when gnulib-tool is invoked in a different locale.
21700
21701 2005-09-19  Simon Josefsson  <jas@extundo.com>
21702
21703         * m4/socklen.m4: Fix typo.
21704
21705 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21706
21707         Use a consistent style for including <config.h>.
21708         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
21709         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
21710         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
21711         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
21712         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
21713         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
21714         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
21715         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
21716         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
21717         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
21718         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
21719         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
21720         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
21721         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
21722         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
21723         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
21724         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
21725         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
21726         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
21727         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
21728         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
21729         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
21730         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
21731         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
21732         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
21733         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
21734         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
21735         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
21736         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
21737         lib/xstrtoumax.c, lib/yesno.c:
21738         Standardize inclusion of config.h.
21739         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
21740         lib/inttostr.h:  Removed inclusion of config.h from header files.
21741         * lib/inttostr.c:  Adjusted in-tree users.
21742         * lib/timespec.h: Remove superfluous warning to include config.h.
21743         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
21744         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
21745         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
21746         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
21747         config.h with HAVE_CONFIG_H.
21748
21749 2005-09-19  Jim Meyering  <jim@meyering.net>
21750
21751         * modules/pathmax (License): Change to LGPL.
21752
21753 2005-09-19  Derek Price  <derek@ximbiot.com>
21754
21755         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
21756
21757 2005-09-19  Bruno Haible  <bruno@clisp.org>
21758
21759         * gnulib-tool (import): Provide default for --tests-base.
21760
21761 2005-09-19  Bruno Haible  <bruno@clisp.org>
21762
21763         * doc/quote.texi: New file, extracted from gnulib.texi.
21764         * doc/ctime.texi: New file, extracted from gnulib.texi.
21765         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
21766         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
21767         * doc/gnulib.texi: Include them.
21768
21769 2005-09-18  Bruno Haible  <bruno@clisp.org>
21770
21771         Portability fix.
21772         * gnulib-tool (func_readlink): New function.
21773         (func_ln_if_changed): Use it.
21774
21775 2005-09-18  Bruno Haible  <bruno@clisp.org>
21776
21777         * gnulib-tool: Support --with-tests also with --import.
21778         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
21779         (func_import): Use variables $testsbase and $inctests. Emit a
21780         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
21781         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
21782         SUBDIRS += $testsdir.
21783         (func_create_testdir): Update.
21784
21785 2005-09-18  Bruno Haible  <bruno@clisp.org>
21786
21787         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
21788         instead of $dry_run.
21789         (func_cp_if_changed, func_mv_if_changed): Remove functions.
21790         (func_ln_if_changed): Don't handle dry-run here.
21791         (func_import): In dry-run mode, detect more precisely which actions
21792         would be performed, and don't use "...ing" verbs.
21793
21794 2005-09-18  Bruno Haible  <bruno@clisp.org>
21795
21796         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
21797         (func_import): Use join on two temporary files instead of three nested
21798         loops, in order to determine which files are new or old.
21799
21800 2005-09-18  Bruno Haible  <bruno@clisp.org>
21801
21802         * gnulib-tool (func_import): Comment out code that spits out the
21803         new files with --dry-run.
21804
21805 2005-09-18  Bruno Haible  <bruno@clisp.org>
21806
21807         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
21808
21809 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
21810
21811         * lib/stat-time.h: New file.
21812         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
21813         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
21814         in a different way.
21815         (timespec_cmp): New function.
21816         * lib/utimecmp.c: Include stat-time.h.
21817         (SYSCALL_RESOLUTION): Depend on whether various struct stat
21818         members exist, not on the obsolescent ST_MTIM_NSEC.
21819         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
21820
21821 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
21822
21823         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
21824
21825 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
21826
21827         * MODULES.html.sh (File system functions): Add stat-time.
21828         * modules/stat-time: New file.
21829         * modules/timespec (Files): Remove m4/st_mtim.m4; this
21830         is now done in a different way, by the stat-time module.
21831         * modules/utimecmp (Depends-on): Add stat-time.
21832
21833 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21834
21835         * m4/st_mtim.m4: Remove.  Superseded by...
21836         * m4/stat-time.m4: New file.
21837         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
21838         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
21839
21840 2005-09-15  Derek Price  <derek@ximbiot.com>
21841
21842         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
21843
21844 2005-09-15  Derek Price  <derek@ximbiot.com>
21845
21846         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
21847         * lib/regex_internal.c: Ditto, using this...
21848         (__GNUC_PREREQ): ...new macro.
21849         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
21850         using...
21851         (__GNUC_PREREQ): ...this new macro.
21852
21853         * lib/strstr.h: Include string.h. Define strstr as a macro here.
21854
21855 2005-09-15  Derek Price  <derek@ximbiot.com>
21856             Paul Eggert  <eggert@cs.ucla.edu>
21857
21858         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
21859         changes, consolidating in...
21860         * lib/regex_internal.h: ...this file.
21861
21862 2005-09-13  Jim Meyering  <jim@meyering.net>
21863
21864         * lib/canon-host.c: Filter through gnu indent and reword comments
21865         slightly.
21866         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
21867
21868 2005-09-13  Derek Price  <derek@ximbiot.com>
21869
21870         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
21871         failure.
21872         Reported by Jim Meyering  <jim@meyering.net>.
21873
21874 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
21875
21876         * lib/base64.c: Typo.
21877         (base64_encode): Put b64str in initialized data section.
21878
21879 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
21880
21881         Merge glibc and coreutils changes into gnulib, plus a few
21882         extra fixes.
21883         * lib/md5.c: Use #error rather than a string.
21884         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
21885         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
21886         (__attribute__): Define to empty for non recent-GCC.
21887         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
21888         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
21889         Renamed from their non-__ counterparts, with new macros replacing
21890         them if not _LIBC.  Add __THROW attribute.
21891         (rol): Remove.
21892         (struct md5_ctx): Align buffer if using GCC.
21893         * lib/sha1.h (struct sha1_ctx): Likewise.
21894         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
21895         The old name was backwards.
21896         (NOTSWAP): Remove; not used.
21897         (rol): New macro, moved here from md5.h.
21898         (sha1_process_block): Remove a FIXME that doesn't make sense.
21899
21900 2005-09-12  Derek Price  <derek@ximbiot.com>
21901
21902         Return usable errors from canon-host.
21903         * lib/canon-host.h: New file.
21904         * lib/canon-host.c (canon_host): Wrap...
21905         (canon_host_r): ...this new function, which now relies exclusively on
21906         getaddrinfo.
21907         (ch_strerror): New function.
21908         (last_cherror): New global.
21909         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
21910         interface.
21911         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
21912         void *.
21913         (freeaddrinfo): Free ai->ai_canonname when set.
21914
21915 2005-09-12  Derek Price  <derek@ximbiot.com>
21916
21917         Make canon-host require getaddrinfo.
21918         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
21919         AC_LIBSOURCE canon-host.h.  Call...
21920         (gl_PREREQ_CANON_HOST): ...this new function, which requires
21921         gl_GETADDRINFO.
21922         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
21923
21924 2005-09-12  Derek Price  <derek@ximbiot.com>
21925
21926         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
21927         LGPL.
21928         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
21929
21930 2005-09-12  Derek Price  <derek@ximbiot.com>
21931
21932         * lib/gai_strerror.c: Include config.h when available.  Include
21933         getaddrinfo.h before other headers to test interface.
21934         Reported by Larry Jones <lawrence.jones@ugs.com>.
21935
21936 2005-09-12  Derek Price  <derek@ximbiot.com>
21937             Paul Eggert  <eggert@cs.ucla.edu>
21938
21939         * modules/glob (Files): Add glob-libc.h.
21940
21941 2005-09-12  Derek Price  <derek@ximbiot.com>
21942             Paul Eggert  <eggert@cs.ucla.edu>
21943
21944         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
21945         glob_.h, glob-libc.h.
21946         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
21947
21948 2005-09-12  Derek Price  <derek@ximbiot.com>
21949             Paul Eggert  <eggert@cs.ucla.edu>
21950
21951         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
21952         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
21953         protecting things that should be done only in gnulib contexts.
21954         * lib/glob_.h: New file, containing only the glob things needed for
21955         gnulib.
21956         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
21957         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
21958         (glob, globfree, glob_pattern_p): Now defined simply in terms of
21959         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
21960         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
21961         and to respect the namespace rules better.
21962
21963 2005-09-08  Simon Josefsson  <jas@extundo.com>
21964
21965         * modules/socklen: New file.
21966
21967 2005-09-08  Simon Josefsson  <jas@extundo.com>
21968
21969         * m4/socklen.m4: New file.
21970
21971 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
21972
21973         * modules/utimens (Files): Add m4/utimbuf.m4, since
21974         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
21975         Reported by Sergey Poznyakoff.
21976
21977 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
21978
21979         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
21980         definitions, since that's the preferred style in glibc.
21981         Fix a minor spacing issue, and update copyright notice to match
21982         glibc's.
21983
21984 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
21985
21986         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
21987
21988 2005-09-06  Simon Josefsson  <jas@extundo.com>
21989
21990         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
21991         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
21992
21993 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
21994
21995         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
21996         warning.
21997
21998 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
21999
22000         * config/srclist.txt: Add glibc bug 1302.
22001
22002 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
22003
22004         Change bitset word type from unsigned int to unsigned long int,
22005         as this has better performance on typical 64-bit hosts.
22006         Port bitset code to hosts with unusual word sizes.
22007         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
22008         (build_collating_symbol):
22009         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
22010         argument is a bitset.  This is merely a style issue, but it makes
22011         it clearer that an entire array is expected.
22012         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
22013         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
22014         Port to the case where bitset_word is not the same as unsigned int.
22015         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
22016         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
22017         Likewise.
22018         * lib/regexec.c (check_dst_limits_calc_pos_1,
22019         check_subexp_matching_top):
22020         (build_trtable, group_nodes_into_DFAstates):
22021         Likewise.
22022         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
22023         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
22024         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
22025         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
22026         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
22027         * lib/regcomp.c (optimize_subexps, lower_subexp):
22028         Work even if bitset_word has holes in its bitwise representation.
22029         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
22030         * lib/regexec.c (check_dst_limits_calc_pos_1,
22031         check_subexp_matching_top):
22032         Likewise.
22033         * lib/regex_internal.c (re_string_reconstruct):
22034         Don't assume UCHAR_MAX == 255.
22035         * lib/regex_internal.h (bitset_set_all): Likewise.
22036         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
22037         All uses changed.
22038         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
22039         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
22040         All uses changed.
22041         (BITSET_WORD_MAX): New macro.
22042         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
22043         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
22044         (bitset_empty, bitset_copy):
22045         Prefer sizeof (bitset) to multiplying it out ourselves.
22046         (bitset_not_merge): Remove; unused.
22047         (bitset_contain): Return bool, not unsigned int with one bit on.
22048         All callers changed.
22049         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
22050         alignment than re_node_set; do this by defining a new internal
22051         type struct dests_alloc and using it to allocate memory.
22052
22053 2005-09-05  Bruno Haible  <bruno@clisp.org>
22054
22055         * gnulib-tool (func_import): Fix comparison in handling of symbolic
22056         links.
22057
22058 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
22059
22060         * modules/size_max (Makefile.am): Add size_max.h
22061
22062 2005-09-04  Derek Price  <derek@ximbiot.com>
22063
22064         * gnulib-tool (func_import): Fix reversed $symbolic logic.
22065
22066 2005-09-03  Simon Josefsson  <jas@extundo.com>
22067
22068         * gnulib-tool: Fix typo.
22069
22070 2005-09-03  Simon Josefsson  <jas@extundo.com>
22071
22072         * config/srclist.txt: Add glibc bug 1293.
22073
22074 2005-09-03  Derek Price  <derek@ximbiot.com>
22075
22076         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
22077         From Larry Jones <lawrence.jones@ugs.com>.
22078
22079 2005-09-02  Simon Josefsson  <jas@extundo.com>
22080
22081         * modules/socklen: New file.
22082
22083 2005-09-02  Simon Josefsson  <jas@extundo.com>
22084
22085         * modules/havelib: New module.
22086
22087         * modules/gettext, modules/iconv, modules/lock, modules/readline:
22088         Use havelib.
22089
22090 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
22091
22092         Check for arithmetic overflow when calculating sizes, to prevent
22093         some buffer-overflow issues.  These patches are conservative, in the
22094         sense that when I couldn't determine whether an overflow was possible,
22095         I inserted a run-time check.
22096         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
22097         macros.
22098         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
22099         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
22100         (re_xnrealloc, re_x2nrealloc): New inline functions.
22101         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
22102         parse_bracket_exp):
22103         (build_equiv_class, build_charclass): Check for arithmetic overflow
22104         in size expression calculations.
22105         * lib/regex_internal.c (re_string_realloc_buffers):
22106         (build_wcs_upper_buffer, re_node_set_add_intersect):
22107         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
22108         (re_dfa_add_node, register_state): Likewise.
22109         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
22110         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
22111         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
22112         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
22113
22114 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
22115
22116         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
22117         m4/ulonglong.m4.  Problem reported by Martin Lambers.
22118
22119 2005-09-02  Bruno Haible  <bruno@clisp.org>
22120
22121         Support for lib vs. lib64 distinction on biarch platforms.
22122         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
22123         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
22124         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
22125
22126 2005-09-02  Bruno Haible  <bruno@clisp.org>
22127
22128         * gnulib-tool (import): In the other first-use case, provide defaults
22129         as well.
22130
22131 2005-09-02  Bruno Haible  <bruno@clisp.org>
22132
22133         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
22134         patches not yet found in the latest gettext release.
22135
22136 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22137
22138         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
22139         to avoid a collision with bits/local_lim.h in glibc.
22140         All uses changed.  Problem reported by Dmitry V. Levin in
22141         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
22142
22143         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
22144         bugs in int versus size_t comparisons.
22145         (re_string_context_at): Fix bug where the code assumed that
22146         Idx is signed.
22147
22148         Use bool where appropriate.
22149         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
22150         All callers changed.
22151         (calc_eclosure_iter): Likewise, for ROOT arg.
22152         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
22153         (build_charclass_op): Likewise, for NON_MATCH arg.
22154         * lib/regex_internal.c (re_string_allocate, re_string_construct):
22155         (re_string_construct_common): Likewise, for ICASE arg.
22156         * lib/regexec.c (re_search_2_stub, re_search_stub):
22157         Likewise, for RET_LEN arg.
22158         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
22159         (set_regs): Likewise, for FL_BACKTRACK arg.
22160         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
22161         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
22162         (calc_eclosure_iter, parse_bracket_exp):
22163         Use bool for internal variables that are booleans.
22164         * lib/regexec.c (re_search_internal, check_matching,
22165         proceed_next_node):
22166         (set_regs, build_sifted_states, sift_states_bkref):
22167         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
22168         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
22169         (find_collation_sequence_value):
22170         Likewise.
22171         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
22172         (re_node_set_compare):
22173         Return bool, not int. All callers changed.
22174         * lib/regexec.c (check_halt_node_context, check_dst_limits):
22175         (build_trtable, check_node_accept): Likewise.
22176         * lib/regex_internal.h: Include stdbool.h.
22177
22178         Fix bugs uncovered when converting to bool.
22179         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
22180         failure instead of charging ahead blindly.
22181         * lib/regex_internal.c (register_state): Likewise.
22182         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
22183         for freeing internal storage.
22184         (group_nodes_into_DFA_states): Use unsigned int, not int, for
22185         bitset pieces used as boolean, to avoid undefined behavior
22186         on hosts that do int overflow checking.
22187
22188 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22189
22190         * config/srclist.txt: Add glibc bugs 1285-1287.
22191
22192 2005-09-01  Jim Meyering  <jim@meyering.net>
22193
22194         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
22195         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
22196         Require gl_STAT_MACROS, too.
22197
22198 2005-09-01  Bruno Haible  <bruno@clisp.org>
22199
22200         * gnulib-tool (import): In the first-use case, provide defaults.
22201
22202 2005-09-01  Bruno Haible  <bruno@clisp.org>
22203
22204         * gnulib-tool (func_import): Remove the .tmp files.
22205
22206 2005-09-01  Bruno Haible  <bruno@clisp.org>
22207
22208         * gnulib-tool (func_import): Fix handling of symbolic links.
22209
22210 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22211
22212         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
22213         old glibc regex code mishandles strings longer than 2**31 bytes.
22214         This patch fixes this when the regex code is used in gnulib
22215         (i.e., outside glibc).
22216
22217         This patch should not affect the use of the regex code inside
22218         glibc.  No doubt this problem also needs to be handled for glibc
22219         as well, but the result will be an incompatible change to the
22220         glibc ABI, and the old ABI will have to be supported too.  That
22221         can be the the subject for another patch.
22222
22223         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
22224         governing whether the rest of this patch is active.  By default,
22225         the macro is disabled and the patch has no effect.
22226         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
22227         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
22228         (struct re_pattern_buffer, re_search, re_search_2, re_match):
22229         (re_match_2, re_set_registers): Use the new types.
22230         * lib/regex_internal.h (Idx, re_hashval_t): New types.
22231         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
22232         New macros.
22233         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
22234         (re_string_context_at, bin_tree_t, re_dfastate_t):
22235         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
22236         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
22237         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
22238         (re_string_char_size_at, re_string_wchar_at):
22239         (re_string_elem_size_at):
22240         Use the new types and macros to port to 64-bit hosts.
22241         Use unsigned types for internal values, so that the code
22242         mostly works even for arrays larger than SSIZE_MAX.
22243         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
22244         (search_duplicated_node, calc_eclosure_iter, fetch_number):
22245         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
22246         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
22247         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
22248         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
22249         (calc_inveclosure, parse_dup_op, build_range_exp):
22250         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
22251         (fetch_number, create_token_tree, mark_opt_subexp):
22252         Likewise.
22253         * lib/regex_internal.c (re_string_construct_common,
22254         create_ci_newstate):
22255         (create_cd_newstate, re_string_allocate, re_string_construct):
22256         (re_string_realloc_buffers, build_wcs_upper_buffer):
22257         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
22258         (re_string_reconstruct, re_string_peek_byte_case):
22259         (re_string_fetch_byte_case, re_string_context_at):
22260         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
22261         (re_node_set_init_copy, re_node_set_add_intersect):
22262         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
22263         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
22264         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
22265         (re_acquire_state, re_acquire_state_context, register_state):
22266         Likewise.
22267         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
22268         search_cur_bkref_entry):
22269         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
22270         (re_search_internal, re_search_2_stub, re_search_stub)
22271         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
22272         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
22273         (update_cur_sifted_state, check_dst_limits):
22274         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
22275         (check_subexp_limits, sift_states_bkref, merge_state_array):
22276         (check_subexp_matching_top, get_subexp, get_subexp_sub):
22277         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
22278         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
22279         (expand_bkref_cache, check_node_accept_bytes):
22280         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
22281         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
22282         (acquire_init_state_context, check_halt_node_context):
22283         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
22284         (sift_states_backward, clean_state_log_if_needed):
22285         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
22286         (find_recover_state, transit_state_sb, transit_state_mb):
22287         (transit_state_bkref, build_trtable, match_ctx_clean):
22288         Likewise.
22289         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
22290         to work around an assumption that REG_MISSING is negative.
22291
22292         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
22293         (seek_collating_symbol_entry) [defined _LIBC]:
22294         (lookup_collation_sequence_value) [defined _LIBC]:
22295         (build_range_exp, build_collating_symbol) [defined _LIBC]:
22296         Use prototypes rather than old-style function definitions.
22297         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
22298         (transit_state_sb) [0]:
22299         (find_collation_sequence_value) [defined _LIBC]: Likewise.
22300
22301         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
22302         rm_eo.
22303
22304         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
22305         (optimize_subexps, lower_subexp):
22306         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
22307         since the signed shift might overflow.  Use 1u<<31 instead.
22308         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
22309         Likewise.
22310         * lib/regexec.c (check_dst_limits_calc_pos_1,
22311         check_subexp_matching_top): Likewise.
22312
22313         * lib/regcomp.c (optimize_subexps, lower_subexp):
22314         Use CHAR_BIT rather than 8, for clarity.
22315         * lib/regexec.c (check_dst_limits_calc_pos_1):
22316         (check_subexp_matching_top): Likewise.
22317         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
22318         have to worry about portability issues when shifting it left.
22319         Remove no-longer-needed test for table_size > 0.
22320         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
22321         in a word, as the resulting behavior is undefined.
22322         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
22323         in one case, a <= should have been an <, and in another case the
22324         whole test was missing.
22325         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
22326         the standard name CHAR_BIT.
22327         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
22328         this is not true on one's complement and signed-magnitude hosts.
22329
22330         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
22331         next_last_offset.
22332         (struct re_dfa_t): Remove unused member states_alloc.
22333         * lib/regcomp.c (init_dfa): Don't initialize unused members.
22334
22335 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22336
22337         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
22338         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
22339         and large-file glibc and in 32-bit large-file Solaris.
22340
22341 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22342
22343         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
22344         lengths fit in regoff_t; this isn't true if regoff_t is the same
22345         width as size_t.
22346         * lib/regex.c (re_search_internal): 5th arg is LAST_START
22347         (= START + RANGE) instead of RANGE.  This avoids overflow
22348         problems when regoff_t is the same width as size_t.
22349         All callers changed.
22350         (re_search_2_stub): Check for overflow when adding the
22351         sizes of the two strings.
22352         (re_search_stub): Check for overflow when adding START
22353         to RANGE; if it occurs, substitute the extreme value.
22354
22355 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22356
22357         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
22358
22359 2005-08-31  Jim Meyering  <jim@meyering.net>
22360
22361         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
22362         a pointer-to-const.
22363         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
22364         (register_state): Likewise.
22365         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
22366         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
22367         (group_nodes_into_DFAstates): Likewise.
22368
22369 2005-08-31  Jim Meyering  <jim@meyering.net>
22370
22371         * check-module: Add a FIXME comment.
22372
22373 2005-08-31  Eric Blake  <ebb9@byu.net>
22374
22375         * modules/unistd-safer (Files): Add unistd--.h.
22376         * modules/stdio-safer (Files): Add stdio--.h.
22377
22378 2005-08-31  Derek Price  <derek@ximbiot.com>
22379
22380         * lib/getdelim.c (getdelim): Return EOF on EOF.
22381         Reported by Larry Jones <lawrence.jones@ugs.com>.
22382
22383 2005-08-31  Bruno Haible  <bruno@clisp.org>
22384
22385         Avoid unnecessary diffs in the generated lib/Makefile.am.
22386         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
22387         the generated files.
22388         (func_import): Don't set cmd.
22389
22390 2005-08-31  Bruno Haible  <bruno@clisp.org>
22391
22392         * lib/strstr.c: Include <stddef.h>, for NULL.
22393         * lib/strcasestr.c: Likewise.
22394         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22395
22396 2005-08-31  Bruno Haible  <bruno@clisp.org>
22397
22398         * gnulib-tool: New option --macro-prefix.
22399         (func_import): Use macro_prefix.
22400         (import): Handle option --macro-prefix.
22401
22402 2005-08-31  Bruno Haible  <bruno@clisp.org>
22403
22404         * gnulib-tool (import): Rename most ac_* variables to cached_*.
22405         Also use new variables cached_lgpl, cached_libtool.
22406
22407 2005-08-31  Bruno Haible  <bruno@clisp.org>
22408
22409         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
22410         always instantiating them.
22411
22412 2005-08-31  Bruno Haible  <bruno@clisp.org>
22413
22414         * gnulib-tool (func_import): Read the previous cached settings
22415         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
22416         earlier added by gnulib but are now dropped. Warn when a gnulib file
22417         overwrites a non-gnulib file.
22418
22419 2005-08-31  Bruno Haible  <bruno@clisp.org>
22420
22421         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
22422         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
22423         projects that don't keep autogenerated files in CVS. Put into
22424         actioncmd only the specified modules, not the transitive closure.
22425
22426 2005-08-31  Bruno Haible  <bruno@clisp.org>
22427
22428         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
22429         Create directories that shall be filled.
22430         (import): Don't look for gl_* macros in configure.ac. Recurse across
22431         all directories containing a gnulib-cache.m4 files, if meaningful.
22432
22433 2005-08-31  Bruno Haible  <bruno@clisp.org>
22434
22435         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
22436         (import): Set seen_libtool when we see gl_LIBTOOL.
22437
22438 2005-08-31  Bruno Haible  <bruno@clisp.org>
22439
22440         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
22441         declaration macro definitions from generated gnulib.m4.
22442
22443 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
22444
22445         * lib/iconvme.h: Add prototype for iconv_alloc.
22446
22447 2005-08-29  Simon Josefsson  <jas@extundo.com>
22448
22449         * lib/iconvme.c: Fix errno.
22450
22451 2005-08-29  Bruno Haible  <bruno@clisp.org>
22452
22453         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
22454         that it works when the directory contains spaces.
22455
22456 2005-08-29  Bruno Haible  <bruno@clisp.org>
22457
22458         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
22459
22460 2005-08-29  Bruno Haible  <bruno@clisp.org>
22461
22462         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
22463         Emit more advice.
22464
22465 2005-08-29  Bruno Haible  <bruno@clisp.org>
22466         and Stepan Kasal  <kasal@ucw.cz>
22467
22468         * check-module: If more parameters are given, check each of them
22469         separately; add more exceptions, as noted by Jim Meyering.
22470         (check_module): New procedure.
22471         (%exempt_header): Now contains all exceptions.
22472
22473 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
22474
22475         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
22476
22477 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
22478
22479         * lib/iconvme.c: Split iconv_string into iconv_alloc.
22480
22481 2005-08-28  Bruno Haible  <bruno@clisp.org>
22482
22483         * m4/gnulib-tool.m4: New file.
22484
22485 2005-08-27  Jim Meyering  <jim@meyering.net>
22486
22487         * modules/unistd-safer (Files): Add pipe-safer.c.
22488         * modules/fcntl-safer (Files): Add creat-safer.c.
22489
22490 2005-08-27  Jim Meyering  <jim@meyering.net>
22491
22492         * m4/stdlib-safer.m4: New file.  From coreutils.
22493         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
22494         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
22495         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
22496         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
22497         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
22498
22499 2005-08-27  Jim Meyering  <jim@meyering.net>
22500
22501         * lib/fopen-safer.c: Merge minor changes from coreutils.
22502         * lib/dup-safer.c: Likewise.
22503         * lib/fd-safer.c: Likewise.
22504
22505         Merge from coreutils.
22506         * lib/stdio--.h: New file.
22507         * lib/stdlib--.h: New file.
22508         * lib/mkstemp-safer.c: New file.
22509
22510         GNU tar needs these.
22511         * lib/pipe-safer.c: New file.
22512         * lib/creat-safer.c: New file.
22513         * lib/fcntl--.h (creat): Define to creat_safer.
22514         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
22515         * lib/unistd--.h (pipe): Define to pipe_safer.
22516         * lib/unistd-safer.h: Declare pipe_safer.
22517
22518 2005-08-26  Simon Josefsson  <jas@extundo.com>
22519
22520         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
22521         Haible <bruno@clisp.org>.
22522
22523 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
22524
22525         * lib/regex_internal.h: Remove all references to
22526         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
22527         or better.
22528         (bitset_not, bitset_merge, bitset_not_merge):
22529         (bitset_mask, re_string_allocate, re_string_construct):
22530         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
22531         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
22532         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
22533         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
22534         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
22535         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
22536         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
22537         (re_acquire_state_context):
22538         Remove unnecessary forward decls.
22539         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
22540         Put __attribute at function definition,
22541         now that the function decl has been removed.
22542         * lib/regex_internal.c (re_string_peek_byte_case):
22543         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
22544         Likewise.
22545
22546 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
22547
22548         * m4/regex.m4: Add AC_PREREQ(2.50).
22549         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
22550
22551 2005-08-25  Simon Josefsson  <jas@extundo.com>
22552
22553         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
22554         __fsetlocking.
22555
22556 2005-08-25  Simon Josefsson  <jas@extundo.com>
22557
22558         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
22559         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
22560         GLIBC specific code.
22561
22562 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22563
22564         Make regex safe for g++.  This fixes one real bug (an "err"
22565         that should have been "*err").  g++ problem reported by
22566         Sam Steingold.
22567         * lib/regex_internal.h (re_calloc): New macro, consistent with
22568         re_malloc etc.  All callers of calloc changed to use re_calloc.
22569         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
22570         not int.  All callers changed.
22571         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
22572         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
22573         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
22574         (find_recover_state): Change "err" to "*err"; this fixes what
22575         appears to be a real bug.
22576         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
22577         versus int.
22578
22579 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22580
22581         * modules/regex (Depends-on): Add malloc, since the code
22582         assumes that !malloc(0) means failure.
22583
22584 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22585
22586         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
22587
22588         alloca modernization/simplification for regex.
22589         * lib/regex.c: Remove portability cruft for alloca.  This no longer
22590         needs to be at the start of the file, and can be moved into
22591         regex_internal.h and simplified.
22592         * lib/regex_internal.h: Include <alloca.h>.
22593         (__libc_use_alloca) [!defined _LIBC]: New macro.
22594         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
22595         now works outside glibc.
22596
22597 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22598
22599         * config/srclist.txt: Add glibc bugs 1241, 1245.
22600
22601 2005-08-25  Jim Meyering  <jim@meyering.net>
22602
22603         * lib/open-safer.c: Include <config.h>.
22604         Otherwise, we'd lose LARGEFILE support in any file using
22605         e.g. "fcntl--.h"
22606
22607 2005-08-25  Bruno Haible  <bruno@clisp.org>
22608
22609         * m4/minmax.m4: Require autoconf 2.52.
22610         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
22611         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
22612         alternatives of translit over the alphabet.
22613         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
22614
22615 2005-08-24  Simon Josefsson  <jas@extundo.com>
22616
22617         * tests/test-getpass.c: New file.
22618
22619 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22620
22621         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
22622         for GNU regex features.
22623
22624 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22625
22626         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
22627         * lib/regex.h (regerror): Likewise.
22628
22629         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
22630         requires this.  (The code never needed it.)
22631
22632         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
22633         All uses of recently-renamed identifiers changed to use the new,
22634         POSIX-compliant names.  The code will build and run just fine
22635         without these changes, but it's better to eat our own dog food
22636         and use the standard-conforming names.
22637
22638         * lib/regex.h: Fix a multitude of POSIX name space violations.
22639         These changes have an effect only for programs that define
22640         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
22641         do not change anything for programs compiled in the normal way.
22642         Also, there is no effect on the ABI.
22643
22644         (_REGEX_SOURCE): New macro.
22645         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
22646         defined and _GNU_SOURCE is not; this fixes a name space violation.
22647
22648         Rename the following macros to obey POSIX requirements.
22649         The old names are still visible as macros if _REGEX_SOURCE is defined.
22650         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
22651         RE_BACKSLASH_ESCAPE_IN_LISTS.
22652         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
22653         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
22654         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
22655         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
22656         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
22657         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
22658         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
22659         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
22660         (REG_INTERVALS): renamed from RE_INTERVALS.
22661         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
22662         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
22663         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
22664         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
22665         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
22666         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
22667         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
22668         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
22669         RE_UNMATCHED_RIGHT_PAREN_ORD.
22670         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
22671         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
22672         (REG_DEBUG): renamed from RE_DEBUG.
22673         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
22674         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
22675         unusual, since we can't clash with the POSIX REG_ICASE.
22676         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
22677         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
22678         (REG_NO_SUB): renamed from RE_NO_SUB.
22679         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
22680         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
22681         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
22682         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
22683         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
22684         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
22685         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
22686         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
22687         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
22688         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
22689         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
22690         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
22691         RE_SYNTAX_POSIX_MINIMAL_BASIC.
22692         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
22693         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
22694         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
22695         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
22696         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
22697         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
22698         (REG_FIXED): Renamed from REGS_FIXED.
22699         (REG_NREGS): Renamed from RE_NREGS.
22700
22701         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
22702         of other REG_* macros, since POSIX says the user is allowed to
22703         #undef these macros selectively.
22704
22705         (reg_errcode_t): Update comment stating what other tables need
22706         to be consistent.
22707
22708         Rename the following enum values to obey POSIX requirements.
22709         The old names are still visible as macros.
22710         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
22711         is not defined, since GNU is supposed to be a superset of POSIX as
22712         much as possible, and since we want reg_errcode_t to be a signed
22713         type for implementation consistency.
22714         (_REG_NOERROR): Renamed from REG_NOERROR.
22715         (_REG_NOMATCH): Renamed from REG_NOMATCH.
22716         (_REG_BADPAT): Renamed from REG_BADPAT.
22717         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
22718         (_REG_ECTYPE): Renamed from REG_ECTYPE.
22719         (_REG_EESCAPE): Renamed from REG_EESCAPE.
22720         (_REG_ESUBREG): Renamed from REG_ESUBREG.
22721         (_REG_EBRACK): Renamed from REG_EBRACK.
22722         (_REG_EPAREN): Renamed from REG_EPAREN.
22723         (_REG_EBRACE): Renamed from REG_EBRACE.
22724         (_REG_BADBR): Renamed from REG_BADBR.
22725         (_REG_ERANGE): Renamed from REG_ERANGE.
22726         (_REG_ESPACE): Renamed from REG_ESPACE.
22727         (_REG_BADRPT): Renamed from REG_BADRPT.
22728         (_REG_EEND): Renamed from REG_EEND.
22729         (_REG_ESIZE): Renamed from REG_ESIZE.
22730         (_REG_ERPAREN): Renamed from REG_ERPAREN.
22731         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
22732         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
22733         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
22734         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
22735
22736         (_REG_RE_NAME, _REG_RM_NAME): New macros.
22737         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
22738         changed.  But support the old name if the new one is not defined
22739         and if _REGEX_SOURCE.
22740
22741         Change the following member names in struct re_pattern_buffer.
22742         The old names are still supported if !_REGEX_SOURCE.
22743         The new names are always supported, regardless of _REGEX_SOURCE.
22744         (re_buffer): Renamed from buffer.
22745         (re_allocated): Renamed from allocated.
22746         (re_used): Renamed from used.
22747         (re_syntax): Renamed from syntax.
22748         (re_fastmap): Renamed from fastmap.
22749         (re_translate): Renamed from translate.
22750         (re_can_be_null): Renamed from can_be_null.
22751         (re_regs_allocated): Renamed from regs_allocated.
22752         (re_fastmap_accurate): Renamed from fastmap_accurate.
22753         (re_no_sub): Renamed from no_sub.
22754         (re_not_bol): Renamed from not_bol.
22755         (re_not_eol): Renamed from not_eol.
22756         (re_newline_anchor): Renamed from newline_anchor.
22757
22758         Change the following member names in struct re_registers.
22759         The old names are still supported if !_REGEX_SOURCE.
22760         The new names are always supported, regardless of _REGEX_SOURCE.
22761         (rm_num_regs): Renamed from num_regs.
22762         (rm_start): Renamed from start.
22763         (rm_end): Renamed from end.
22764
22765         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
22766         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
22767         Prepend __ to parameter names.
22768
22769         Undo yesterday's changes.
22770
22771 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22772
22773         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
22774         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
22775         lib/regex.c.
22776
22777 2005-08-24  Jim Meyering  <jim@meyering.net>
22778
22779         Sync from coreutils.
22780         * m4/fcntl-safer.m4: New file.
22781
22782         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
22783         and object files for this module.
22784
22785 2005-08-24  Jim Meyering  <jim@meyering.net>
22786
22787         Sync from coreutils.
22788         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
22789
22790 2005-08-24  Jim Meyering  <jim@meyering.net>
22791
22792         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
22793         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
22794
22795 2005-08-24  Jim Meyering  <jim@meyering.net>
22796
22797         * modules/fcntl-safer: New module.
22798         * modules/fts (Depends-on): Add fcntl-safer.
22799         * MODULES.html.sh (File descriptor based Input/Output):
22800         Add fcntl-safer.
22801
22802 2005-08-24  Bruno Haible  <bruno@clisp.org>
22803
22804         Support for unit test modules.
22805         * modules/README: Mention tests modules.
22806         * modules/TEMPLATE-TESTS: New file.
22807         * gnulib-tool: New options --extract-tests-module, --with-tests and
22808         --tests-base (unused for the moment).
22809         (testsbase, inctests): New variables.
22810         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
22811         (func_verify_module): Exclude TEMPLATE-TESTS.
22812         (func_verify_nontests_module, func_verify_tests_module): New functions.
22813         (func_get_dependencies): Add implicit dependency for tests modules.
22814         (func_get_tests_module): New function.
22815         (func_modules_transitive_closure): When --with-tests was specified,
22816         include the unit tests as well, unless explicitly avoided.
22817         (func_emit_lib_Makefile_am): Ignore the tests modules here.
22818         (func_emit_tests_Makefile_am): New function.
22819         (func_create_testdir): When --with-tests was specified, emit a
22820         tests/ directory.
22821         * MODULES.html.sh (Future developments): Update.
22822
22823 2005-08-24  Bruno Haible  <bruno@clisp.org>
22824
22825         * modules/tls-tests: New file.
22826         * tests/test-tls.c: New file, from GNU gettext.
22827
22828 2005-08-24  Bruno Haible  <bruno@clisp.org>
22829
22830         * modules/lock-tests: New file.
22831         * tests/test-lock.c: New file, from GNU gettext.
22832
22833 2005-08-24  Bruno Haible  <bruno@clisp.org>
22834
22835         * lib/lock.h: Add multiple inclusion guard.
22836         * lib/tls.h: Add multiple inclusion guard.
22837
22838 2005-08-24  Bruno Haible  <bruno@clisp.org>
22839
22840         * gnulib-tool: Add support for the --aux-dir option to
22841         --create-testdir, --create-megatestdir, --test, --megatest.
22842         (func_create_testdir, func_create_megatestdir): Optionally emit a
22843         AC_CONFIG_AUX_DIR directive.
22844         (create-testdir, create-megatestdir, test, megatest): Provide a
22845         default value for $auxdir.
22846
22847 2005-08-24  Bruno Haible  <bruno@clisp.org>
22848
22849         * gnulib-tool (import): Use compound statement instead of subshell
22850         where possible.
22851
22852 2005-08-24  Bruno Haible  <bruno@clisp.org>
22853
22854         * gnulib-tool (import): Change --aux-dir default to "build-aux".
22855
22856 2005-08-24  Bruno Haible  <bruno@clisp.org>
22857
22858         * gnulib-tool (func_version): Update.
22859
22860 2005-08-24  Bruno Haible  <bruno@clisp.org>
22861
22862         * gnulib-tool (func_import, func_create_testdir,
22863         func_create_megatestdir): Quote all autoconf macro arguments.
22864
22865 2005-08-24  Bruno Haible  <bruno@clisp.org>
22866
22867         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
22868         option --force, because --force causes the aclocal.m4 of each
22869         subdirectory to be newer than the corresponding config.h.in.
22870
22871 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22872
22873         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
22874         All contents moved to gl_REGEX.
22875         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
22876         assume that it does.
22877
22878 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22879
22880         * lib/regex.h (REG_NOSYS)
22881         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
22882         Define, since POSIX requires it as of 2001.
22883         (_REG_ENOSYS)
22884         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
22885         New private symbol, used to keep the enum signed in all cases.
22886         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
22887         Youngman in
22888         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
22889
22890         * lib/regex_internal.c (re_string_skip_chars, register_state):
22891         (calc_state_hash):
22892         Remove forward decls; no longer needed now that we use prototypes.
22893         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
22894         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
22895         (clean_state_log_if_needed): Likewise.
22896
22897 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22898
22899         * config/srclist.txt: Add glibc bugs 1231-1233.
22900
22901 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
22902
22903         Fix problems reported by Sam Steingold in
22904         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
22905         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
22906         assumed that reg_errcode_t is a signed type, which is not
22907         necessarily true if _XOPEN_SOURCE is not defined.
22908         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
22909         since some compilers warn about it otherwise.
22910
22911 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
22912
22913         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
22914         (init_word_char, create_initial_state, duplicate_node_closure):
22915         (fetch_token, peek_token_bracket, build_range_exp):
22916         (build_collating_symbol): Remove forward decls; no longer needed
22917         now that we use prototypes.
22918
22919         * lib/regcomp.c:
22920         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
22921         (re_compile_fastmap_iter, regcomp, regerror, regfree):
22922         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
22923         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
22924         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
22925         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
22926         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
22927         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
22928         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
22929         (build_range_exp, build_collating_symbol, parse_bracket_exp):
22930         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
22931         (build_charclass, build_charclass_op, fetch_number, create_tree):
22932         (create_token_tree, mark_opt_subexp, duplicate_tree):
22933         Use prototypes rather than old-style definitions.
22934
22935         * lib/regex_internal.c:
22936         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
22937         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
22938         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
22939         (re_string_reconstruct, re_string_peek_byte_case):
22940         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
22941         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
22942         (re_node_set_init_copy, re_node_set_add_intersect):
22943         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
22944         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
22945         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
22946         (re_acquire_state, re_acquire_state_context, register_state):
22947         (create_ci_newstate, create_cd_newstate, free_state):
22948         Likewise.
22949         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
22950         re_search_2):
22951         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
22952         (re_search_internal, prune_impossible_nodes):
22953         (acquire_init_state_context, check_matching, static):
22954         (check_halt_node_context, check_halt_state_context, proceed_next_node):
22955         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
22956         (update_regs, sift_states_backward, build_sifted_states):
22957         (clean_state_log_if_needed, merge_state_array):
22958         (update_cur_sifted_state, add_epsilon_src_nodes):
22959         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
22960         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
22961         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
22962         (find_recover_state, check_subexp_matching_top, transit_state_mb):
22963         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
22964         (check_arrival, check_arrival_add_next_nodes):
22965         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
22966         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
22967         (check_node_accept_bytes, check_node_accept, extend_buffers):
22968         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
22969         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
22970         (sift_ctx_init):
22971         Likewise.
22972
22973         * lib/regex_internal.h:
22974         (re_string_allocate, re_string_construct, re_string_reconstruct):
22975         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
22976         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
22977         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
22978         (re_string_context_at, re_string_peek_byte_case):
22979         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
22980         is defined, since we now use prototypes always.
22981
22982         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
22983         C89 or better.  All uses removed.
22984
22985 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
22986
22987         * config/srclist.txt: Add glibc bugs 1220-1227.
22988
22989 2005-08-20  Jim Meyering  <jim@meyering.net>
22990
22991         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
22992         of unused local, dfa.
22993
22994 2005-08-20  Bruno Haible  <bruno@clisp.org>
22995
22996         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
22997
22998 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22999
23000         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
23001         (re_node_set_insert_last, re_dfa_add_node):
23002         Rename local variables to avoid GCC shadowing warnings.
23003
23004 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23005
23006         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
23007         [defined lint]: Suppress bogus uninitialized-variable warnings.
23008
23009         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
23010         and let the caller return REG_ESPACE if out of space.  This
23011         removes an uninitialied-variable warning with GCC 4.0.1, and also
23012         avoids taking the address of a local variable.  All callers
23013         changed.
23014
23015 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23016
23017         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
23018         $LIBCSRC/posix/regexec.c.
23019         Add glibc bug 1217 for regcomp.c.
23020
23021 2005-08-19  Jim Meyering  <jim@meyering.net>
23022
23023         * lib/regexec.c (proceed_next_node): Redo local variables to
23024         avoid GCC shadowing warnings.
23025
23026 2005-08-18  Bruno Haible  <bruno@clisp.org>
23027
23028         * lib/strstr.c (strstr): Fix return value in multibyte case.
23029         * lib/strcasestr.c (strcasestr): Likewise.
23030
23031 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23032
23033         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
23034
23035 2005-08-17  Jim Meyering  <jim@meyering.net>
23036
23037         Make the %s format (seconds since the epoch) work for a negative
23038         number and when used with a zero-padded field width, e.g. %015s.
23039
23040         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
23041         label so that it precedes the code to set `digits'.  Otherwise,
23042         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
23043         print `00-22'.  Now, it prints `-0022', as it should.
23044
23045 2005-08-17  Bruno Haible  <bruno@clisp.org>
23046
23047         * modules/strstr (Files): Add m4/mbrtowc.m4.
23048         (Depends-on): Add mbuiter.
23049
23050 2005-08-17  Bruno Haible  <bruno@clisp.org>
23051
23052         * modules/strcasestr: New file.
23053         * MODULES.html.sh (String handling, based on ANSI C 89): Add
23054         strcasestr.
23055
23056 2005-08-17  Bruno Haible  <bruno@clisp.org>
23057
23058         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
23059
23060 2005-08-17  Bruno Haible  <bruno@clisp.org>
23061
23062         * modules/mbuiter: New file.
23063         * MODULES.html.sh (Extended multibyte and wide character utilities):
23064         Add mbuiter.
23065
23066 2005-08-17  Bruno Haible  <bruno@clisp.org>
23067
23068         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
23069         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
23070
23071 2005-08-17  Bruno Haible  <bruno@clisp.org>
23072
23073         * m4/strcasestr.m4: New file.
23074
23075 2005-08-17  Bruno Haible  <bruno@clisp.org>
23076
23077         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
23078         * lib/strstr.c: Completely rewritten, with multibyte locale support.
23079
23080 2005-08-17  Bruno Haible  <bruno@clisp.org>
23081
23082         * lib/strcasestr.h: New file.
23083         * lib/strcasestr.c: New file.
23084
23085 2005-08-17  Bruno Haible  <bruno@clisp.org>
23086
23087         * lib/strcasecmp.c: Use mbuiter.h.
23088
23089 2005-08-17  Bruno Haible  <bruno@clisp.org>
23090
23091         * lib/mbuiter.h: New file.
23092
23093 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
23094
23095         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
23096         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
23097         and gl_GETOPT are both invoked via different paths (as happens
23098         with GNU tar CVS because it uses both argp and getopt), the former
23099         wins.
23100
23101 2005-08-16  Bruno Haible  <bruno@clisp.org>
23102
23103         * modules/tls: New file.
23104         * MODULES.html.sh (Multithreading): Add tls.
23105
23106 2005-08-16  Bruno Haible  <bruno@clisp.org>
23107
23108         * modules/strnlen1: New file.
23109         * MODULES.html.sh (String handling): Add strnlen1.
23110
23111 2005-08-16  Bruno Haible  <bruno@clisp.org>
23112
23113         * modules/strcase (Files): Add m4/mbrtowc.m4.
23114         (Depends-on): Add strnlen1, mbchar.
23115
23116 2005-08-16  Bruno Haible  <bruno@clisp.org>
23117
23118         * modules/mbiter: New file.
23119         * MODULES.html.sh (Extended multibyte and wide character utilities):
23120         Add mbiter.
23121
23122 2005-08-16  Bruno Haible  <bruno@clisp.org>
23123
23124         * modules/mbfile: New file.
23125         * MODULES.html.sh (Extended multibyte and wide character utilities):
23126         Add mbfile.
23127
23128 2005-08-16  Bruno Haible  <bruno@clisp.org>
23129
23130         * modules/mbchar: New file.
23131         * MODULES.html.sh (Extended multibyte and wide character utilities):
23132         New section.
23133
23134 2005-08-16  Bruno Haible  <bruno@clisp.org>
23135
23136         * m4/tls.m4: New file, from GNU gettext.
23137
23138 2005-08-16  Bruno Haible  <bruno@clisp.org>
23139
23140         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
23141         always.
23142         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
23143
23144 2005-08-16  Bruno Haible  <bruno@clisp.org>
23145
23146         * m4/mbiter.m4: New file.
23147
23148 2005-08-16  Bruno Haible  <bruno@clisp.org>
23149
23150         * m4/mbfile.m4: New file.
23151
23152 2005-08-16  Bruno Haible  <bruno@clisp.org>
23153
23154         * m4/mbchar.m4: New file.
23155
23156 2005-08-16  Bruno Haible  <bruno@clisp.org>
23157
23158         * lib/tls.h: New file, from GNU gettext.
23159         * lib/tls.c: New file, from GNU gettext.
23160
23161 2005-08-16  Bruno Haible  <bruno@clisp.org>
23162
23163         * lib/strnlen1.h: New file.
23164         * lib/strnlen1.c: New file.
23165
23166 2005-08-16  Bruno Haible  <bruno@clisp.org>
23167
23168         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
23169         (mbi_init): Update.
23170         (mbi_avail, mbi_advance): Let the iteration end before the terminating
23171         NUL byte, not after it.
23172
23173 2005-08-16  Bruno Haible  <bruno@clisp.org>
23174
23175         * lib/strcase.h (strcasecmp): Add note in comments.
23176         * lib/strncasecmp.c: Use code from strcasecmp.c.
23177         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
23178         (strcasecmp): Work correctly in multibyte locales.
23179
23180 2005-08-16  Bruno Haible  <bruno@clisp.org>
23181
23182         * lib/mbiter.h: New file.
23183
23184 2005-08-16  Bruno Haible  <bruno@clisp.org>
23185
23186         * lib/mbfile.h: New file.
23187
23188 2005-08-16  Bruno Haible  <bruno@clisp.org>
23189
23190         * lib/mbchar.h: New file.
23191         * lib/mbchar.c: New file.
23192
23193 2005-08-16  Bruno Haible  <bruno@clisp.org>
23194
23195         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
23196         the valid ones. Makes the comparison operations transitive:
23197         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
23198         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
23199
23200 2005-08-15  Simon Josefsson  <jas@extundo.com>
23201
23202         * modules/ssize_t (License): Change to 'unlimited'.
23203
23204         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
23205
23206 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23207
23208         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
23209         Add comments for each pending glibc patch.
23210
23211 2005-08-15  Bruno Haible  <bruno@clisp.org>
23212
23213         * lib/regex.h (__restrict_arr): Don't define to __restrict if
23214         __cplusplus is defined.
23215
23216 2005-08-14  Jim Meyering  <jim@meyering.net>
23217
23218         Sync from coreutils.
23219
23220         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
23221         Use the hash-table-based cycle-detection code not just when
23222         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
23223         Reported by James Youngman in
23224         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
23225         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
23226         FTS_TIGHT_CYCLE_CHECK.
23227         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
23228         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
23229         once again.
23230         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
23231         * lib/fts.c (fd_safer): Remove decl.
23232         Include fcntl--.h rather than unistd-safer.h
23233         (fts_safe_changedir): Don't call fd_safer; no longer needed
23234         now that we include fcntl--.h.
23235
23236 2005-08-12  Simon Josefsson  <jas@extundo.com>
23237
23238         * modules/getndelim2: Use ssize_t module.
23239         * modules/getnline: Likewise.
23240         * modules/safe-read: Likewise.
23241         * modules/xreadlink: Likewise.
23242
23243         * modules/ssize_t: New file.
23244
23245 2005-08-12  Simon Josefsson  <jas@extundo.com>
23246
23247         * m4/readline.m4: Look for termcap, curses or ncurses if required.
23248
23249 2005-08-12  Simon Josefsson  <jas@extundo.com>
23250
23251         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23252         ssize_t.
23253
23254 2005-08-12  Simon Josefsson  <jas@extundo.com>
23255
23256         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
23257         readline, getdelim and check_version.
23258         (Support for systems lacking ISO C 99: Sizes of integer types):
23259         Add size_max.
23260
23261 2005-08-12  Bruno Haible  <bruno@clisp.org>
23262
23263         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
23264
23265 2005-08-11  Simon Josefsson  <jas@extundo.com>
23266
23267         * modules/readline: New file.
23268
23269         * modules/strnlen (Files): Add strnlen.h.
23270
23271 2005-08-11  Simon Josefsson  <jas@extundo.com>
23272
23273         * m4/readline.m4: New file.
23274
23275 2005-08-11  Simon Josefsson  <jas@extundo.com>
23276
23277         * lib/readline.h, readline.c: New file.
23278
23279 2005-08-11  Simon Josefsson  <jas@extundo.com>
23280
23281         * doc/gnulib.texi (Initial import, Finishing touches): Mention
23282         gl_AVOID.
23283
23284 2005-08-11  Bruno Haible  <bruno@clisp.org>
23285
23286         * lib/strnlen.h (strnlen): Change parameter name to match comment.
23287
23288 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
23289
23290         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
23291
23292 2005-08-10  Simon Josefsson  <jas@extundo.com>
23293
23294         * tests/test-iconvme.c: New file.
23295
23296 2005-08-10  Simon Josefsson  <jas@extundo.com>
23297
23298         * m4/strnlen.m4: New file.
23299
23300         * m4/strndup.m4: Don't check for strnlen declaration, done in
23301         strnlen.m4.
23302
23303 2005-08-10  Simon Josefsson  <jas@extundo.com>
23304
23305         * lib/strndup.c: Use strnlen.h.
23306
23307         * lib/strnlen.h: New file.
23308
23309 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
23310
23311         * README: Typos.
23312
23313 2005-08-02  Simon Josefsson  <jas@extundo.com>
23314
23315         * modules/readline: New file.
23316
23317 2005-08-02  Simon Josefsson  <jas@extundo.com>
23318
23319         * modules/getdelim: New file.
23320
23321         * modules/getline: Rewrite, don't use getndelim2.
23322
23323 2005-08-02  Simon Josefsson  <jas@extundo.com>
23324
23325         * m4/getline.m4: Separate out getdelim stuff into separate module.
23326
23327         * m4/getdelim.m4: New file.
23328
23329 2005-08-02  Simon Josefsson  <jas@extundo.com>
23330
23331         * lib/getline.h, getline.c: Rewrite.
23332
23333         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
23334
23335 2005-07-31  Bruno Haible  <bruno@clisp.org>
23336
23337         * lib/lock.h (gl_lock_initializer): New macro.
23338         (gl_lock_define_initialized): Use it.
23339         (gl_rwlock_initializer): New macro.
23340         (gl_rwlock_define_initialized): Use it.
23341         (gl_recursive_lock_initializer): New macro.
23342         (gl_recursive_lock_define_initialized): Use it.
23343
23344 2005-07-30  Karl Berry  <karl@gnu.org>
23345
23346         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
23347         Report from Ben Pfaff, regarding getopt.
23348
23349 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
23350
23351         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
23352         normal way.
23353         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
23354         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
23355         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
23356         (gl_GETOPT): Use the new macros.  Most of the implementation
23357         is moved to the new macros.  This is for programs like Emacs
23358         that don't want all the functionality of gl_GETOPT.
23359
23360 2005-07-26  Bruno Haible  <bruno@clisp.org>
23361
23362         * m4/lock.m4: Update from GNU gettext.
23363
23364 2005-07-26  Bruno Haible  <bruno@clisp.org>
23365
23366         * lib/lock.h: Update from GNU gettext.
23367         * lib/lock.c: Update from GNU gettext.
23368
23369 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
23370
23371         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
23372         obsolescent AC_TRY_RUN.  Include the default includes files, for
23373         'exit'.
23374
23375 2005-07-24  Bruno Haible  <bruno@clisp.org>
23376
23377         * modules/visibility: New file.
23378         * MODULES.html.sh (Misc): Add visibility.
23379
23380 2005-07-24  Bruno Haible  <bruno@clisp.org>
23381
23382         * m4/visibility.m4: New file.
23383
23384 2005-07-24  Bruno Haible  <bruno@clisp.org>
23385
23386         * doc/visibility.texi: New file.
23387
23388 2005-07-22  Bruno Haible  <bruno@clisp.org>
23389
23390         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
23391         $(ALLOCA_H), redundant through BUILT_SOURCES.
23392         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
23393         redundant through BUILT_SOURCES.
23394         * modules/byteswap (Makefile.am): Remove explicit dependency on
23395         $(BYTESWAP_H), redundant through BUILT_SOURCES.
23396         * modules/fnmatch (Makefile.am): Remove explicit dependency on
23397         $(FNMATCH_H), redundant through BUILT_SOURCES.
23398         * modules/getopt (Makefile.am): Remove explicit dependency on
23399         $(GETOPT_H), redundant through BUILT_SOURCES.
23400         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
23401         redundant through BUILT_SOURCES.
23402         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
23403         redundant through BUILT_SOURCES.
23404         * modules/stdbool (Makefile.am): Remove explicit dependency on
23405         $(STDBOOL_H), redundant through BUILT_SOURCES.
23406         * modules/stdint (Makefile.am): Remove explicit dependency on
23407         $(STDINT_H), redundant through BUILT_SOURCES.
23408         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
23409         Remove explicit dependency on $(SYSEXITS_H).
23410         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
23411
23412 2005-07-18  Simon Josefsson  <jas@extundo.com>
23413
23414         * lib/check-version.c (check_version): Accept identical versions too.
23415
23416 2005-07-18  Bruno Haible  <bruno@clisp.org>
23417
23418         * modules/lock: New file.
23419         * MODULES.html.sh (Multithreading): New section.
23420
23421 2005-07-18  Bruno Haible  <bruno@clisp.org>
23422
23423         * m4/lock.m4: New file, from GNU gettext.
23424
23425 2005-07-18  Bruno Haible  <bruno@clisp.org>
23426
23427         * lib/lock.h: New file, from GNU gettext.
23428         * lib/lock.c: New file, from GNU gettext.
23429
23430 2005-07-18  Bruno Haible  <bruno@clisp.org>
23431
23432         * lib/lock.h (gl_once_t): New type.
23433         (gl_once_define, gl_once): New macros.
23434         * lib/lock.c (fresh_once): New variable.
23435         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
23436         functions.
23437
23438 2005-07-16  Simon Josefsson  <jas@extundo.com>
23439
23440         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
23441         workaround, suggested by Bruno.
23442
23443 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
23444
23445         * modules/xalloc (Depends-on): Add xalloc-die.
23446         * modules/xvasprintf (Depends-on): Add xalloc-die.
23447
23448 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
23449
23450         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
23451         with a minor change.
23452
23453 2005-07-15  Bruno Haible  <bruno@clisp.org>
23454
23455         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
23456         When using lib/poll.c, define poll as rpl_poll.
23457
23458 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
23459
23460         * modules/argp (Depends-on): Remove unlocked-io.
23461
23462 2005-07-14  Derek Price  <derek@ximbiot.com>
23463
23464         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
23465         for glob symlink bug.
23466
23467 2005-07-14  Bruno Haible  <bruno@clisp.org>
23468
23469         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
23470         Instead, test for *_unlocked function declarations directly.
23471
23472 2005-07-11  Simon Josefsson  <jas@extundo.com>
23473
23474         * modules/size_max: New file.
23475
23476         * modules/xsize: Depend on size_max module for size_max.m4.
23477
23478 2005-07-11  Simon Josefsson  <jas@extundo.com>
23479
23480         * lib/size_max.h: New file.
23481
23482 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
23483
23484         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
23485         copyright symbol and the year.
23486         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
23487         (version_etc_va): Use parameterized copyright notice.
23488         Reword to conform to the current GNU coding standards.
23489
23490 2005-07-11  Karl Berry  <karl@gnu.org>
23491
23492         * doc/gnulib.texi (Quoting): new node.
23493         (Initial import): more info, from Patrice.
23494
23495 2005-07-11  Bruno Haible  <bruno@clisp.org>
23496
23497         * gnulib-tool (func_usage): Document option --avoid.
23498         (Command line options): Handle --avoid.
23499         (func_acceptable): New function.
23500         (func_modules_transitive_closure): Use it.
23501
23502 2005-07-11  Bruno Haible  <bruno@clisp.org>
23503
23504         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
23505         Reported by Jim Meyering.
23506
23507 2005-07-10  Bruno Haible  <bruno@clisp.org>
23508
23509         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
23510         Needed when size_t is smaller than 'unsigned int'.
23511         Reported by Paul Eggert.
23512
23513 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23514
23515         * modules/argp (Depends-on): Add unlocked-io
23516
23517 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23518
23519         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
23520         block of defines.
23521
23522 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
23523
23524         * config/srclist.txt: Comment out regcomp.c, since we have a porting
23525         fix now.
23526
23527 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
23528         and Paul Eggert  <eggert@cs.ucla.edu>
23529
23530         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
23531         in wint_t, not wchar_t.  Remove now-unnecessary cast.
23532
23533 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
23534
23535         * modules/regex (Files): Add lib/regex_internal.c,
23536         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
23537         (Depends-on): Add extensions.
23538         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
23539
23540 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
23541
23542         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
23543         pathconf.
23544         * m4/same.m4 (gl_SAME): Likewise.
23545         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
23546
23547         * m4/regex.m4: Adjust to new libc regex implementation.
23548         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
23549         all the .c and .h parts of (the new) regex.
23550         Quote the m4 stuff better.
23551         Check for RE_ICASE bug of old gnulib.
23552         Check for REG_STARTEND of recent libc.
23553         Rename local variables from jm_* to gl_*.
23554         Quote operand of "test -f".
23555         Say "recent enough" version of libc, not "version 2".
23556         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
23557         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
23558         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
23559         Remove check for btowc, isascii.
23560         Require AM_LANGINFO_CODESET.
23561
23562 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
23563
23564         * lib/regex.c, regex.h: Sync from libc.
23565         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
23566         * lib/regexec.c:
23567         New files, synced from libc, except that regex_internal.h
23568         currently has a small porting fix.
23569
23570 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
23571
23572         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
23573         regex_internal.c, regexec.c.
23574         Add regex_internal.h too, but as a comment, since the libc version
23575         is currently broken in gnulib mode.
23576
23577 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
23578
23579         Support programs like Emacs that use gnulib but not gettext.
23580         * MODULES.html.sh (Internationalization functions): Add gettext-h.
23581         * modules/gettext-h: New file.
23582         * modules/gettext (Files): Remove lib/gettext.h.
23583         (Depends-on): Add gettext-h.
23584         (Makefile.am): Remove lib_SOURCES.
23585         * modules/argmatch, modules/c-stack, modules/closeout:
23586         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
23587         * modules/execute, modules/file-type, modules/getaddrinfo:
23588         * modules/getopt, modules/human, modules/javacomp:
23589         * modules/javaexec, modules/mkdir-p, modules/obstack:
23590         * modules/openat, modules/pagealign_alloc, modules/pipe:
23591         * modules/quotearg, modules/regex, modules/rpmatch:
23592         * modules/unicodeio, modules/userspec, modules/version-etc:
23593         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
23594         * modules/xsetenv:
23595         Depend on gettext-h, not gettext.
23596
23597 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
23598
23599         * gnulib-tool (func_import): Add support for 'public domain' license.
23600         * modules/alloca, modules/atexit, modules/memmove:
23601         Now public domain, not GPL.
23602         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
23603         * modules/realloc, modules/strerror, modules/strtod:
23604         Now LGPL, not GPL.
23605
23606 2005-07-05  Bruno Haible  <bruno@clisp.org>
23607
23608         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
23609         autoconf CVS. Needed for mingw.
23610
23611 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
23612
23613         Remove the dependency of the strftime module on the tzset module.
23614         * modules/strftime (Depends-on): Remove dependency on tzset.
23615
23616 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
23617
23618         Remove the dependency of the strftime module on the tzset module.
23619         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
23620         gl_FUNC_TZSET_CLOBBER.
23621
23622 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
23623
23624         Remove the dependency of the strftime module on the tzset module.
23625         * lib/strftime.c (my_strftime)
23626         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
23627         Copy the input structure, to work around some of the bug with
23628         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
23629         Solaris releases, you should also use the tzset module, but we won't
23630         require it as a dependency any more since we don't want LGPLed code
23631         to depend on GPLed code.
23632
23633 2005-07-02  Jim Meyering  <jim@meyering.net>
23634
23635         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
23636         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
23637         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
23638         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
23639
23640 2005-07-02  Jim Meyering  <jim@meyering.net>
23641
23642         * lib/backupfile.c (backup_args): Change a `0' to NULL.
23643
23644 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
23645
23646         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
23647         declares only 'struct timespec;' (!).
23648
23649 2005-07-01  Jim Meyering  <jim@meyering.net>
23650
23651         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
23652         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
23653         * lib/save-cwd.c, tempname.c:
23654         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
23655         and don't include <sys/file.h>).
23656
23657 2005-06-29  Jim Meyering  <jim@meyering.net>
23658
23659         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
23660         type name.  Use the variable name instead.
23661         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
23662         Likewise.
23663
23664 2005-06-28  Simon Josefsson  <jas@extundo.com>
23665
23666         * modules/check-version (Files): Add check-version.m4.
23667
23668 2005-06-28  Simon Josefsson  <jas@extundo.com>
23669
23670         * m4/check-version.m4: New file, suggested by Jim Meyering
23671         <jim@meyering.net>.
23672
23673 2005-06-28  Simon Josefsson  <jas@extundo.com>
23674
23675         * lib/check-version.h, lib/check-version.c: New files.
23676
23677 2005-06-28  Simon Josefsson  <jas@extundo.com>
23678
23679         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
23680         collision with global variable.  Better indentation.  Don't
23681         increment buffer pointer beyond buffer end.  Based on comments
23682         from Paul Eggert <eggert@cs.ucla.edu>.
23683
23684         * lib/base64.h: Indent.
23685
23686 2005-06-28  Simon Josefsson  <jas@extundo.com>
23687
23688         * doc/gnulib.texi (Library version handling): New section.
23689
23690 2005-06-28  Jim Meyering  <jim@meyering.net>
23691
23692         * check-module (find_included_lib_files): Hard-code another
23693         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
23694         but modules/fts-lgpl (correctly) does not list those files.
23695
23696         * modules/canonicalize (Files): Add lib/pathmax.h.
23697
23698 2005-06-25  Simon Josefsson  <jas@extundo.com>
23699
23700         * modules/check-version: New file.
23701
23702 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
23703
23704         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
23705         initializer of struct addrinfo, as an indication that we don't
23706         care how many members the structure has.
23707
23708 2005-06-24  Derek Price  <derek@ximbiot.com>
23709         and Bruno Haible  <bruno@clisp.org>
23710
23711         Remove stat module & update lstat.
23712         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
23713         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23714         * m4/stat.m4: Remove this file.
23715
23716 2005-06-24  Derek Price  <derek@ximbiot.com>
23717         and Bruno Haible  <bruno@clisp.org>
23718
23719         Remove stat module & update lstat.
23720         * lib/stat.c: Remove this file...
23721         (slash_aware_lstat): ...moving this content and its support...
23722         * lib/lstat.c (rpl_lstat): ...into here.
23723         * lib/lstat.h: New file.
23724
23725 2005-06-24  Derek Price  <derek@ximbiot.com>
23726         and Bruno Haible  <bruno@clisp.org>
23727
23728         Remove stat module & update lstat.
23729         * config/srclist.txt (libc sources): Remove stat.
23730
23731 2005-06-24  Derek Price  <derek@ximbiot.com>
23732         and Bruno Haible  <bruno@clisp.org>
23733
23734         Remove stat module & update lstat.
23735         * MODULES.html.sh (stat): Remove.
23736         * MODULES.html: Regenerated.
23737         * modules/lstat (Description): Correct function name.
23738         (Files): Add "lstat.h".
23739         (Depends-on): Remove stat, add xalloc, stat-macros.
23740         * modules/stat: Remove this file.
23741         (Include): Add "lstat.h", remove <sys/stat.h>.
23742
23743 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
23744
23745         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
23746         (ranged_convert): Don't save conversion in a temporary struct.
23747         This causes a warning with GCC 4.0.0, and anyway in the typical
23748         case it's not worth the extra 100 bytes or so of code.
23749         (ranged_convert, __mktime_internal): When calling a function via a
23750         pointer P, use P () rather than (*P) (), as we now assume C89 or
23751         better.
23752
23753 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
23754
23755         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
23756         "who -r" failed to give output.  Problem reported by Tim Waugh.
23757
23758         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
23759         (xcalloc): Use it to avoid needless tests.
23760         Problem reported by Jim Meyering.
23761
23762 2005-06-20  Derek Price  <derek@ximbiot.com>
23763
23764         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
23765         unnecessary for Autoconfs > 2.59c.
23766
23767 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23768
23769         * lib/argp.h (__option_is_short): Check upper limit of
23770         __key. Isprint() requires its argument to have the value
23771         of an unsigned char or EOF.
23772
23773 2005-06-16  Jim Meyering  <jim@meyering.net>
23774
23775         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
23776         when either N or S is zero.
23777
23778 2005-06-16  Derek Price  <derek@ximbiot.com>
23779
23780         * m4/bison.m4: Declare YACC & YFLAGS precious.
23781
23782 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
23783
23784         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
23785         multibyte string or pattern, fall back on unibyte matching.
23786         Problem reported by James Youngman.
23787
23788 2005-06-08  Bruno Haible  <bruno@clisp.org>
23789
23790         * modules/csharpcomp: New file.
23791         * MODULES.html.sh (C#): Add csharpcomp.
23792
23793 2005-06-08  Bruno Haible  <bruno@clisp.org>
23794
23795         * m4/csharpcomp.m4: New file, from GNU gettext.
23796
23797 2005-06-08  Bruno Haible  <bruno@clisp.org>
23798
23799         * lib/csharpcomp.h: New file, from GNU gettext.
23800         * lib/csharpcomp.c: New file, from GNU gettext.
23801         * lib/csharpcomp.sh.in: New file, from GNU gettext.
23802
23803 2005-06-08  Bruno Haible  <bruno@clisp.org>
23804
23805         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
23806         warning on mingw.
23807
23808 2005-06-07  Derek Price  <derek@ximbiot.com>
23809
23810         Sync from CVS.
23811         * lib/glob_.h: Indent nested #ifdef.
23812
23813 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
23814
23815         Sync from coreutils.
23816         Use "file name" when talking about file names, instead of "filename"
23817         or "path", as per the GNU coding standards.
23818         * lib/mkdir-p.c: Renamed from makepath.c.
23819         (make_dir_parents): Renamed from make_path.  All callers changed.
23820         * lib/mkdir-p.h: Likewise.  All includers changed.
23821         * lib/filenamecat.c: Renamed from path-concat.c.
23822         (file_name_concat): Renamed from path_concat.  All callers changed.
23823         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
23824         * lib/filenamecat.h: Likewise.  All includers changed.
23825         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
23826         in comments or local variable names.
23827         * lib/basename.c: Likewise.
23828         * lib/canonicalize.c, canonicalize.h: Likewise.
23829         * lib/dirname.c, dirname.h: Likewise.
23830         * lib/euidaccess.c: Likewise.
23831         * lib/exclude.c: Likewise
23832         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
23833         * lib/fsusage.c, fsuage.h: Likewise.
23834         * lib/fts.c, fts_.h: Likewise.
23835         * lib/getcwd.c: Likewise.
23836         * lib/getloadavg.c: Likewise.
23837         * lib/mkstemp.c: Likewise.
23838         * lib/mountlist.c, mountlist.h: Likewise.
23839         * lib/openat.c, openat.h: Likewise.
23840         * lib/readlink-stub.c: Likewise.
23841         * lib/readutmp.c, readutmp.h: Likewise.
23842         * lib/rename.c: Likewise.
23843         * lib/rmdir.c: Likewise.
23844         * lib/same.c: Likewise.
23845         * lib/savedir.c: Likewise.
23846         * lib/stripslash.c: Likewise.
23847         * lib/tempname.c: Likewise.
23848         * lib/xreadlink.c: Likewise.
23849         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
23850         All uses changed.
23851         * lib/exclude.h: Likewise.
23852
23853         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
23854         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
23855         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
23856         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
23857         * lib/pathmax.h: Include <limits.h> unconditionally, since other
23858         files have been getting away with it for years (MORE/BSD 4.3
23859         is extinct now).
23860         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
23861         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
23862
23863         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
23864         Define to 256, not 255, as per modern POSIX.
23865
23866 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
23867
23868         Sync from coreutils.
23869         Use "file name" when talking about file names, instead of "filename"
23870         or "path", as per the GNU coding standards.
23871         * MODULES.html.sh: mkdir-p renamed from makepath.
23872         filenamecat renamed from path-concat.
23873         * modules/filenamecat: Renamed from modules/path-concat.
23874         (Files): filenamecat.h and filenamecat.c renamed from
23875         path-concat.h and path-concat.c.
23876         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
23877         (Include): filenamecat.h, not path-concat.h.
23878         * modules/mkdir-p: Renamed from modules/makepath.
23879         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
23880         makepath.c.
23881         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
23882         (Include): mkdir-p.h, not makepath.h.
23883
23884 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
23885
23886         Sync from coreutils.
23887         * m4/mkdir-p.m4: Renamed from makepath.m4.
23888         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
23889         Rename files from makepath.c to mkdir-p.c, and from
23890         makepath.h to mkdir-p.h.
23891         * m4/filenamecat.m4: Renamed from path-concat.m4.
23892         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
23893         Rename files from path-concat.c to filenamecat.c,
23894         and from path-concat.h to filenamecat.h.
23895         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
23896         "file name" in local variables or comments.
23897         * m4/rename.m4: Likewise.
23898
23899 2005-06-01  Bruno Haible  <bruno@clisp.org>
23900
23901         * modules/csharpexec: New file.
23902         * MODULES.html.sh (C#): New section.
23903
23904 2005-06-01  Bruno Haible  <bruno@clisp.org>
23905
23906         * m4/csharp.m4: New file, from GNU gettext.
23907         * m4/csharpexec.m4: New file, from GNU gettext.
23908
23909 2005-06-01  Bruno Haible  <bruno@clisp.org>
23910
23911         * lib/csharpexec.h: New file, from GNU gettext.
23912         * lib/csharpexec.c: New file, from GNU gettext.
23913         * lib/csharpexec.sh.in: New file, from GNU gettext.
23914
23915 2005-05-31  Derek Price  <derek@ximbiot.com>
23916             Paul Eggert  <eggert@cs.ucla.edu>
23917
23918         Sync from cvs.
23919         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
23920
23921 2005-05-31  Derek Price  <derek@ximbiot.com>
23922             Paul Eggert  <eggert@cs.ucla.edu>
23923
23924         Sync from cvs.
23925         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
23926
23927 2005-05-29  Derek Price  <derek@ximbiot.com>
23928
23929         * config/srclist.txt (glob_.h, glob.c): Add these files.
23930
23931 2005-05-29  Derek Price  <derek@ximbiot.com>
23932
23933         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
23934         * modules/glob: New file.
23935         * modules/getlogin_r: Add link to POSIX spec in description.
23936
23937 2005-05-29  Derek Price  <derek@ximbiot.com>
23938             Paul Eggert  <eggert@cs.ucla.edu>
23939
23940         * m4/glob.m4: New file.
23941
23942 2005-05-29  Derek Price  <derek@ximbiot.com>
23943             Paul Eggert  <eggert@cs.ucla.edu>
23944
23945         * lib/glob_.h, lib/glob.c: New files.
23946
23947 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
23948
23949         * modules/fts (Files): Remove m4/inttypes-pri.m4.
23950         * modules/fts-lgpl (Depends-on): Remove gettext.
23951
23952 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
23953
23954         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
23955         and don't require gt_INTTYPES_PRI.
23956
23957 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
23958
23959         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
23960
23961         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
23962         the configuration hassle isn't worth it.
23963         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
23964         (LONGEST_MODIFIER, PRIuMAX): Remove.
23965
23966 2005-05-27  Bruno Haible  <bruno@clisp.org>
23967
23968         * lib/getlogin_r.h: Remove second include of <stddef.h>.
23969
23970 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
23971
23972         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
23973         _POSIX_PTHREAD_SEMANTICS for Solaris.
23974
23975 2005-05-25  Derek Price  <derek@ximbiot.com>
23976
23977         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
23978
23979 2005-05-25  Derek Price  <derek@ximbiot.com>
23980             Paul Eggert  <eggert@cs.ucla.edu>
23981
23982         * modules/getlogin_r, m4/getlogin_r.m4: New files.
23983         * lib/getlogin_r.c, getlogin_r.h: New files.
23984
23985 2005-05-25  Bruno Haible  <bruno@clisp.org>
23986             Derek Price  <derek@ximbiot.com>
23987
23988         * lib/getlogin_r.h: Simplify API documentation.
23989
23990 2005-05-23  Derek Price  <derek@ximbiot.com>
23991
23992         * modules/minmax (Files): Add m4/minmax.m4.
23993         (configure.ac): Add gl_MINMAX.
23994
23995 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
23996
23997         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
23998         so that unistd-safer.h (GPL'ed code) need not be included.
23999
24000 2005-05-22  Bruno Haible  <bruno@clisp.org>
24001
24002         * m4/minmax.m4: New file.
24003         Based on a patch by Derek Price <derek@ximbiot.com>.
24004
24005 2005-05-22  Bruno Haible  <bruno@clisp.org>
24006
24007         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
24008         (INT64_MIN): Fix definition.
24009         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
24010
24011         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
24012         NEED_SIGNED_INT_TYPES.
24013
24014         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
24015         HAVE_SYSTEM_INTTYPES.
24016
24017 2005-05-22  Bruno Haible  <bruno@clisp.org>
24018
24019         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
24020         Also include <sys/param.h> if it defines MIN, MAX.
24021         Based on a patch by Derek Price <derek@ximbiot.com>.
24022
24023 2005-05-21  Jim Meyering  <jim@meyering.net>
24024
24025         * modules/fts (Files): Add m4/inttypes-pri.m4.
24026         (Depends-on): Add lstat and remove gettext.  Alphabetize.
24027
24028 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
24029
24030         New fts module.
24031         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
24032         (setup_dir, free_dir): New functions.
24033         (enter_dir, leave_dir): Define trivial
24034         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
24035         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
24036         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
24037         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
24038         Move to fts-cycle.c.
24039         (fts_open): Use setup_dir.
24040         (fts_close): Use free_dir.
24041         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
24042         This adds a label and some gotos, but the alternatives were messier.
24043         Check for memory allocation failure when entering a dir.
24044         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
24045         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
24046         (FTS): New member fts_cycle, that is a union that contains the
24047         old active_dir_ht and cycle_state.  All uses changed to mention
24048         fts_cycle.ht and fts_cycle.state.
24049         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
24050         fts.c, with the following changes:
24051         (setup_dir, free_dir): New functions.
24052         (enter_dir): Now returns bool.  Return true if successful, false
24053         if memory exhausted.  All callers changed.
24054         Do not bother partly cleaning up on
24055         memory allocation failure; that is free_dir's job.
24056         However, free ad if hash_insert fails, to avoid memory leak.
24057         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
24058         fts->fts_options to see which union member to use.
24059
24060 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
24061
24062         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
24063         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
24064
24065 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
24066
24067         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
24068
24069 2005-05-20  Jim Meyering  <jim@meyering.net>
24070
24071         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
24072         Now a macro, to pacify GCC.
24073
24074 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
24075
24076         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
24077         of -1.
24078
24079 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
24080
24081         * lib/chown.c (rpl_chown): Return -1 on failure.
24082
24083 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
24084
24085         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
24086         Don't check for stddef.h.
24087         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
24088         don't use its results.
24089         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
24090         since we include them unconditionally.  Don't require
24091         AM_STDBOOL_H, since stdbool is a prerequisite.
24092         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
24093         since we assume C89 or better.
24094         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
24095         as we don't use their results.
24096         Don't check for fchdir, memmove, memset, strrchr, as we use
24097         them unconditionally.
24098         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
24099         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
24100
24101 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
24102
24103         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
24104         Include <stddef.h> unconditionally, since we assume C89 now.
24105         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
24106         * lib/fts.c: Include fts_.h first, to check interface.
24107         Do not include intprops.h; no longer needed.
24108         Include cycle-check.h and hash.h, since fts_.h no longer does.
24109         Remove unnecessary casts of closedir to void.
24110         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
24111         decide whether to decrement nlinks.
24112         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
24113         (FTS): Use struct hash_table * instead of Hash_table, so that
24114         we no longer need to include hash.h here.
24115
24116 2005-05-18  Jim Meyering  <jim@meyering.net>
24117
24118         * modules/dirfd (License): Change to LGPL.  Most of the code
24119         is already in the public domain.
24120
24121 2005-05-18  Jim Meyering  <jim@meyering.net>
24122
24123         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
24124         Reported by Yoann Vandoorselaere.
24125
24126 2005-05-17  Jim Meyering  <jim@meyering.net>
24127
24128         * m4/fts.m4: New file, from coreutils.
24129
24130 2005-05-17  Jim Meyering  <jim@meyering.net>
24131
24132         * lib/fts.c, lib/fts_.h: New files, from coreutils.
24133
24134 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
24135
24136         Sync from coreutils.
24137         * m4/unlinkdir.m4: New file.
24138
24139 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
24140
24141         Sync from coreutils.
24142         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
24143         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
24144         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
24145         White space changes only.
24146         * lib/makepath.c (make_path): Port to hosts where leading "//" is
24147         special.
24148         * lib/yesno.c: Include getline.h, not ctype.h.
24149         (yesno): Don't remove leading white space; POSIX doesn't allow it.
24150         Use getline to remove arbitrary restriction on response length.
24151
24152 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
24153
24154         * config/srclist-update: Spell out "Street" in FSF postal
24155         mail address; this is the style the FSF seems to prefer.
24156
24157         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
24158         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
24159         this updates FSF postal mail address.
24160
24161         Sync from coreutils.
24162         * modules/unlinkdir: New file.
24163         * modules/yesno (Depends-on): Add getline.
24164         * MODULES.html.sh (File system functions): Add unlinkdir.
24165
24166 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
24167
24168         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
24169         lib/strsep.h:
24170         Change the initial comment to refer to GPL, not LGPL.
24171         gnulib-tool will change it to LGPL as needed.
24172
24173         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
24174         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
24175         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
24176         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
24177         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
24178         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
24179         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
24180         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
24181         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
24182         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
24183         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
24184         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
24185         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
24186         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
24187         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
24188         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
24189         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
24190         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
24191         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
24192         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
24193         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
24194         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
24195         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
24196         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
24197         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
24198         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
24199         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
24200         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
24201         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
24202         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
24203         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
24204         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
24205         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
24206         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
24207         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
24208         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
24209         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
24210         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
24211         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
24212         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
24213         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
24214         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
24215         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
24216         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
24217         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
24218         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
24219         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
24220         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
24221         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
24222         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
24223         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
24224         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
24225         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
24226         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
24227         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
24228         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
24229         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
24230         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
24231         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
24232         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
24233         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
24234         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
24235         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
24236         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
24237         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
24238         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
24239         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
24240         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
24241         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
24242         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
24243         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
24244         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
24245         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
24246         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
24247         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
24248         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
24249         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
24250         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
24251         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
24252         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
24253         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
24254         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
24255         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
24256         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
24257         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
24258         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
24259         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
24260         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
24261         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
24262         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
24263         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
24264         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
24265         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
24266         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
24267         lib/yesno.c, lib/yesno.h:
24268         Update FSF postal mail address.
24269
24270 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
24271
24272         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
24273         tests/test-memmem.c, tests/test-stpncpy.c:
24274         Update FSF postal mail address.
24275
24276 2005-05-13  Bruno Haible  <bruno@clisp.org>
24277
24278         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
24279         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
24280         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
24281         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
24282         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
24283         Add support for 64-bit integers in the MSVC compiler.
24284
24285 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
24286
24287         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
24288
24289 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
24290
24291         * gnulib-tool (func_import): Sort and uniquify recommended includes.
24292
24293 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
24294
24295         * doc/getdate.texi (General date syntax): Don't say that date
24296         date --iso-8601=ns generates acceptable dates; it doesn't yet.
24297         Problem reported by Nic Ferrier.
24298
24299 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24300
24301         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
24302         specified in ai_socktype. Fix invalid ai_protocol
24303         check. ai_protocol is usually set to 0 or depending on
24304         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
24305         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
24306         ai_socktype / ai_protocol in the returned addrinfo structure.
24307
24308 2005-05-10  Simon Josefsson  <jas@extundo.com>
24309
24310         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
24311         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
24312
24313 2005-05-10  Karl Berry  <karl@gnu.org>
24314
24315         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
24316         (from http://www.gnu.org/licenses).
24317         * doc/COPYING.LIB: also rename to COPYING.LESSER.
24318         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
24319         fdl.texi suffices.
24320
24321 2005-05-10  Karl Berry  <karl@gnu.org>
24322
24323         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
24324         (COPYING.DOC): remove.
24325
24326         * config/srclist-update: new FSF address.
24327
24328 2005-05-10  Derek Price  <derek@ximbiot.com>
24329
24330         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
24331         possible.
24332
24333 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24334             Bruno Haible  <bruno@clisp.org>
24335
24336         * modules/inet_ntop: New file.
24337         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24338         inet_ntop.
24339
24340 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24341             Bruno Haible  <bruno@clisp.org>
24342
24343         * m4/inet_ntop.m4: New file.
24344
24345 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24346             Bruno Haible  <bruno@clisp.org>
24347
24348         * lib/inet_ntop.h: New file.
24349         * lib/inet_ntop.c: New file, from glibc with modifications.
24350
24351 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
24352
24353         * modules/time_r (License): Change to LGPL.
24354         * modules/extensions (License): Change to LGPL.  Actually,
24355         the license is more permissive than that, but currently gnulib-tool
24356         doesn't know how to handle more-permissive licenses.
24357
24358         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
24359         Problem reported by Dave Love.
24360
24361 2005-05-08  Jim Meyering  <jim@meyering.net>
24362
24363         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
24364         blank.
24365
24366 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
24367
24368         * modules/argmatch (Depends-on): Add stdbool.
24369         * modules/backupfile (Depends-on): Likewise.
24370         * modules/chdir-long (Depends-on): Likewise.
24371         * modules/closeout (Depends-on): Likewise.
24372         * modules/cycle-check (Depends-on): Likewise.
24373         * modules/dirname (Depends-on): Likewise.
24374         * modules/fnmatch (Depends-on): Likewise.
24375         * modules/fsusage (Depends-on): Likewise.
24376         * modules/fwriteerror (Depends-on): Likewise.
24377         * modules/getcwd (Depends-on): Likewise.
24378         * modules/getloadavg (Depends-on): Likewise.
24379         * modules/hard-locale (Depends-on): Likewise.
24380         * modules/makepath (Depends-on): Likewise.
24381         * modules/mountlist (Depends-on): Likewise.
24382         * modules/nanosleep (Depends-on): Likewise.
24383         * modules/posixtm (Depends-on): Likewise.
24384         * modules/quotearg (Depends-on): Likewise.
24385         * modules/readtokens (Depends-on): Likewise.
24386         * modules/readtokens0 (Depends-on): Likewise.
24387         * modules/readutmp (Depends-on): Likewise.
24388         * modules/save-cwd (Depends-on): Likewise.
24389         * modules/strftime (Depends-on): Likewise.
24390         * modules/userspec (Depends-on): Likewise.
24391         * modules/utimecmp (Depends-on): Likewise.
24392         * modules/xgetcwd (Depends-on): Likewise.
24393         * modules/xnanosleep (Depends-on): Likewise.
24394         * modules/xstrtod (Depends-on): Likewise.
24395         * modules/yesno (Depends-on): Likewise.
24396
24397 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
24398
24399         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
24400         needless checks.
24401
24402 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
24403
24404         Merge from coreutils.  Among other things,
24405         add bulletproofing for cases where stdin, stdout, or stderr are closed.
24406         * lib/fd-safer.c: New file.
24407         * lib/fcntl-safer.h, open-safer.c: Remove.
24408         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
24409         * lib/dup-safer.c: Include unistd-safer.h first.
24410         Don't include errno.h.
24411         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
24412         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
24413         * lib/file-type.c: Rely on file-type.h change.
24414         * lib/getloadavg.c: Include unistd-safer.h.
24415         (getloadavg): Use safer open.
24416         * lib/getusershell.c: Include "stdio-safer.h".
24417         (getusershell): Use safer fopen.
24418         * lib/long-options.c (long_options): Use NULL rather than 0.
24419         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
24420         'free'.
24421         * lib/modechange.c: Likewise.
24422         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
24423         (MODE_DONE): New constant.
24424         (struct mode_change): Remove 'next' member.
24425         (make_node_op_equals): New function; like the old one of the
24426         same name, except it allocates an array.
24427         (mode_compile, mode_create_from_ref): Use it.
24428         (mode_compile): Allocate result as an array, not a linked list.
24429         Parse octal string ourself, so that we catch mistakes like "+0".
24430         (mode_adjust): Arg is an array, not a linked list.
24431         * lib/modechange.c: Include stat-macros.h, xalloc.h.
24432         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
24433         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
24434         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
24435         Remove.  This is now stat-macros.h's job.
24436         (talloc): Remove.  All callers replaced by xalloc, so that
24437         our invokers don't have to worry about reporting memory failures.
24438         (make_node_op_equals): Remove.
24439         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
24440         New constants.
24441         (struct mode_change): Moved here from modechange.h.
24442         (mode_append_entry): Remove.
24443         (mode_compile): Remove MASKED_OPS arg, since it encouraged
24444         apps to have incorrect behavior.  Use simpler algorithm for head
24445         and tail.  Don't futz with umask; that's now the job of mode_adjust.
24446         Detect more invalid usages rather than having somewhat-random behavior.
24447         Don't insert an "a=" action, as that leads to incorrect behavior.
24448         (mode_compile, mode_create_from_ref): Return NULL on error instead
24449         of an enum, since now there's only one way to have an error.  All
24450         callers changed.
24451         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
24452         at the correct time.  Simplify calculation of "+u" and its ilk.
24453         Don't mishandle "+X".
24454         (mode_free): Remove "register" and localize decls.
24455         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
24456         (struct mode_change): Move to modechange.c; callers don't
24457         need to see this stuff.
24458         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
24459         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
24460         (mode_change, mode_adjust): Reflect the new signatures noted above.
24461         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
24462         that might redefine system include files.
24463         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
24464         (my_usleep): Use NULL rather than (void *) 0.
24465         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
24466         Use siginterrupt to specify that system calls should be interrupted.
24467         (rpl_nanosleep): Move initialization of suspended closer to call of
24468         my_usleep.
24469         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
24470         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
24471         (desirable_utmp_entry): New function.
24472         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
24473         using x2nrealloc, to simplify logic.
24474         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
24475         size calculation.  Do not assume utmp file is a regular file.
24476         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
24477         (READ_UTMP_CHECK_PIDS): New constant.
24478         * lib/save-cwd.c: Include unistd-safer.h.
24479         (save_cwd): Use fd_safer.
24480         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
24481         [!_LIBC] Include "stat-macros.h" instead.
24482         * lib/unistd-safer.h (fd_safer): New decl.
24483
24484 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
24485
24486         * modules/getloadavg (Depends-on): Add unistd-safer.
24487         * modules/getusershell (Depends-on): Add stdio-safer.
24488         * modules/lstat (Depends-on): Remove xalloc.
24489         * modules/mkstemp (Depends-on): Add stat-macros.
24490         * modules/modechange (Depends-on): Remove xstrtol.
24491         Add stat-macros, xalloc.
24492         * modules/save-cwd (Depends-on): Add unistd-safer.
24493         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
24494         * modules/unistd-safer (Files): Add lib/fd-safer.c
24495         (Makefile.am): Remove lib_SOURCES.
24496
24497         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
24498         Remove fcntl-safer; unistd-safer supersedes it.
24499
24500 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
24501
24502         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
24503         AC_HEADER_STAT.
24504         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
24505         (gl_PREREQ_CHOWN): Remove.
24506         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
24507         it.  Don't require AC_HEADER_STAT.
24508         (gl_PREREQ_LSTAT): Remove.
24509         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
24510         Don't require AC_HEADER_STAT.
24511         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
24512         (gl_PREREQ_RMDIR): Remove.
24513         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
24514         mention stat-macros.h or AC_HEADER_STAT, since we'll make
24515         the stat-macros module a prerequisite.
24516         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
24517         * m4/filemode.m4 (gl_FILEMODE): Likewise.
24518         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
24519         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
24520         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
24521         variable names.
24522         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
24523         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
24524         variable prefixes.
24525         * m4/fcntl-safer.m4: Remove.
24526         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
24527         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
24528         Invoke gl_PREREQ_FD_SAFER.
24529         (gl_PREREQ_FD_SAFER): New macro.
24530         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
24531         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
24532         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
24533         Remove duplicate call to AC_LIBOBJ(readutmp).
24534         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
24535
24536         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
24537         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
24538
24539 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
24540
24541         * MODULES.html.sh (Misc): Add byteswap.
24542
24543 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
24544
24545         * modules/getcwd (Depends-on): Add extensions.
24546         * modules/openat (Depends-on): Likewise.
24547
24548 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
24549
24550         * modules/byteswap: New file.
24551
24552 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
24553
24554         * m4/byteswap.m4: New file.
24555
24556 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
24557
24558         * lib/byteswap_.h: New file.
24559
24560 2005-04-25  Karl Berry  <karl@gnu.org>
24561
24562         * m4/gettext.m4: Update from GNU gettext 0.14.4.
24563
24564 2005-04-25  Albert Chin  <china@thewrittenword.com>
24565
24566         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
24567         Toolkit C bug.
24568
24569 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
24570
24571         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
24572         (func_ln_if_changed) Remove forcibly for no error message
24573         in case file does not exist.
24574
24575 2005-04-19  Simon Josefsson  <jas@extundo.com>
24576
24577         * gnulib-tool (Options): Make --symlink mean --symbolic.
24578
24579 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
24580
24581         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
24582
24583 2005-04-16  Simon Josefsson  <jas@extundo.com>
24584
24585         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
24586
24587 2005-04-15  Simon Josefsson  <jas@extundo.com>
24588
24589         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
24590
24591 2005-04-15  Simon Josefsson  <jas@extundo.com>
24592
24593         * gnulib-tool: Rename --symlink to --symbolic.
24594
24595 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
24596
24597         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
24598         symbolic links to files instead of copying/moving.  Add --aux-dir,
24599         specifying directory relative --dir where auxiliary build tools
24600         are placed.
24601
24602 2005-04-14  Bruno Haible  <bruno@clisp.org>
24603
24604         * modules/allocsa (License): Change to LGPL.
24605         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
24606
24607 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
24608
24609         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
24610         that "UTC +1 second" continues to work.  Problem reported
24611         by Dmitry V. Levin.
24612         (relunit_snumber): New rule.
24613         (relunit): Use it.
24614
24615 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
24616
24617         * lib/getdate.y (universal_time_zone_table): New constant.
24618         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
24619         universal_time_zone_table.
24620         (lookup_zone): Prefer universal_time_zone_table to
24621         local_time_zone_table, so that "GMT" time stamps are allowed in
24622         London during the summer.  Problem reported by Ian Abbott.
24623
24624 2005-04-12  Jim Meyering  <jim@meyering.net>
24625
24626         * lib/human.c (humblock): Set *options even when returning due to
24627         xstrtoumax conversion failure.  Thanks to a used-uninitialized
24628         warning from gcc-4.
24629
24630 2005-04-09  Jim Meyering  <jim@meyering.net>
24631
24632         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
24633         -Wuninitialized: initialize tm0.tm_year.
24634
24635 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
24636
24637         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
24638         count, since there's no maximum.  All uses changed.
24639         Add member dsts_seen.
24640         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
24641         not being INT_MAX.
24642         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
24643         Use pc_rels_seen to decide whther a date is absolute.
24644
24645         * lib/getdate.y (number): Don't overwrite year.
24646         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
24647         check.
24648
24649 2005-04-02  Simon Josefsson  <jas@extundo.com>
24650
24651         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
24652         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
24653
24654 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
24655
24656         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
24657         where no absolute path name can be longer than PATH_MAX.
24658
24659 2005-03-27  Jim Meyering  <jim@meyering.net>
24660
24661         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
24662
24663 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
24664
24665         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
24666         "one's complement" -> "ones' complement" in comment, as per Knuth.
24667         "value of type" -> "type or expression" in comment.
24668         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
24669
24670 2005-03-26  Jim Meyering  <jim@meyering.net>
24671
24672         Comment nits.
24673         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
24674         Correct typos: s/or/of/.
24675
24676 2005-03-26  Jim Meyering  <jim@meyering.net>
24677
24678         * modules/check-include-files: Move to ../ and rename to...
24679         * check-module: ...this.
24680
24681 2005-03-25  Jim Meyering  <jim@meyering.net>
24682
24683         * modules/xvasprintf (Files): Add xalloc.h.
24684
24685 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
24686
24687         * modules/gettext (Files): config/config.rpath ->
24688         build-aux/config.rpath
24689         * modules/iconv (Files): Likewise.
24690         Problem reported by Oskar Liljeblad.
24691
24692 2005-03-23  Jim Meyering  <jim@meyering.net>
24693
24694         * modules/check-include-files: New script to check for
24695         missing dependencies, multiple includes, etc.
24696
24697         * modules/c-strtold (Depends-on): Add xalloc.
24698         * modules/c-strtod (Depends-on): Add xalloc.
24699         * modules/hash (Depends-on): Add xalloc.
24700         (Files): Remove lib/xalloc.h.
24701
24702         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
24703         * modules/userspec (Files): Add lib/inttostr.h.
24704
24705 2005-03-23  Jim Meyering  <jim@meyering.net>
24706
24707         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
24708
24709 2005-03-22  Jim Meyering  <jim@meyering.net>
24710
24711         * modules/stat-macros: New module.
24712         * modules/canonicalize, modules/euidaccess, modules/file-type,
24713         * modules/filemode, modules/lchown, modules/makepath,
24714         * modules/rmdir, modules/stat: Depend on new stat-macros module
24715         rather than listing lib/stat-macros.h manually.
24716         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
24717
24718 2005-03-22  Jim Meyering  <jim@meyering.net>
24719
24720         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
24721
24722 2005-03-22  Bruno Haible  <bruno@clisp.org>
24723
24724         * config/srclist.txt: Replace target directory 'config' with
24725         'build-aux'.
24726         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
24727         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
24728         ../build-aux/.
24729
24730 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
24731
24732         * modules/chdir-long (Depends-on): Add mempcpy.
24733
24734         * modules/acl, modules/backupfile, modules/c-strtod,
24735         modules/c-strtold, modules/canon-host, modules/canonicalize,
24736         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
24737         modules/exclude, modules/exitfail, modules/file-type,
24738         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
24739         modules/getdate, modules/getline, modules/getpagesize,
24740         modules/getpass, modules/getugroups, modules/group-member,
24741         modules/hard-locale, modules/hash, modules/human, modules/idcache,
24742         modules/inttostr, modules/long-options, modules/makepath,
24743         modules/md5, modules/memcasecmp, modules/memcoll,
24744         modules/modechange, modules/mountlist, modules/path-concat,
24745         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
24746         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
24747         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
24748         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
24749         modules/strftime, modules/strndup, modules/strverscmp,
24750         modules/timespec, modules/unlocked-io, modules/userspec,
24751         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
24752         modules/yesno:
24753         Remove lib_SOURCES line from Makefile.am section, as this is now
24754         done automatically by the corresponding Autoconf macro.
24755
24756 2005-03-21  Jim Meyering  <jim@meyering.net>
24757
24758         Changes imported from coreutils.
24759
24760         * lib/cycle-check.c: Don't include xalloc.h.
24761
24762         * lib/path-concat.c: Don't include assert.h.
24763         (path_concat): Remove assertion that would have triggered
24764         for ABASE starting with more than one slash.
24765         Reported by Andreas Schwab.
24766
24767         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
24768         properly when ABASE is an absolute file name.
24769         Correct the description of this function.
24770         Include <assert.h>.
24771         Add an assertion and a test driver.
24772         This fixes a bug introduced on 2004-07-02.
24773         Andreas Schwab reported the resulting failure of cp --parents:
24774         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
24775
24776 2005-03-21  Jim Meyering  <jim@meyering.net>
24777
24778         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
24779         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
24780
24781 2005-03-21  Jim Meyering  <jim@meyering.net>
24782         and  Paul Eggert  <eggert@cs.ucla.edu>
24783
24784         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
24785         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
24786         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
24787         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
24788         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
24789         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
24790         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
24791         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
24792         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
24793         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
24794         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
24795         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
24796         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
24797         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
24798         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
24799         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
24800         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
24801         for these modules.
24802
24803 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
24804
24805         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
24806         (which shouldn't happen), generate nothing instead of returning 0
24807         immediately, so that nstrftime (NULL, ...) doesn't return 0.
24808
24809 2005-03-16  Bruno Haible  <bruno@clisp.org>
24810
24811         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
24812         HAVE_LONGLONG_64BIT.
24813
24814 2005-03-16  Bruno Haible  <bruno@clisp.org>
24815
24816         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
24817         HAVE_LONGLONG_64BIT.
24818
24819 2005-03-16  Bruno Haible  <bruno@clisp.org>
24820
24821         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
24822         HAVE_LONGLONG_64BIT.
24823
24824 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
24825
24826         * lib/strftime.c (my_strftime): Prepend space to format so that we can
24827         reliably distinguish strftime failure from empty output on POSIX
24828         hosts.
24829
24830 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
24831
24832         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
24833         (iconv_string): Don't guess a size-zero buffer, as that might cause
24834         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
24835         result would be 'too large', where 'too large' is (heuristically)
24836         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
24837         overflow concerns.  This will prevent some unwanted malloc failures
24838         when the inputs are very large.
24839
24840 2005-03-15  Karl Berry  <karl@gnu.org>
24841
24842         * config/srclist.txt (config.rpath): from gettext.
24843         * config/config.rpath: update.
24844
24845 2005-03-15  Bruno Haible  <bruno@clisp.org>
24846
24847         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
24848         to 'negate'.
24849
24850         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
24851         variable.
24852
24853         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
24854         results.
24855
24856 2005-03-14  Simon Josefsson  <jas@extundo.com>
24857
24858         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
24859         <fx@gnu.org>.
24860
24861 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
24862
24863         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
24864         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
24865         intprops.h.
24866         * lib/strtol.c: Likewise.
24867
24868 2005-03-14  Jim Meyering  <jim@meyering.net>
24869
24870         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
24871         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
24872         to be nonzero so that we (and caller) can detect the difference
24873         between a valid zero-length expansion and an error return, even
24874         when the underlying strftime fails before writing anything into
24875         that location.
24876
24877 2005-03-14  Bruno Haible  <bruno@clisp.org>
24878
24879         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
24880         Update from GNU gettext 0.14.3.
24881
24882 2005-03-10  Jim Meyering  <jim@meyering.net>
24883
24884         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
24885
24886 2005-03-10  Jim Meyering  <jim@meyering.net>
24887
24888         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
24889         so that this module works on systems without fchdir.
24890
24891 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
24892
24893         Factor int-properties macros into a single file, except for
24894         glibc-related files.
24895         * lib/intprops.h: New file.
24896         * lib/getloadavg.c: Include it instead of limits.h.
24897         (INT_STRLEN_BOUND): Remove.
24898         * lib/human.c: Include intprops.h.
24899         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
24900         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
24901         302/1000.
24902         * lib/inttostr.h: Include intprops.h instead of limits.h.
24903         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
24904         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
24905         for consistency with intprops.h.
24906         (time_t_is_integer, twos_complement_arithmetic): Use them.
24907         * lib/sig2str.h: Include <signal.h>, intprops.h.
24908         (INT_STRLEN_BOUND): Remove.
24909         * lib/strftime.c (TYPE_SIGNED): Remove.
24910         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
24911         * lib/strtol.c: Adjust comments to match intprops.h.
24912         * lib/userspec.c: Include intprops.h.
24913         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
24914         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
24915         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
24916         instead of rolling our own expressions.
24917         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
24918
24919         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
24920         instead of int.
24921         (my_strftime): Do not mishandle years close to INT_MAX, by doing
24922         the right thing even if adding 1900 would overflow.  Similarly
24923         for tm_mon + 1 and tm_yday + 1.
24924         Make %Y always equivalent to %C%y, and similarly for %G and %g.
24925         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
24926         (DO_SIGNED_NUMBER): New macro.
24927         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
24928
24929 2005-03-07  Bruno Haible  <bruno@clisp.org>
24930
24931         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
24932
24933 2005-03-07  Bruno Haible  <bruno@clisp.org>
24934
24935         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
24936
24937 2005-03-04  Derek R. Price  <derek@ximbiot.com>
24938
24939         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
24940         (func_import): Only replace files via --import when they have actually
24941         changed.
24942
24943 2005-03-03  Derek R. Price  <derek@ximbiot.com>
24944
24945         * m4/mmap-anon.m4: New file.
24946         * m4/pagealign_alloc.m4: New file.
24947
24948 2005-03-03  Derek R. Price  <derek@ximbiot.com>
24949             Bruno Haible  <bruno@clisp.org>
24950
24951         * modules/pagealign_alloc: New file.
24952         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
24953
24954 2005-03-03  Derek R. Price  <derek@ximbiot.com>
24955             Bruno Haible  <bruno@clisp.org>
24956
24957         * lib/pagealign_alloc.h: New file.
24958         * lib/pagealign_alloc.c: New file.
24959
24960 2005-03-03  Bruno Haible  <bruno@clisp.org>
24961
24962         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
24963         Use an all-permissive copyright notice, recommended by RMS.
24964
24965 2005-03-02  Bruno Haible  <bruno@clisp.org>
24966
24967         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
24968         of AIX, the replacement has to be done only after <string.h> is
24969         included, therefore not in config.h. stpncpy.h does the replacement,
24970         and stpncpy.c uses it.
24971
24972 2005-03-02  Bruno Haible  <bruno@clisp.org>
24973
24974         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
24975         stpncpy.c uses it.
24976
24977 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24978
24979         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
24980         The workaround isn't strictly needed for POSIX conformance, and
24981         it's too much of a pain to configure and maintain.  We'll ask
24982         people to fix their kernels instead.
24983         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
24984         (NANOSLEEP_BUG_WORKAROUND): Remove.
24985         (xnanosleep): Remove the workaround.
24986
24987 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24988
24989         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
24990         Reported by Derek Price.
24991         (Include): Add "timespec.h".
24992
24993         * modules/xnanosleep (Depends-on): Remove gethrxtime.
24994
24995 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24996
24997         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
24998         to detect nanosleep bug.
24999
25000 2005-03-01  Bruno Haible  <bruno@clisp.org>
25001
25002         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
25003
25004 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
25005
25006         * modules/gethrxtime: New file.
25007         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
25008         (Depends-on): Add gethrxtime.
25009         (configure.ac): Add gl_XNANOSLEEP.
25010         (Makefile.am): Remove lib_SOURCES line.
25011
25012 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
25013
25014         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
25015         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
25016
25017 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
25018
25019         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
25020         * lib/timespec.h (gettime): Return void, since it always
25021         succeeds now.  All uses changed.
25022         * lib/gettime.c (gettime) Likewise.
25023         [HAVE_NANOTIME]: Prefer nanotime.
25024         Assume gettimeofday succeeds, as POSIX requires.
25025         Assime time () succeeds, since other code already does.
25026         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
25027         (timespec_subtract): Remove.
25028         (NANOSLEEP_BUG_WORKAROUND): New constant.
25029         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
25030         things considerably.  Use it only on GNU/Linux hosts, since the
25031         workaround shouldn't be needed elsewhere.
25032
25033 2005-02-24  Bruno Haible  <bruno@clisp.org>
25034
25035         * modules/gettext (Files): Add m4/glibc2.m4.
25036
25037 2005-02-24  Bruno Haible  <bruno@clisp.org>
25038
25039         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
25040         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
25041         * m4/progtest.m4:
25042         Update from GNU gettext 0.14.2.
25043         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
25044
25045 2005-02-24  Bruno Haible  <bruno@clisp.org>
25046
25047         * lib/localcharset.c: Update from GNU gettext 0.14.2.
25048         * lib/config.charset: Update from GNU gettext 0.14.2.
25049
25050 2005-02-24  Bruno Haible  <bruno@clisp.org>
25051
25052         * lib/gettext.h: Update from GNU gettext 0.14.2.
25053
25054 2005-02-23  Simon Josefsson  <jas@extundo.com>
25055
25056         * m4/iconvme.m4: New file.
25057
25058 2005-02-23  Jim Meyering  <jim@meyering.net>
25059
25060         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
25061         change.
25062         Thanks to Bruno Haible for catching it.
25063
25064 2005-02-22  Simon Josefsson  <jas@extundo.com>
25065
25066         * modules/iconvme: New file.
25067
25068         * MODULES.html.sh: Add iconvme.
25069
25070 2005-02-22  Simon Josefsson  <jas@extundo.com>
25071
25072         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
25073
25074 2005-02-22  Simon Josefsson  <jas@extundo.com>
25075
25076         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
25077
25078 2005-02-22  Jim Meyering  <jim@meyering.net>
25079
25080         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
25081         s/ifndef/ifdef/.
25082
25083 2005-02-20  Neil Conway  <neilc@samurai.com>
25084
25085         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
25086         returned by OSX/Darwin if the specified buffer is not large
25087         enough for the hostname.
25088
25089 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25090
25091         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
25092         pass it to _help, otherwise the latter coredumps trying to
25093         dereference state.root_argp.
25094
25095 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
25096
25097         * modules/chdir-long (Depends-on): Add memrchr.
25098         * modules/memrchr (Files): Add lib/memrchr.h.
25099         (Include): "memrchr.h".
25100
25101 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
25102
25103         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
25104
25105 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
25106
25107         * lib/memrchr.h: New file.
25108         * lib/chdir-long.c: Include it.
25109         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
25110         Don't bother including stddef.h.
25111
25112 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
25113
25114         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
25115         inclusion.
25116         Include <sys/types.h>, for dev_t.
25117         (ME_DUMMY, ME_REMOTE): Move from here....
25118         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
25119         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
25120         Dmitry V. Levin.
25121         Include mountlist.h first, to test the interface.
25122
25123 2005-01-29  Bruno Haible  <bruno@clisp.org>
25124
25125         * lib/progname.c (program_name): Initialize.
25126         Needed when linking statically on MacOS X.
25127
25128 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
25129
25130         Sync from coreutils.
25131         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
25132         (Depends-on): Add c-strtod.
25133         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
25134
25135 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
25136
25137         Sync from coreutils.
25138         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
25139
25140         Remove files that are specific to coreutils.
25141         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
25142
25143 2005-01-28  Bruno Haible  <bruno@clisp.org>
25144
25145         * modules/javacomp: New file.
25146         * MODULES.html.sh (Java): Add javacomp.
25147
25148 2005-01-28  Bruno Haible  <bruno@clisp.org>
25149
25150         * m4/javacomp.m4: New file, from GNU gettext.
25151
25152 2005-01-28  Bruno Haible  <bruno@clisp.org>
25153
25154         * lib/javacomp.sh.in: New file, from GNU gettext.
25155         * lib/javacomp.h: New file, from GNU gettext.
25156         * lib/javacomp.c: New file, from GNU gettext.
25157
25158 2005-01-26  Simon Josefsson  <jas@extundo.com>
25159
25160         * lib/gai_strerror.c: Use GPL in header.
25161
25162 2005-01-26  Bruno Haible  <bruno@clisp.org>
25163
25164         * modules/javaexec: New file.
25165         * MODULES.html.sh (Java): Add javaexec.
25166
25167 2005-01-26  Bruno Haible  <bruno@clisp.org>
25168
25169         * m4/javaexec.m4: New file, from GNU gettext.
25170
25171 2005-01-26  Bruno Haible  <bruno@clisp.org>
25172
25173         * lib/javaexec.sh.in: New file, from GNU gettext.
25174         * lib/javaexec.h: New file, from GNU gettext.
25175         * lib/javaexec.c: New file, from GNU gettext.
25176
25177 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25178
25179         * modules/lchown (Depends-on): Remove lchown.h
25180
25181 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25182
25183         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
25184         must be defined if the header file was not found, in order
25185         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
25186
25187 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25188
25189         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
25190         initializers for struct pentry_state.
25191         (__argp_error): Check return value of __asprintf
25192         (__argp_failure): Translate error message
25193
25194         * lib/argp-parse.c: Removed braces around the expansion of N_()
25195
25196 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
25197
25198         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
25199         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
25200         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
25201         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
25202         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
25203         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
25204         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
25205         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
25206         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
25207         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
25208         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
25209         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
25210         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
25211         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
25212         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
25213         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
25214         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
25215         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
25216         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
25217         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
25218         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
25219         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
25220         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
25221         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
25222         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
25223         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
25224         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
25225         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
25226         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
25227         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
25228         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
25229         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
25230         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
25231         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
25232         xstrtol.m4, xstrtoumax.m4, yesno.m4:
25233         Use an all-permissive copyright notice, recommended by RMS.
25234
25235 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
25236
25237         * modules/chdir-long (Depends-on): Remove mempcpy.
25238
25239 2005-01-21  Jim Meyering  <jim@meyering.net>
25240
25241         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
25242         same value as for Solaris 9.
25243
25244         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
25245         component length.  This included changing the parameter to be
25246         of type `char *' rather than `char const *'.
25247         * lib/chdir-long.h (chdir_long): Update prototype.
25248
25249         * lib/openat.c (fdopendir, fstatat): New functions.
25250         * lib/openat.h: Include headers required for use of DIR and struct
25251         stat.
25252         [AT_SYMLINK_NOFOLLOW]: Define.
25253         (fdopendir, fstatat): Add prototypes.
25254
25255 2005-01-21  Bruno Haible  <bruno@clisp.org>
25256
25257         * modules/classpath: New file.
25258         * MODULES.html.sh (Java): Add classpath.
25259
25260 2005-01-21  Bruno Haible  <bruno@clisp.org>
25261
25262         * lib/classpath.h: New file, from GNU gettext.
25263         * lib/classpath.c: New file, from GNU gettext.
25264
25265 2005-01-20  Simon Josefsson  <jas@extundo.com>
25266
25267         * modules/version-etc-fsf: New file.
25268
25269 2005-01-20  Simon Josefsson  <jas@extundo.com>
25270
25271         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
25272         * lib/version-etc.c: Remove version_etc_copyright.
25273         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
25274         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
25275
25276 2005-01-20  Simon Josefsson  <jas@extundo.com>
25277
25278         * lib/base64.h (isbase64): Add.
25279
25280         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
25281         using a unsigned prototype, don't inline.
25282         (base64_decode): Use it.
25283
25284 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
25285
25286         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
25287         it.
25288
25289 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
25290
25291         * lib/save-cwd.c (save_cwd): Remove code to support the case
25292         where fchdir is missing or flaky.
25293
25294 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
25295
25296         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
25297
25298 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
25299
25300         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
25301         AC_LIBSOURCES now does this.
25302         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
25303         with new ullong_max module.
25304
25305 2005-01-19  Bruno Haible  <bruno@clisp.org>
25306
25307         * modules/sh-quote: New file.
25308         * MODULES.html.sh (Executing programs): Add sh-quote.
25309
25310 2005-01-19  Bruno Haible  <bruno@clisp.org>
25311
25312         * lib/sh-quote.h: New file, from GNU gettext.
25313         * lib/sh-quote.c: New file, from GNU gettext.
25314
25315 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
25316
25317         Merge from coreutils.
25318         * m4/ullong_max.m4: New file.
25319         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
25320         (gl_MACROS): Assume localeconv exists.
25321
25322 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
25323
25324         Merge changes from coreutils, as described below in several
25325         changelogs dated today.
25326
25327         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
25328         (O_DIRECTORY): Remove; not needed here, since "." must be
25329         a directory.  All uses removed.
25330         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
25331         universal on Suns, and we also need to test for IRIX.
25332         Revamp code to use 'if' rather than '#if'.
25333         Avoid unnecessary comparison of cwd->desc to 0.
25334
25335         * lib/utimens.c (futimens): Robustify the previous patch, by checking
25336         for known valid error numbers rather than observed invalid ones.
25337
25338 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
25339
25340         * modules/ullong_max: New file.
25341
25342         * modules/chdir-long, modules/openat: New files.
25343         * modules/save-cwd (Depends-on): Depend on chdir-long.
25344         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
25345
25346 2005-01-18  Jim Meyering  <jim@meyering.net>
25347
25348         Merge from coreutils.
25349         * m4/chdir-long.m4, m4/openat.m4: New files.
25350         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
25351         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
25352         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
25353         is sane and DOES follow symlinks.  Besides, testing 20 different
25354         systems found no broken chown implementations.
25355         Prompted by a change in rsync's copy of this macro.
25356         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
25357
25358         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
25359
25360         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
25361         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
25362         NULL-means-set-to-current-time semantics.
25363         Remove temporary file immediately, rather than waiting
25364         for configure's at-exit trap code to do it.
25365
25366 2005-01-18  Jim Meyering  <jim@meyering.net>
25367
25368         * lib/version-etc.c (version_etc_copyright): Update copyright date.
25369
25370         * lib/utimens.c (futimens): Account for the fact that futimes
25371         can also fail with errno == ENOSYS or errno == ENOENT.
25372         Patch from Dmitry V. Levin.
25373
25374         Change the name of the robust chdir function from chdir to chdir_long.
25375         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
25376         (restore_cwd): Use chdir_long, not chdir.
25377         * lib/chdir-long.c: Renamed from chdir.c.
25378         * lib/chdir-long.h: Renamed from chdir.h.
25379         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
25380         Hurd.
25381
25382 2005-01-18  Bruno Haible  <bruno@clisp.org>
25383
25384         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
25385         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
25386         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
25387         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
25388         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
25389         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
25390         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
25391         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
25392         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
25393         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
25394         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
25395         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
25396         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
25397         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
25398         Use an all-permissive copyright notice, recommended by RMS.
25399
25400 2005-01-18  Bob Proulx  <bob@proulx.com>
25401
25402         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
25403         simplify offsetof() macro construct to avoid compile failure with
25404         native HP-UX 11.0 ANSI C compiler.
25405
25406 2005-01-17  Bruno Haible  <bruno@clisp.org>
25407
25408         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
25409         redundant because stpncpy.m4 takes care of it.
25410
25411 2005-01-17  Bruno Haible  <bruno@clisp.org>
25412
25413         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
25414
25415 2005-01-17  Bruno Haible  <bruno@clisp.org>
25416
25417         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
25418         used.
25419
25420 2005-01-17  Bruno Haible  <bruno@clisp.org>
25421
25422         * lib/fwriteerror.h (fwriteerror): Change specification to include
25423         fclose.
25424         * lib/fwriteerror.c: Include <stdbool.h>.
25425         (fwriteerror): At the end, close the file stream. Record whether
25426         stdout was already closed.
25427
25428 2005-01-17  Bruno Haible  <bruno@clisp.org>
25429
25430         * lib/execute.c (environ): Declare if needed.
25431         * lib/pipe.c (environ): Likewise.
25432         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
25433
25434 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25435
25436         * modules/argp: Depend on vsnprintf
25437
25438 2005-01-10  Jim Meyering  <jim@meyering.net>
25439
25440         * modules/closeout (Depends-on): Add atexit.
25441
25442 2005-01-06  Bruno Haible  <bruno@clisp.org>
25443
25444         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
25445
25446 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
25447
25448         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
25449         definitions to be after all include files, to avoid collisions.
25450         Problem reported by Bob Proulx.
25451
25452 2005-01-04  Jim Meyering  <jim@meyering.net>
25453
25454         Changes imported from coreutils.
25455         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
25456         as the mkstemp template, use a temporary directory and an
25457         8.3-friendly template to avoid trouble on systems like DJGPP.
25458         Reported by Juan M. Guerrero via Stepan Kasal.
25459         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
25460         close. Remove the temporary directory right away, rather than waiting
25461         for configure's at-exit trap code to do it.
25462         Suggestion from Stepan Kasal.
25463
25464 2005-01-01  Simon Josefsson  <jas@extundo.com>
25465
25466         * gnulib-tool: Print #include directives when --import'ing.
25467
25468 2004-12-28  Simon Josefsson  <jas@extundo.com>
25469
25470         * tests/test-base64.c: Include required header files.  Remove
25471         unused variables.
25472
25473 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
25474
25475         * modules/error (Depends-on): Remove gettext.
25476
25477 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
25478
25479         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
25480         not needed.  This removes a dependency on the gettext module.
25481         [defined _LIBC]: Do not include <libintl.h>; not needed.
25482
25483 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
25484
25485         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
25486         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
25487
25488 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
25489
25490         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
25491         HAVE_DECL_STRTOLD.
25492
25493 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
25494
25495         * modules/getdate (Depends-on): Remove alloca-opt.
25496
25497 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
25498
25499         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
25500
25501 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
25502
25503         * lib/argp-parse.c: Include <stddef.h>.
25504         (alignof, alignto): New macros.
25505         (parser_init): Don't assume that void * is aligned sufficiently
25506         for struct option.
25507
25508         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
25509         need to extend the stack.
25510         (YYINITDEPTH): New macro, so that the initial stack isn't overly
25511         large.
25512
25513 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25514
25515         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
25516
25517 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
25518
25519         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
25520         (2004-10-24) change.  Apparently this was a false alarm.
25521
25522         * modules/getdate: Depend on alloca-opt, not alloca.
25523
25524 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
25525
25526         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
25527         Remove now-obsolete comment about AIX.
25528         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
25529         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
25530         (YYMAXDEPTH): New macro.
25531
25532 2004-12-18  Simon Josefsson  <jas@extundo.com>
25533
25534         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
25535
25536 2004-12-18  Bruno Haible  <bruno@clisp.org>
25537
25538         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
25539
25540 2004-12-18  Bruno Haible  <bruno@clisp.org>
25541
25542         * lib/fatal-signal.c (fatal_signals): Make non-const.
25543         (init_fatal_signals): New function.
25544         (uninstall_handlers, install_handlers): Ignore signals that were set to
25545         SIG_IGN.
25546         (at_fatal_signal): Call init_fatal_signals.
25547         (init_fatal_signal_set): Likewise. Ignore signals that were set to
25548         SIG_IGN.
25549         Reported by Paul Eggert.
25550
25551 2004-12-18  Bruno Haible  <bruno@clisp.org>
25552
25553         * doc/alloca.texi: New file.
25554         * doc/alloca-opt.texi: New file.
25555
25556 2004-12-17  Jim Meyering  <jim@meyering.net>
25557
25558         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
25559         Otherwise, install-sh could exit with improper exit status when
25560         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
25561
25562 2004-12-16  Simon Josefsson  <jas@extundo.com>
25563
25564         * tests/test-base64.c: Add license.
25565
25566 2004-12-15  Stepan Kasal  <address@hidden>
25567
25568         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
25569
25570 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
25571
25572         * modules/getcwd (Files): Add m4/d-ino.m4.
25573         Suggested by Mark D. Baushke.
25574
25575 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
25576
25577         * lib/getdate.y (textint): New member "negative".
25578         (time_zone_hhmm): New function.
25579         Expect 14 shift-reduce conflicts, not 13.
25580         (o_colon_minutes): New rule.
25581         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
25582         (yylex): Set the "negative" member of signed numbers.
25583
25584 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
25585
25586         * doc/getdate.texi (Time of day items, Time zone items):
25587         Describe new formats +00:00, UTC+00:00.
25588
25589 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
25590
25591         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
25592         spurious "-l"s.  Problem reported by Stepan Kasal.
25593
25594 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
25595
25596         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
25597         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
25598
25599 2004-12-04  Simon Josefsson  <jas@extundo.com>
25600
25601         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
25602         Vandoorselaere <yoann@prelude-ids.org>.
25603
25604 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
25605
25606         Changes imported from coreutils.
25607         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
25608         exist.
25609         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
25610
25611 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
25612
25613         Changes imported from coreutils.
25614         * lib/hard-locale.c: Assume <locale.h> exists.
25615         Include "strdup.h".
25616         (GLIBC_VERSION): New macro.
25617         (hard_locale): Assume setlocale exists.
25618         Rewrite to avoid #ifdef.
25619         Use strdup rather than malloc + strcpy.
25620         * lib/human.c: Assume <locale.h> exists.
25621         (human_readable): Assume localeconv exists.
25622
25623 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
25624
25625         * modules/hard-locale (Depends-on): Add strdup.
25626
25627 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
25628
25629         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
25630         convert T2, not T.  (Imported from libc.)
25631
25632 2004-11-30  Simon Josefsson  <jas@extundo.com>
25633
25634         * modules/restrict (License): Change to LGPL.
25635
25636 2004-11-30  Simon Josefsson  <jas@extundo.com>
25637
25638         * m4/restrict.m4: Add copyright and copying conditions.
25639
25640 2004-11-30  Simon Josefsson  <jas@extundo.com>
25641
25642         * m4/base64.m4: New file.
25643
25644 2004-11-30  Simon Josefsson  <jas@extundo.com>
25645
25646         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
25647         base64.
25648
25649         * tests/test-base64.c: New file.
25650
25651         * modules/base64: New file.
25652
25653 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
25654
25655         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
25656         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
25657
25658         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
25659
25660 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
25661
25662         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
25663         (__getcwd.c): Don't restore errno; glibc doesn't.
25664         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
25665         first, falling back to our code only if its results look suspicious.
25666         Ensure that the resulting buffer is only as large as necessary.
25667
25668         * lib/readutmp.c: Include readutmp.h first.
25669         Include <errno.h>, since readutmp.h no longer does that.
25670         * lib/readutmp.h: Don't include <errno.h>,
25671         <sys/param.h>, <time.h>; not needed to establish interface.
25672         (errno): Remove decl.
25673         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
25674         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
25675         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
25676
25677 2004-11-28  Simon Josefsson  <jas@extundo.com>
25678
25679         * lib/base64.h, base64.c: New file.
25680
25681 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
25682
25683         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
25684
25685 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
25686
25687         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
25688         (Depends-on): Remove pathmax, same.  Add mempcpy.
25689         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
25690         (Makefile.am): Append getcwd.h to lib_SOURCES.
25691         (Include): Add getcwd.h.
25692         (Maintainer): Change from Jim Meyering to "all, glibc",
25693         since getdate now uses intended-for-glibc code.
25694         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
25695         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
25696
25697 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
25698
25699         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
25700         HP's ANSI C compiler.
25701         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
25702         Declaring int functions causes warnings on some modern systems and
25703         shouldn't be needed to compile on ancient ones.
25704         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
25705         defined.
25706
25707         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
25708         with the following changes.
25709         (__set_errno): Parenthesize properly.
25710         Include <stdbool.h>.
25711         (MIN, MAX, MATCHING_INO): New macros.
25712         (__getcwd): Define with prototype, not K&R form.
25713         Use heuristics to allocate default buffer on stack if possible.
25714         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
25715         behavior, and to avoid the PATH_MAX limit when computing
25716         ../../../../...
25717         Use MATCHING_INO to compare inode number to file.
25718         Check for arithmetic overflow in size calculations.
25719         Fix bug in reallocation of dot array that caused getcwd to fail
25720         on directories nested deeper than 75.
25721         Be more careful about saving errno on error.
25722         Do not use realloc; use only free+malloc, as this is a bit
25723         more flexible and avoids a needless copy operation.
25724         Do not inspect st_dev and st_ino for symbolic links; POSIX
25725         doesn't specify the latter.
25726         Check for closedir errors.
25727         Avoid needless casts.
25728         Use "#ifdef weak_alias" around weak_alias, to be like other
25729         glibc code.
25730         The following changes to getcwd.c have effect only when used in
25731         gnulib; they have no effect inside glibc proper.
25732         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
25733         as alloca isn't used.
25734         (alloca, __alloca): Likewise.
25735         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
25736         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
25737         unconditionally, as gnulib assumes C89 or better.
25738         Do not include <sys/param.h>.
25739         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
25740         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
25741         better.
25742         (NULL) [!defined NULL]: Remove; we assume C89 or better.
25743         Include <dirent.h> in a way that is compatible with modern Autoconf.
25744         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
25745         New macros, if not already defined.
25746         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
25747         Use "_LIBC", not "defined _LIBC", for consistency.
25748         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
25749         a mempcpy module.
25750         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
25751         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
25752         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
25753         credit only to Jim Meyering and adjust the copyright dates.
25754         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
25755         <stdlib.h>, <unistd.h>, "pathmax.h".
25756         Instead, include "xgetcwd.h" (first) and "getcwd.h".
25757         (INITIAL_BUFFER_SIZE): Remove.
25758         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
25759
25760 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
25761
25762         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
25763         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
25764         Use the _ONCE methods, for efficiency.
25765         Check for fcntl.h.  In test program, include <errno.h>
25766         and <fcntl.h> if available.  Remove old K&R cruft from
25767         test program.  Check for common errors in GNU/Linux,
25768         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
25769         don't do AC_LIBOBJ, as that's getcwd.m4's job.
25770         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
25771         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
25772         name accordingly.
25773         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
25774         accommodate new getcwd.c.
25775         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
25776         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
25777         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
25778         that's all we need now.
25779
25780 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25781
25782         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
25783         argp-parse.c depends on getopt internals, that means we should
25784         always use our getopt, to be on the safe side.
25785         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
25786         order not to spoil the result of an eventual previous invocation
25787         of gl_GETOPT_SUBSTITUTE.
25788
25789 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25790
25791         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
25792         redefinition warnings. To avoid them, include the defines
25793         in `#if !defined __need_getopt ... #endif'. The only place
25794         where __getopt_argv_const is used is in definitions
25795         of getopt_long and getopt_long_only below, which are as well
25796         protected by `#ifndef __need_getopt'.
25797         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
25798         __need_getopt after including <stdio.h> and <unistd.h> These
25799         headers might have defined it.
25800
25801 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
25802
25803         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
25804
25805 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
25806
25807         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
25808         (futimens): New function, which uses futimes if available.
25809         (futimens, utimens): Support timespec==NULL, with same semantics
25810         as utime and utimens.
25811         * lib/utimens.h (futimens): New decl.
25812
25813 2004-11-23  Jim Meyering  <jim@meyering.net>
25814
25815         * lib/getopt_.h: Remove trailing blanks.
25816
25817 2004-11-23  Jim Meyering  <jim@meyering.net>
25818
25819         * lib/__fpending.c: Add comment.
25820
25821 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
25822
25823         * modules/canonicalize (Depends-on): Add xreadlink.
25824         Problem reported by James Youngman.
25825
25826 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
25827
25828         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
25829         New macros.
25830         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
25831         optopt): Use them instead of invoking ## directly; otherwise, the
25832         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
25833
25834 2004-11-19  Bruno Haible  <bruno@clisp.org>
25835
25836         * lib/strtok_r.c: Move comments from here...
25837         * lib/strtok_r.h: ... to here.
25838
25839 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
25840
25841         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
25842         implementations that mishandle size_t overflow.
25843
25844 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
25845
25846         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
25847         might fail.  Problem reported by Yoann Vandoorselaere.
25848         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
25849         implementations that mishandle size_t overflow.
25850
25851 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
25852
25853         * modules/canon-host (Depends-on): Add strdup.
25854
25855 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
25856
25857         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
25858
25859 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
25860
25861         * lib/canon-host.c: Include "strdup.h".
25862         (canon_host): Use getaddrinfo if available, so that IPv6 works.
25863         Use strdup instead of malloc/strcpy to duplicate strings.
25864
25865         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
25866         (human_space_before_unit): New constant.
25867         * lib/human.c (human_readable): Support it.
25868
25869         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
25870         (xgetcwd): Set errno correctly when failing.
25871         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
25872         the failure is actually due to a PATH_MAX problem.
25873
25874         Further getopt changes to make it more likely that glibc will
25875         buy the changes back.
25876         * lib/getopt.c (POSIXLY_CORRECT): New constant.
25877         (getopt): Use it, so to preserve glibc semantic
25878         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
25879         when compiling for libc.
25880         * lib/getopt_.h (__getopt_argv_const): Bring it back.
25881         (getopt_long, getopt_long_only): Use it.
25882
25883         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
25884         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
25885         (getopt): Argv is now char * const *, as per standard.
25886         (_getopt_internal_r, _getopt_internal): Argv is now char **,
25887         not char *__getopt_argv_const *.
25888         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
25889         _getopt_long_only_r): Likewise.
25890         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
25891         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
25892         _getopt_long_r, _getopt_long_only_r): Likewise.
25893         * lib/getopt_.h (__getopt_argv_const): Remove.
25894         (getopt): Argv is now char * const *, as per standard.
25895
25896         * lib/getdate.y (tORDINAL): New token.
25897         (day, relunit): Allow it for relative times.
25898         (relative_time_table): Use tORDINAL for ordinals.
25899
25900 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
25901
25902         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
25903         Document that "second" isn't allowed as an ordinal number.
25904
25905 2004-11-16  Jim Meyering  <jim@meyering.net>
25906
25907         * modules/closeout (Depends-on): Add fpending.
25908
25909 2004-11-15  Jim Meyering  <jim@meyering.net>
25910
25911         * lib/closeout.c: Include "__fpending.h" once again.
25912         Include <stdbool.h>.
25913         (close_stdout): Don't fail just because stdout was closed initially,
25914         since some programs don't write to stdout in the normal course of
25915         operation (other than --version and --help), and we don't want this
25916         function to make e.g. `touch file >&-' fail.
25917         But do fail if it was closed and someone has tried to write to it.
25918         E.g., `printf foo >&-' must fail.
25919
25920 2004-11-13  Jim Meyering  <jim@meyering.net>
25921
25922         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
25923
25924 2004-11-12  Simon Josefsson  <jas@extundo.com>
25925
25926         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
25927         small doc fix is still pending.
25928
25929 2004-11-11  Simon Josefsson  <jas@extundo.com>
25930
25931         * modules/strtok_r: New file.
25932
25933         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
25934         strtok_r.
25935
25936 2004-11-11  Simon Josefsson  <jas@extundo.com>
25937
25938         * m4/strtok_r.m4: New file.
25939
25940         * m4/getopt.m4: Replace opterr.
25941
25942 2004-11-11  Simon Josefsson  <jas@extundo.com>
25943
25944         * lib/strtok_r.h, strtok_r.c: New file.
25945
25946 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
25947
25948         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
25949         of replacing opterr, getopt, etc.  This should handle the
25950         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
25951
25952 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
25953
25954         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
25955         we can stop lying to compilers about the constness of argv when we
25956         are compiled outside glibc.
25957         (getopt, getopt_long, getopt_long_only): Use it.
25958         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
25959         _getopt_internal, getopt): Likewise.
25960         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
25961         _getopt_long_only_r): Likewise.
25962         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
25963         _getopt_long_r, _getopt_long_only_r): Likewise.
25964
25965         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
25966         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
25967         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
25968         the other external symbols.
25969         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
25970         declaration, since the above renaming now works around collisions.
25971
25972 2004-11-11  Jim Meyering  <jim@meyering.net>
25973
25974         * lib/linebreak.c: Remove trailing blanks.
25975         * lib/alloca_.h: Likewise.
25976         * lib/acosl.c: Likewise.
25977         * lib/euidaccess.c: Likewise.
25978         * lib/allocsa.h: Likewise.
25979
25980 2004-11-10  Simon Josefsson  <jas@extundo.com>
25981
25982         * m4/getaddrinfo.m4: New file.
25983
25984 2004-11-10  Simon Josefsson  <jas@extundo.com>
25985
25986         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
25987
25988 2004-11-10  Simon Josefsson  <jas@extundo.com>
25989
25990         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
25991         getaddrinfo.
25992
25993         * modules/getaddrinfo: New file.
25994
25995 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
25996
25997         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
25998
25999 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
26000
26001         * lib/mktime.c (SHR): New macro, which is a portable
26002         substitute for >> that should work even on Crays.
26003         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
26004         Problem reported by Mark D. Baushke in
26005         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
26006         * lib/getdate.y (SHR): Likewise.
26007         (tm_diff): Use it.
26008         * lib/strftime.c (SHR): Likewise.
26009         (tm_diff): Use it.
26010         * lib/quotearg.c (struct quoting_options): Use unsigned int for
26011         quote_these_too, so that right shifts are well defined.  All uses
26012         changed.
26013
26014 2004-11-10  Jim Meyering  <jim@meyering.net>
26015
26016         Ensure that no close failure goes unreported.
26017         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
26018         return early when it seems there's nothing to flush.
26019         Don't include __fpending.h.
26020
26021 2004-11-10  Jim Meyering  <jim@meyering.net>
26022
26023         * modules/closeout (Depends-on): Remove fpending.
26024
26025 2004-11-10  Jim Meyering  <jim@meyering.net>
26026
26027         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
26028
26029 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
26030
26031         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
26032         gl_FUNC_STRFTIME.
26033         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
26034         and AC_REQUIRE when possible, to avoid duplicate checks.
26035         Check for <wchar.h>.
26036
26037 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
26038
26039         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
26040
26041 2004-11-09  Bruno Haible  <bruno@clisp.org>
26042
26043         * m4/sockpfaf.m4: New file.
26044
26045 2004-11-05  Bruno Haible  <bruno@clisp.org>
26046
26047         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
26048         Reported by Mark D. Baushke <mdb@cvshome.org>.
26049
26050 2004-11-04  Bruno Haible  <bruno@clisp.org>
26051
26052         2004-09-11  Bruno Haible  <bruno@clisp.org>
26053                 * allocsa.valgrind: New file.
26054         2004-02-06  Bruno Haible  <bruno@clisp.org>
26055                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
26056                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
26057                 Reported by Christopher Seip <chris.seip@hp.com>.
26058
26059 2004-11-04  Bruno Haible  <bruno@clisp.org>
26060
26061         * modules/allocsa (Files): Add lib/allocsa.valgrind.
26062         (Makefile.am): Distribute it.
26063
26064 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
26065
26066         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
26067         with errno == ERANGE if the buffer is too small.
26068         Problem reported by Mark D. Baushke.
26069
26070 2004-11-03  Albert Chin  <china@thewrittenword.com>
26071             Paul Eggert  <eggert@cs.ucla.edu>
26072
26073         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
26074         equivalent, substitute $ac_type for equivalent type rather than
26075         blindly using uint32_t *always* which won't work if uint32_t is not
26076         available.  Define _UINT32_T to work around typedef of uint32_t if
26077         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
26078         2.5.1.
26079
26080 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
26081
26082         * m4/jm-macros.m4: Sync from coreutils.
26083         (gl_MACROS): Check for mbrlen, for pathchk.
26084         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
26085
26086 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
26087
26088         * lib/xreadlink.c (MAXSIZE): New macro.
26089         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
26090         size does not exceed MAXSIZE.  Avoid cast.
26091         As suggested by Mark D. Baushke in
26092         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
26093         if readlink fails with buffer size just under MAXSIZE, try again
26094         with MAXSIZE.
26095
26096 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
26097
26098         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
26099
26100 2004-11-02  Derek R. Price  <derek@ximbiot.com>
26101         and  Paul Eggert  <eggert@cs.ucla.edu>
26102
26103         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
26104         (get_date): Overparenthesize to avoid GCC warning.
26105
26106 2004-11-02  Bruno Haible  <bruno@clisp.org>
26107
26108         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
26109         returns void.
26110
26111 2004-11-02  Bruno Haible  <bruno@clisp.org>
26112
26113         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
26114         function returns void.
26115
26116 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
26117
26118         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
26119         fflush_unlocked, flockfile, funlockfile, funlockfile,
26120         fputs_unlocked, putc_unlocked.
26121
26122 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
26123
26124         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
26125         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
26126         already declared.
26127
26128 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
26129
26130         * modules/getdate (Files): Add doc/getdate.texi.
26131         (Depends-on): Add setenv, xalloc.
26132
26133 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
26134
26135         * lib/getdate.y: Add support for TZ="foo" within a date string.
26136         Fix some bugs near time_t boundaries.  Reject dates with
26137         out-of-range components, e.g., "Sept 31".
26138         Include <stdlib.h>, "setenv.h", "xalloc.h".
26139         (ISDIGIT_LOCALE): Remove; unused.
26140         Note that the TZ and time functions used here are not reentrant.
26141         (mktime_ok, get_tz): New functions.
26142         (TZBUFSIZE): New constant.
26143         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
26144         This requires that we sometimes generate our own TZ="XXX..." setting.
26145
26146 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
26147
26148         * doc/getdate.texi: New file, from coreutils with modifications for
26149         the new TZ parsing.
26150
26151 2004-10-27  Derek R. Price  <derek@ximbiot.com>
26152
26153         * lib/mktime.c (not_equal_tm): Remove redundant check.
26154
26155 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
26156
26157         * modules/regex (lib_SOURCES): Add regex.c.
26158         Reported by James Youngman in
26159         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
26160
26161 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
26162
26163         * lib/getdate.y: Use Bison 1.875 features, and some minor
26164         code cleanups.  This change does not affect semantics.
26165         Don't include <stdlib.h>; no longer needed.
26166         Don't include unlocked-io.h; only the "#if TEST" code uses
26167         stdio, and performance isn't crucial there.
26168         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
26169         Bison 1.875 features as described below.
26170         All uses of "PC." replaced by "pc->".
26171         (YYSTYPE): Add a forward declaration.
26172         (yylex, yyerror): Use full prototypes in forward decls.
26173         Use "%pure-parser" rather than obsolescent "%pure_parser".
26174         Use %parse-param and %lex-param instead of obsolescent
26175         YYPARSE_PARAM and YYLEX_PARAM.
26176         (meridian_table, month_and_day_table, time_units_table,
26177         relative_time_table, time_zone_table, military_table,
26178         lookup_zone, lookup_word, get_date):
26179         Use NULL instead of 0 where appropriate.
26180         (to_hour): Avoid abort (), to avoid a dependency on
26181         stdlib.h.
26182         (yyerror, yylex): Now accepts parser_control * arg.
26183         (main) [TEST]: Use '\0' rather than 0 for char.
26184
26185 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
26186
26187         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
26188
26189 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
26190
26191         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
26192         It's now the caller's responsibility to handle the case where
26193         !HAVE_GETPAGESIZE && !defined getpagesize.
26194
26195         * lib/mktime.c (leapyear): Arg is long int, not int.
26196
26197 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
26198
26199         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
26200
26201 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
26202
26203         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
26204         missing.  Problem reported by James Youngman.
26205
26206 2004-10-16  Simon Josefsson  <jas@extundo.com>
26207
26208         * gnulib-tool: Fix comments.  Fix parse problem.
26209         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
26210
26211 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
26212
26213         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
26214         implementation of getopt_long.  Problem reported by Alexander Taler in:
26215         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
26216
26217 2004-10-15  Bruno Haible  <bruno@clisp.org>
26218
26219         * gnulib-tool: Untabify. Initialize supplied_libname.
26220         (func_usage): More homogenous output.
26221         (func_modules_transitive_closure, func_modules_to_filelist,
26222         func_emit_lib_Makefile_am): New functions.
26223         (func_import): New function, extracted from big case statement. Use
26224         func_get_license, func_modules_transitive_closure,
26225         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
26226         opt_lgpl. Don't use test -a, as it's not portable.
26227         (func_create_testdir): Use func_modules_transitive_closure,
26228         func_modules_to_filelist, func_emit_lib_Makefile_am.
26229
26230 2004-10-15  Bruno Haible  <bruno@clisp.org>
26231
26232         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
26233
26234 2004-10-15  Bruno Haible  <bruno@clisp.org>
26235
26236         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
26237         the portions belonging to each module.
26238         Suggested by Derek Robert Price <derek@ximbiot.com>.
26239
26240 2004-10-12  Simon Josefsson  <jas@extundo.com>
26241
26242         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
26243         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
26244         to real functions.
26245
26246 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26247
26248         * modules/vsnprintf: New file.
26249
26250 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26251
26252         * m4/vsnprintf.m4: New file.
26253
26254 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26255
26256         * lib/vsnprintf.h: New file.
26257         * lib/vsnprintf.c: New file.
26258
26259 2004-10-11  Bruno Haible  <bruno@clisp.org>
26260
26261         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
26262         vsnprintf.
26263
26264 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
26265
26266         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
26267
26268 2004-10-07  Bruno Haible  <bruno@clisp.org>
26269
26270         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
26271         fits into the provided buffer.
26272
26273 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
26274
26275         * lib/diacrit.c, diacrit.h: Add GPL notice.
26276
26277         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
26278         notice.
26279         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
26280         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
26281         This avoids a potential constant-folding bug.
26282
26283 2004-10-05  Bruno Haible  <bruno@clisp.org>
26284
26285         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
26286         for the declaration of strsep.
26287
26288 2004-10-05  Bruno Haible  <bruno@clisp.org>
26289
26290         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
26291
26292 2004-10-04  Simon Josefsson  <jas@extundo.com>
26293
26294         * modules/memmem: New file.
26295         * tests/test-memmem.c: New file.
26296         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
26297
26298 2004-10-04  Simon Josefsson  <jas@extundo.com>
26299
26300         * m4/memmem.m4: New file.
26301
26302 2004-10-04  Simon Josefsson  <jas@extundo.com>
26303
26304         * lib/memmem.h: New file.
26305         * lib/memmem.c: New file, taken from glibc.
26306
26307 2004-10-04  Simon Josefsson  <jas@extundo.com>
26308
26309         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
26310         '#ifdef USE_UNLOCKED_IO'.
26311
26312 2004-10-04  Simon Josefsson  <jas@extundo.com>
26313
26314         * config/srclist.txt: Add memmem from glibc.
26315
26316 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
26317
26318         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
26319
26320         * modules/argmatch, modules/argp, modules/closeout, modules/error,
26321         modules/exclude, modules/getdate, modules/getline,
26322         modules/getndelim2, modules/getpass, modules/getpass-gnu,
26323         modules/getusershell, modules/linebuffer, modules/md5,
26324         modules/mountlist, modules/posixtm, modules/readtokens,
26325         modules/readutmp, modules/regex, modules/sha1,
26326         modules/version-etc, modules/yesno:
26327         Remove dependency on unlocked-io.
26328
26329 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
26330
26331         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
26332
26333         * m4/unlocked-io.m4: Add copyright notice.
26334         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
26335
26336 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
26337
26338         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
26339         * lib/xmalloc.c (xmemdup): Likewise.
26340         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
26341         XFREE): Remove these long-obsolescent macros.
26342         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
26343         * lib/xstrdup.c: Remove.
26344
26345         * lib/regex.c (re_comp): Cast gettext return value to char *,
26346         Problem reported by Martin Neitzel via Mark D. Baushke.
26347
26348 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
26349
26350         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
26351         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
26352         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
26353         regex.c, sha1.c, version-etc.c, yesno.c:
26354         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
26355         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
26356         the includer's responsibility.
26357
26358         Sync from coreutils.
26359
26360         * lib/modechange.c (mode_compile): Don't decrement a pointer that
26361         points to the start of a string, as the C Standard says the
26362         resulting behavior is undefined.
26363
26364         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
26365         simple -> simple_backups, numbered_existing ->
26366         numbered_existing_backups, numbered -> numbered_backups
26367         to avoid shadowing problems.  All uses changed.
26368         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
26369         * lib/backupfile.c (check_extension, numbered_backup):
26370         Rename locals to avoid shadowing 'basename'.
26371         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
26372         once.
26373
26374         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
26375         * lib/.cvsignore: Add getopt.h.
26376
26377 2004-10-04  Bruno Haible  <bruno@clisp.org>
26378
26379         * modules/README: New file.
26380         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
26381         not a module.
26382
26383 2004-10-02  Jim Meyering  <jim@meyering.net>
26384
26385         * lib/dirfd.h, getpagesize.h: Add copyright notice.
26386
26387 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26388
26389         * modules/strsep: New file.
26390
26391 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26392
26393         * m4/strsep.m4: New file.
26394
26395 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26396
26397         * lib/strsep.h: New file.
26398         * lib/strsep.c: New file.
26399
26400 2004-10-01  Simon Josefsson  <jas@extundo.com>
26401
26402         * lib/snprintf.c (snprintf): Handle size==0.
26403
26404 2004-10-01  Simon Josefsson  <jas@extundo.com>
26405             Bruno Haible  <bruno@clisp.org>
26406
26407         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
26408         (snprintf): Declare 'args'.
26409
26410 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
26411
26412         * lib/snprintf.c: Remove comments as to why each header is needed.
26413
26414 2004-10-01  Bruno Haible  <bruno@clisp.org>
26415
26416         * MODULES.html.sh: Add strsep.
26417
26418 2004-09-30  Simon Josefsson  <jas@extundo.com>
26419
26420         * modules/snprintf: New file.
26421
26422 2004-09-30  Simon Josefsson  <jas@extundo.com>
26423
26424         * m4/snprintf.m4: New file.
26425
26426 2004-09-30  Simon Josefsson  <jas@extundo.com>
26427
26428         * lib/snprintf.h, lib/snprintf.c: New files.
26429
26430 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26431
26432         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
26433         (hol_entry_help): Never translate an empty string.
26434         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
26435         * lib/argp.h (OPTION_NO_TRANS): New option.
26436
26437 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
26438
26439         * modules/argp (Maintainer): Replace Simon Josefsson
26440         by Sergey Poznyakoff.
26441
26442 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
26443
26444         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
26445         changes merged back into glibc.
26446
26447 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
26448
26449         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
26450
26451 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
26452
26453         * lib/xvasprintf.c: Include xalloc.h.
26454         (xvasprintf): Use xalloc_die, not xmalloc_die.
26455
26456 2004-09-29  Bruno Haible  <bruno@clisp.org>
26457
26458         * modules/alloca-opt: New file, derived from modules/alloca.
26459         * modules/allocsa: Depend on alloca-opt instead of alloca.
26460         * modules/setenv: Likewise.
26461         * modules/vasnprintf: Likewise.
26462         * MODULES.html.sh: Add alloca-opt.
26463
26464 2004-09-28  Simon Josefsson  <jas@extundo.com>
26465
26466         * gnulib-tool: New parameter --lgpl, to asseert that modules are
26467         LGPL, and to replace license template from GPL to LGPL.
26468
26469 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
26470
26471         * modules/dummy: Change license to LGPL.
26472
26473 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
26474
26475         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
26476
26477 2004-09-24  Simon Josefsson  <jas@extundo.com>
26478
26479         * modules/minmax (License): Change from GPL to LGPL.
26480
26481 2004-09-23  Simon Josefsson  <jas@extundo.com>
26482
26483         * gnulib-tool (--import): Typo.
26484
26485 2004-09-23  Simon Josefsson  <jas@extundo.com>
26486
26487         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
26488
26489 2004-09-22  Bruno Haible  <bruno@clisp.org>
26490
26491         * modules/*: Add 'License' field.
26492         * gnulib-tool: Accept --extract-license option.
26493         (func_get_license): New function.
26494
26495 2004-09-21  Bruno Haible  <bruno@clisp.org>
26496
26497         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
26498         Reported by Simon Josefsson.
26499
26500 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
26501
26502         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
26503         gl_AC_TYPE_LONG_LONG.
26504
26505 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
26506
26507         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
26508
26509 2004-09-18  Simon Josefsson  <jas@extundo.com>
26510         and  Paul Eggert  <eggert@cs.ucla.edu>
26511
26512         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
26513         calls with autoreconf.  Define GL_LIB.
26514
26515 2004-09-14  Karl Berry  <karl@gnu.org>
26516
26517         * config/srclist.txt: unsync setenv.c, sigh.
26518
26519 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
26520
26521         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
26522         Problem reported by Bruno Haible in:
26523         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
26524
26525 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
26526
26527         * config/srclist.txt: Comment out argp-pvh.c.
26528
26529 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
26530
26531         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
26532         in case some system header has #define'd it.  Problem reported by
26533         Soeren D. Schulze in
26534         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
26535
26536 2004-09-09  Karl Berry  <karl@gnu.org>
26537
26538         * regex.[ch]: delete from the root.  These were supposed to be
26539                 synced with emacs cvs, but this has not happened for about
26540                 a year, and anyway nothing else uses emacs regex.[ch].
26541                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
26542                 lib/regex[.ch] is untouched.
26543
26544 2004-09-09  Bruno Haible  <bruno@clisp.org>
26545
26546         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
26547
26548 2004-09-09  Bruno Haible  <bruno@clisp.org>
26549
26550         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
26551         modifications.
26552         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
26553
26554 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
26555
26556         * modules/xvasprintf: New file.
26557         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
26558
26559 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
26560
26561         * lib/xvasprintf.h: New file.
26562         * lib/xvasprintf.c: New file.
26563         * lib/xasprintf.c: New file.
26564
26565 2004-09-08  Bruno Haible  <bruno@clisp.org>
26566
26567         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
26568
26569 2004-09-08  Bruno Haible  <bruno@clisp.org>
26570
26571         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
26572         length is > INT_MAX.
26573         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
26574         more.
26575
26576 2004-09-08  Bruno Haible  <bruno@clisp.org>
26577
26578         * lib/stdint_.h: New file, taken from GNU clisp.
26579
26580 2004-09-08  Bruno Haible  <bruno@clisp.org>
26581             Oskar Liljeblad  <oskar@osk.mine.nu>
26582
26583         * modules/stdint: New file.
26584         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
26585
26586 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26587
26588         Import from coreutils.
26589         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
26590         strings on unbounded length.  alloca's performance benefits aren't
26591         that important here.
26592         (V_STRDUP): Remove.
26593         (parse_with_separator): New function, with most of the internals
26594         of the old parse_user_spec.  Allow user to omit both user and group,
26595         for compatibility with FreeBSD.
26596         Clone only the user name, not the entire spec.
26597         Do not set *uid, *gid unless entirely successful.
26598         Avoid memory leak in some failing cases.
26599         Fix regression for USER.GROUP reported by Dmitry V. Levin in
26600         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
26601         (parse_user_spec): Rewrite to use parse_with_separator.
26602
26603 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26604
26605         * modules/userspec: Don't depend on alloca.
26606
26607 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26608
26609         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
26610
26611 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
26612
26613         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
26614         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
26615         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
26616
26617 2004-08-16  Simon Josefsson  <jas@extundo.com>
26618
26619         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
26620         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
26621         Add --dry-run for --import.
26622         Let user provided command line parameters override configure.ac
26623         settings.
26624
26625 2004-08-12  Simon Josefsson  <jas@extundo.com>
26626
26627         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
26628         as discussed with Paul Eggert in threads rooted at
26629         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
26630         and
26631         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
26632         Before, the test was empty, and relied on ELIDE_CODE in source
26633         code.)
26634         (gl_PREREQ_GETOPT): New macro.
26635         (gl_GETOPT): Use them.
26636
26637 2004-08-12  Simon Josefsson  <jas@extundo.com>
26638
26639         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
26640         * lib/getopt_.h: Renamed from getopt.h.
26641
26642 2004-08-12  Simon Josefsson  <jas@extundo.com>
26643
26644         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
26645         Change default library name from libfoo to libgnu.
26646         Now, if you have a configure.ac that says:
26647                 gl_SOURCE_BASE(gl)
26648                 gl_M4_BASE(gl/m4)
26649                 gl_MODULES(error getopt etcetera)
26650                 gl_INIT
26651         you can import all you need by running:
26652                 ../gnulib/gnulib-tool --import
26653
26654         * modules/getopt (Files): Rename getopt.h to getopt_.h.
26655         (Makefile.am): Rewrite, use logic from argz.
26656         (Include): Use <getopt.h> instead of "getopt.h".
26657
26658 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
26659
26660         * modules/argp (Files): Add m4/unlocked-io.m4.
26661         (Depends-on): Add extensions.
26662
26663 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
26664
26665         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
26666         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
26667         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
26668         Check for program_invocation_name, program_invocation_short_name,
26669         flockfile, funlockfile, features.h, _getopt_long_only_r.
26670
26671 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
26672
26673         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
26674         its complicated substitute.
26675         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
26676         and program_invocation_name.
26677         (__argp_basename) [!_LIBC]: Remove; the only use was
26678         replaced by its body.
26679         (__argp_short_program_name): Change condition from
26680         !defined __argp_short_program_name to
26681         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
26682         to match argp-namefrob.h.
26683         (__argp_failure): Don't assume strerror_r returns char *.
26684         * lib/argp-parse.c (N_): Define unconditionally.
26685         (argp_default_options): Fill out initializers with 0 to avoid
26686         gcc warnings.
26687
26688 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
26689
26690         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
26691         getopt1.c.
26692
26693 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
26694
26695         Merge from coreutils.
26696
26697         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
26698
26699         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
26700         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
26701
26702 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
26703
26704         Merge from coreutils.
26705
26706         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
26707         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
26708         for Reliant Unix 5.43.
26709
26710         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
26711         (union fooround): Use uintmax_t, not long int.
26712         The rest is a merge from libc:
26713         [defined _LIBC]: Include <shlib-compat.h>.
26714         (_obstack) [defined _LIBC]: Remove after 2.3.4.
26715
26716         * lib/settime.c (settime): Recode to avoid warning with
26717         Sun Forte C 6U2.
26718
26719         * lib/strverscmp.c: Convert to UTF-8.
26720
26721 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
26722
26723         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
26724         m4/uintmax_t.m4.
26725
26726 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
26727
26728         * modules/xalloc-die: New file.
26729         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
26730
26731         * modules/md5 (Files): Add m4/uint32_t.m4.
26732         * modules/sha1: Renamed from modules/sha.
26733         (Files):
26734         Rename lib/sha.h to lib/sha1.h.
26735         Rename lib/sha.c to lib/sha1.c.
26736         Rename m4/sha.m4 to m4/sha1.m4.
26737         (lib_SOURCES): Likewise.
26738         (configure.ac): Rename gl_SHA to gl_SHA1.
26739         (Include): sha.h -> sha1.h.
26740
26741 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
26742
26743         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
26744         * m4/sha1.m4: Renamed from sha.m4.
26745         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
26746
26747 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
26748
26749         * lib/obstack.h (obstack_empty_p):
26750         Don't assume that chunk->contents is suitably aligned.
26751         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
26752         Likewise. Problem reported by Benno in
26753         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
26754
26755         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
26756         readable.  This could be improved further but it'd take some work.
26757
26758 2004-08-08  Simon Josefsson  <jas@extundo.com>
26759
26760         * modules/xgethostname (Depends-on): Remove exit and error (not
26761         used).
26762
26763         * modules/getpass-gnu: Add getpass.h.
26764         (Depends-on): Add stdbool.
26765         * modules/getpass: Add getpass.h.
26766
26767 2004-08-08  Simon Josefsson  <jas@extundo.com>
26768
26769         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
26770         Check getpass declaration.
26771
26772 2004-08-08  Simon Josefsson  <jas@extundo.com>
26773
26774         * lib/xgethostname.c: Don't include error.h (not used).
26775
26776         * lib/getpass.h: Add.
26777         * lib/getpass.c: Include getpass.h first.
26778
26779 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
26780
26781         * lib/xalloc-die.c: New file.
26782         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
26783         All uses removed.
26784         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
26785         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
26786         xalloc-die.c.
26787         (_, N_, xalloc_die): Move to xalloc-die.c.
26788         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
26789         so that we needn't mess with xalloc_msg_memory_exhausted.
26790
26791         * lib/sha1.h: Renamed from sha.h.
26792         (SHA1_H): Renamed from _SHA_H.
26793         (sha1_ctx): Renamed from sha_ctx.
26794         (sha1_init_ctx): Renamed from sha_init_ctx.
26795         (sha1_process_block): Renamed from sha_process_block.
26796         (sha1_process_bytes): Renamed from sha_process_bytes.
26797         (sha1_finish_ctx): Renamed from sha_finish_ctx.
26798         (sha1_read_ctx): Renamed from sha_read_ctx.
26799         (sha1_stream): Renamed from sha_stream.
26800         (sha1_buffer): Renamed from sha_buffer.
26801         * lib/sha1.c: Likewise; renamed from sha.c.
26802         Do not include <sys/types.h>.
26803         Include <stddef.h> rather than <stdlib.h>.
26804
26805 2004-08-08  Bruno Haible  <bruno@clisp.org>
26806
26807         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
26808         FILESYSTEM_PREFIX_LEN.
26809         * lib/progreloc.c: Likewise.
26810         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
26811
26812 2004-08-06  Simon Josefsson  <jas@extundo.com>
26813
26814         * modules/progname (Depends-on): Don't depend on stdbool.
26815
26816 2004-08-06  Simon Josefsson  <jas@extundo.com>
26817
26818         * modules/getsubopt: New file.
26819         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26820         getsubopt.
26821
26822 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26823
26824         More merge from coreutils.
26825
26826         * m4/utimens.m4, m4/utimecmp.m4: New files.
26827         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
26828         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
26829         prereq.m4, sha.m4: Import changes from coreutils.
26830
26831 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26832
26833         More merge from coreutils.
26834         * modules/raise, modules/readtokens0, modules/utimens:
26835         * modules/utimecmp, module/xnanosleep: New files.
26836         * modules/strftime: Add lib/strftime.h.
26837         Change include from <time.h> to "strftime.h".
26838         * modules/yesno: Add lib/yesno.h.
26839         * modules/backupfile: Remove lib/addext.c.
26840         * modules/euidaccess: Add stat-macros.h.
26841         * modules/canonicalize, modules/euidaccess,
26842         modules/filemode, modules/lchown, modules/makepath,
26843         modules/rmdir, modules/stat: Likewise.
26844
26845 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26846
26847         Merge from tar.
26848         * lib/argp-help.c (make_hol, hol_append): Don't assume that
26849         SIZE_MAX is a valid preprocessor constant.
26850         (__argp_basename): Change from "#ifndef _LIBC"
26851         to "#ifndef __argp_short_program_name", so that
26852         we don't compile these functions for tar.
26853
26854         More merges from coreutils.
26855         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
26856         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
26857         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
26858         * lib/addext.c: Remove; no longer needed.
26859         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
26860         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
26861         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
26862         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
26863         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
26864         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
26865         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
26866         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
26867         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
26868         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
26869         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
26870         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
26871         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
26872         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
26873         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
26874         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
26875         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
26876         Import changes from coreutils.
26877
26878 2004-08-05  Simon Josefsson  <jas@extundo.com>
26879
26880         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
26881
26882 2004-08-05  Simon Josefsson  <jas@extundo.com>
26883
26884         * m4/getsubopt.m4: New file.
26885
26886 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
26887
26888         Merge from coreutils.
26889
26890         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
26891         * m4/getcwd-path-max.m4: New files.
26892
26893         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
26894         FILESYSTEM_PREFIX_LEN ->
26895         FILE_SYSTEM_PREFIX_LEN.
26896         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
26897         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
26898         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
26899         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
26900
26901         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
26902         prerequisite modules now handle the DOS stuff.
26903         Don't check for unistd.h.
26904
26905 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
26906
26907         Merge from coreutils.
26908
26909         * lib/.gdb-history: Remove; this doesn't belong here.
26910
26911         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
26912         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
26913         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
26914         * lib/getcwd.c: New files.
26915
26916         * lib/dirname.h: Include <stdbool.h>.
26917         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
26918         for consistency with POSIX terminology.  All uses changed.
26919         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
26920         (strip_trailing_slashes): Use bool for booleans.
26921         * lib/stripslash.c (strip_trailing_slashes): Likewise.
26922
26923         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
26924         sometimes returns a positive errno value even when it succeeds.
26925         (print_errno_message) [!LIBC]: Fall back on strerror if
26926         __strerror_r fails.
26927
26928         * lib/path-concat.c (mempcpy): Don't define if a system header defines
26929         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
26930         (longest_relative_suffix): New function.
26931         (path_concat): Use it.  Assume first argument is not NULL.
26932         Port to DOS.  Omit redundant separators.
26933         Report an error instead of returning NULL.
26934         Use mempcpy instead of memcpy.
26935         (xpath_concat): Remove: not declared or used.
26936
26937         * lib/same.h: Include <stdbool.h>
26938         (same_name): Return bool, not int.
26939         * lib/same.c (same_name): Likewise.
26940         (errno): Don't declare; we assume C89 or better now.
26941
26942         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
26943         if not already defined.
26944
26945         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
26946         * lib/dup-safer.c (errno): Likewise.
26947
26948 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
26949
26950         Merge from coreutils.
26951         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
26952         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
26953         * modules/path-concat: Don't depend on strdup.
26954
26955 2004-08-03  Simon Josefsson  <jas@extundo.com>
26956
26957         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
26958         * lib/progname.h: Don't include stdbool.h.
26959
26960 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
26961
26962         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
26963         * MODULES.html.sh (func_all_modules): Remove fatal.
26964
26965 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
26966
26967         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
26968
26969 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
26970
26971         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
26972         working.
26973
26974 2004-08-02  Simon Josefsson  <jas@extundo.com>
26975
26976         * lib/getsubopt.h: New file, with comments from Bruno Haible.
26977         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
26978         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
26979
26980 2004-08-01  Simon Josefsson  <jas@extundo.com>
26981
26982         * lib/xgetdomainname.c: Include stdlib.h, for free().
26983
26984 2004-07-19  Bruno Haible  <bruno@clisp.org>
26985
26986         * MODULES.html.sh (func_all_modules): Add dummy.
26987
26988 2004-07-16  Simon Josefsson  <jas@extundo.com>
26989
26990         * modules/dummy: New file.
26991
26992 2004-07-16  Simon Josefsson  <jas@extundo.com>
26993
26994         * lib/dummy.c: New file.
26995
26996 2004-07-16  Bruno Haible  <bruno@clisp.org>
26997
26998         * lib/backupfile.h: Add extern "C" for C++.
26999         * lib/closeout.h: Likewise.
27000         * lib/copy-file.h: Likewise.
27001         * lib/findprog.h: Likewise.
27002         * lib/full-write.h: Likewise.
27003         * lib/pathname.h: Likewise.
27004         * lib/progname.h: Likewise.
27005         * lib/stpcpy.h: Likewise.
27006         * lib/stpncpy.h: Likewise.
27007         * lib/strcase.h: Likewise.
27008         * lib/strstr.h: Likewise.
27009         * lib/xalloc.h: Likewise.
27010
27011         * lib/mbswidth.h: Add extern "C" for C++.
27012         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
27013
27014 2004-07-13  Robert Millan  <robertmh@gnu.org>
27015
27016         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
27017
27018 2004-07-09  Simon Josefsson  <jas@extundo.com>
27019
27020         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
27021         failed without this.)
27022
27023 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
27024
27025         * modules/chown (Files): Add lib/fchown-stub.c, since
27026         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
27027
27028 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
27029
27030         * lib/fchown-stub.c: New file.
27031
27032 2004-06-24  Jim Meyering  <jim@meyering.net>
27033
27034         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
27035
27036 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
27037
27038         * modules/argz: Omit "#include".
27039
27040         * MODULES.html.sh (func_all_modules): Add calloc, to match
27041         2004-06-01 addition of calloc module.
27042
27043 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
27044
27045         * m4/argz.m4: New file, which is autoupdated from libtool.
27046
27047 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
27048
27049         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
27050         libtool.
27051
27052 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
27053
27054         * config/srclist-update: Don't insist on "USA." before the
27055         close-comment, as libtool omits the period and puts the */ on a
27056         separate line.
27057         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
27058         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
27059
27060 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
27061
27062         * modules/argz: New file.
27063         * MODULES.html.sh (func_all_modules): Add argz.
27064
27065 2004-06-12  Jim Meyering  <jim@meyering.net>
27066         and  Paul Eggert  <eggert@cs.ucla.edu>
27067
27068         * modules/hash (Files): Add lib/xalloc.h.
27069         * modules/pipe (Depends-on): Add wait-process.
27070         * modules/stat (Depends-on): Add xalloc.
27071         * modules/userspec (Files): Add lib/userspec.h.
27072         * modules/xstrto
27073
27074         Upgrade from gettext-0.13.
27075         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
27076         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
27077         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
27078
27079 2004-06-10  Jim Meyering  <jim@meyering.net>
27080
27081         * lib/calloc.c: New file.
27082
27083 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27084
27085         * lib/getdate.y (yylex): Allow space between sign and number.
27086         Problem reported by Dan Jacobson.
27087
27088 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
27089
27090         Merge from coreutils CVS.
27091
27092         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
27093         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
27094         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
27095         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
27096         xstrtol.m4: Fix copyright date and/or serial number.
27097
27098         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
27099         See if we need an fchown replacement.
27100         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
27101         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
27102         and use the replacement function if we detect either defect.
27103
27104         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
27105         gl_UTIMECMP.
27106
27107 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
27108         and  Jim Meyering  <jim@meyering.net>
27109
27110         Merge from coreutils CVS.
27111
27112         * lib/stat-macros.h: New file, with contents from file-type.h
27113         and coreutils' system.h.
27114         * lib/file-type.c: Include "stat-macros.h".
27115         * lib/file-type.h (file_type): Move all macro definitions to new file,
27116         stat-macros.h.
27117
27118         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
27119         Wrap old code with this conditional.
27120         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
27121         function that does not dereference symlinks.
27122         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
27123
27124         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
27125         dependency problems.
27126         (xreadlink): Accept new arg SIZE, for efficiency.
27127         All decls and uses changed.
27128         * lib/xreadlink.h: Include <stddef.h>, for size_t.
27129
27130         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
27131         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
27132
27133         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
27134         sysexits.h.
27135
27136 2004-06-01  Jim Meyering  <jim@meyering.net>
27137
27138         * m4/calloc.m4: New file.
27139
27140 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
27141
27142         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
27143         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
27144         Also, fix a typo in a diagnostic.
27145
27146 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
27147
27148         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
27149         or AC_FUNC_REALLOC.
27150
27151 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
27152
27153         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
27154         macros to be defined.
27155         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
27156         the allocator returns NULL because the requested size is zero.
27157
27158 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27159
27160         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
27161         var.  Add comment explaining why libc still defines it.  This
27162         merges the following patch from glibc:
27163         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
27164
27165 2004-05-20  Andreas Schwab  <schwab@suse.de>
27166
27167         * m4/free.m4: Replace free if it not known to work, not the other
27168         way round.
27169
27170 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
27171
27172         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
27173         present in glibc since revision 1.1 of this file.
27174         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
27175         obstack_alignment_mask, obstack_alloc, obstack_base,
27176         obstack_blank, obstack_blank_fast, obstack_chunk_size,
27177         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
27178         obstack_grow0, obstack_init, obstack_int_grow,
27179         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
27180         obstack_next_free, obstack_object_size, obstack_ptr_grow,
27181         obstack_ptr_grow_fast, obstack_room): Remove declarations of
27182         nonexistent functions.
27183
27184 2004-05-18  Karl Berry  <karl@gnu.org>
27185
27186         * config/srclist.txt: break link for vasnprintf.c.
27187
27188 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
27189
27190         Port obstack to the AS/400, where pointers are 16 bytes wide and
27191         you cannot cast an integer to a valid pointer.  This patch is
27192         currently waiting to be integrated into glibc; see
27193         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
27194
27195         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
27196         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
27197         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
27198         (struct obstack): temp member is now a union of a pointer and
27199         an integer, instead of an integer.  All integer uses changed.
27200         This does not affect the physical layout of struct obstack,
27201         except on hosts (like the AS/400) where the size or alignment of
27202         void * is greater than that of ptrdiff_t.
27203         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
27204         __STDC__)]: Store temporary in pointer member of union, not
27205         integer member.
27206         * lib/obstack.c: Include <stddef.h>, for offsetof.
27207         (struct fooalign): Remove; it doesn't need a name.
27208         (union fooround): Change double to long double, and add void *.
27209         (DEFAULT_ALIGNMENT): Use offsetof to compute.
27210         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
27211         not a macro.  Hence the values are always int; so remove all
27212         casts-to-int in uses.
27213
27214 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
27215
27216         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
27217         we can get this patch merged into glibc.
27218
27219 2004-05-17  Derek R. Price  <derek@ximbiot.com>
27220             Paul Eggert  <eggert@cs.ucla.edu>
27221
27222         * m4/argp: Depend on alloca.
27223
27224 2004-05-17  Derek R. Price  <derek@ximbiot.com>
27225             Paul Eggert  <eggert@cs.ucla.edu>
27226
27227         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
27228         freecoding.
27229
27230 2004-05-17  Bruno Haible  <bruno@clisp.org>
27231
27232         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
27233         precision that consists of a '.' followed by an empty digit string.
27234         Patch by Tor Lillqvist <tml@iki.fi>.
27235
27236 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
27237
27238         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
27239         for backward compatibility with older code.  We need our own
27240         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
27241         it under some other name, and our alloca.h will define it.
27242
27243 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
27244             Derek Price  <derek@ximbiot.com>
27245
27246         * lib/alloca.c: Include <alloca.h>, to get our interface.
27247         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
27248         include <alloca.h> first.  Use C89 prototype for alloca; this
27249         requires including <stddef.h> for size_t.  Use extern "C" if C++.
27250         Use #elif for simplicity, since we can assume C89 now.
27251         Don't try to source the system alloca.h since it will not be found
27252         and to prevent recursively including its replacement.
27253         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
27254         * lib/regex.c: Likewise.
27255
27256 2004-05-16  Derek Price  <derek@ximbiot.com>
27257             Paul Eggert  <eggert@cs.ucla.edu>
27258
27259         getline cleanup.  This changes the getndelim2 API: both order of
27260         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
27261         no delimiter).
27262
27263         * lib/getline.c: Don't include stddef.h or stdio.h, since our
27264         interface does that.
27265         (getline): Always use getdelim, so that we don't have two
27266         copies of this code.
27267         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
27268         if available.
27269         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
27270         (GETNDELIM2_MAXIMUM): New macro.
27271         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
27272         instead of the old practice of delim2==0.  All callers changed.
27273         Return -1 on overflow, instead of returning junk.
27274         Do not set *linesize unless allocation succeeds.
27275         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
27276         that we include sys/types.h.
27277         * lib/getnline.h: Likewise.
27278         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
27279         (getndelim2): Reorder arguments.
27280         * lib/getnline.c (getnline, getndelim):
27281         Don't discard the NMAX argument.
27282         (getnline): Invoke getndelim, to avoid code duplication.
27283         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
27284         of (size_t) -1 by callers of the getnline family.
27285
27286 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27287
27288         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
27289         Check for gettimeofday.
27290         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
27291         Check for settimeofday, stime.
27292
27293 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27294
27295         * lib/nanosleep.c (suspended): Change its type from int to
27296         sig_atomic_t volatile.
27297         (first_call): Make it private to rpl_nanosleep, and have it
27298         be zero initially as that's a bit faster.
27299         (my_usleep): Round up fractional times instead of truncating them,
27300         as this is the usual meaning for 'sleep'.
27301
27302         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
27303         doesn't work.
27304         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
27305         (ENOSYS): Define if not defined.
27306         (settime): Fall back on stime if it exists and settimeofday fails.
27307         But don't bother with fallbacks if a method fails with errno == EPERM.
27308
27309 2004-05-11  Jim Meyering  <jim@meyering.net>
27310
27311         Prior to this change, the save_cwd caller required read access to the
27312         current directory on most systems (ones with the fchdir function).
27313
27314         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
27315         fails, try write-only, and finally, resort to using xgetcwd.
27316
27317 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
27318
27319         * lib/obstack.c, obstack.h: Import changes from libc.
27320
27321 2004-04-28  Bruno Haible  <bruno@clisp.org>
27322
27323         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
27324         also implicitly appends .exe to executables.
27325         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
27326         accepts Windows pathnames.
27327         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
27328         Treat Cygwin like Windows, since it now accepts Windows pathnames.
27329         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
27330         Treat Cygwin like Windows, since it now accepts Windows pathnames.
27331         Reported by Derek Robert Price <derek@ximbiot.com>.
27332
27333 2004-04-21  Karl Berry  <karl@gnu.org>
27334
27335         * config/srclist.txt (localcharset.c): break sync.
27336
27337 2004-04-20  Paul Eggert  <eggert@twinsun.com>
27338
27339         * m4/host-os.m4: Add a copyright notice.
27340
27341 2004-04-20  Jim Meyering  <jim@meyering.net>
27342
27343         Change UTILS_ to gl_ in AC_DEFINE'd names.
27344         Change utils_- and jm_-prefixed variables, too.
27345         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
27346         UTILS_FUNC_MKDIR_TRAILING_SLASH.
27347         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
27348
27349         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
27350         Don't emit trailing blanks.
27351         Also rename jm_-prefixed variables to have gl_ prefix.
27352
27353         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
27354         Also rename jm_-prefixed variables to have gl_ prefix.
27355
27356         * m4/jm-macros.m4: Reflect the renamings.
27357         * m4/prereq.m4: Likewise.
27358
27359 2004-04-20  Jim Meyering  <jim@meyering.net>
27360
27361         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
27362         memory.
27363
27364 2004-04-20  Jim Meyering  <jim@meyering.net>
27365             Bruno Haible  <bruno@clisp.org>
27366
27367         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
27368         memory when realloc fails.
27369
27370 2004-04-19  Jim Meyering  <jim@meyering.net>
27371
27372         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
27373         now that readutmp.c may call `free (0)'.
27374
27375 2004-04-19  Bruno Haible  <bruno@clisp.org>
27376
27377         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
27378         * m4/inttypes_h.m4: Likewise.
27379         * m4/stdint_h.m4: Likewise.
27380         * m4/intmax_t.m4: Likewise.
27381         * m4/uintmax_t.m4: Likewise.
27382
27383 2004-04-18  Jim Meyering  <jim@meyering.net>
27384
27385         * m4/prereq.m4: Don't forbid jm_ prefix.
27386
27387         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
27388         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
27389         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
27390         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
27391         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
27392         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
27393         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
27394         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
27395         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
27396         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
27397         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
27398         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
27399         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
27400         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
27401         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
27402         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
27403         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
27404         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
27405         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
27406
27407 2004-04-18  Jim Meyering  <jim@meyering.net>
27408
27409         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
27410         failure, don't leak memory and do call END_UTMP_ENT.
27411
27412 2004-04-16  Jim Meyering  <jim@meyering.net>
27413
27414         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
27415         coreutils' stat program.
27416         (gl_PREREQ): Don't require jm_PREREQ_STAT.
27417
27418 2004-04-11  Paul Eggert  <eggert@twinsun.com>
27419
27420         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
27421         C89.
27422         (CHAR_BIT): Remove, since we assume C89.
27423         Include <stdint.h> if available, as per current Autoconf CVS advice.
27424
27425 2004-03-31  Jim Meyering  <jim@meyering.net>
27426
27427         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
27428         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
27429         * m4/xalloc.m4: Likewise.
27430
27431 2004-03-30  Paul Eggert  <eggert@twinsun.com>
27432
27433         Merge from coreutils.
27434
27435         * m4/inttostr.m4: New file.
27436         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
27437         Require AM_STDBOOL_H and gl_TIMESPEC instead.
27438         Require gl_CLOCK_TIME.
27439         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
27440
27441 2004-03-30  Paul Eggert  <eggert@twinsun.com>
27442
27443         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
27444         not bool, to be more consistent with Unix conventions.
27445         Suggested by Bruno Haible.
27446
27447         Merge from coreutils.
27448
27449         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
27450         * lib/umaxtostr.c: New files.
27451
27452         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
27453         the usual <time.h> dance.
27454         (get_date): Change signature to support fractional time stamps.
27455         All callers changed.
27456         * lib/getdate.y: Include "getdate.h" first, as we can now
27457         assume C89 and don't need to worry about 'const'.
27458         Similarly, include "unlocked-io.h" near start, not in middle.
27459         Include <limits.h>.
27460         (textint.value): Use long int rather than int.
27461         (textint.digits): Use size_t rather than int.
27462         (BILLION, LOG10_BILLION): New constants.
27463         (parser_control): New member rel_ns.  Members day_ordinal,
27464         time_zone, month, day, hour, minutes, rel_year, rel_month,
27465         rel_day, rel_hour, rel_minutes, rel_seconds
27466         are now long int, not int.  Member seconds is now struct timespec,
27467         not int.  New member timespec_seen.  Members dates_seen, days_seen,
27468         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
27469         not int.
27470         (%union.intval): Now long int, not int.
27471         New member timespec.
27472         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
27473         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
27474         (spec): Now is a timespec or an item list.
27475         (timespec, items): New nonterminals.
27476         (time, rel, relunit, number, get_date):
27477         Add support for fractional seconds.
27478         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
27479         (gmtime, localtime, mktime): Remove decls; not needed with C89.
27480         (to_hour): First arg is now long int, not int.
27481         (to_year): Returns long int, not int.
27482         Don't treat year -70 like 70.
27483         (tm_diff): Returns long int, not int.
27484         (lookup_word): Use bool instead of int when appropriate.
27485         (yylex): Use size_t for count, not int.
27486         Detect overflow when parsing large integer constants.
27487         Add support for fractions.
27488         (get_date): Make pointers 'const' if possible.
27489         Use more-portable code to detect integer overflow.
27490         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
27491         Don't use ctime; it's not reliable if the year has >4 digits.
27492
27493         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
27494         This is for compatibility with BSD.
27495
27496         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
27497         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
27498         From coreutils' system.h.
27499
27500         * lib/userspec.c: Don't include "posixver.h".
27501         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
27502         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
27503         compatible extension.  Simplify code by removing a boolean int
27504         that was always nonzero if a string was nonnull.
27505
27506 2004-03-30  Jim Meyering  <jim@meyering.net>
27507
27508         Merge from coreutils.
27509
27510         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
27511         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
27512         on some systems one must include <grp.h> before it.
27513         Reported by Christian Krackowizer.
27514
27515 2004-03-30  Jim Meyering  <jim@meyering.net>
27516
27517         Merge from coreutils.
27518
27519         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
27520
27521         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
27522         an empty input stream.
27523
27524         * lib/readtokens.c: Include <stdbool.h>.
27525         (readtoken): Use `size_t' rather than int/long.
27526         All callers adjusted.
27527         Use `bool' rather than `int' where appropriate.
27528         Use memset rather than an explicit loop.
27529         Use x2nrealloc rather than xrealloc.
27530         Allow the use of `\0' as a delimiter.
27531         (readtokens): Likewise.
27532         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
27533
27534 2004-03-30  Jim Meyering  <jim@meyering.net>
27535
27536         * m4/realloc.m4: Remove file, since now it does no more than
27537         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
27538         the `configure.ac' section of module/realloc.
27539         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
27540
27541 2004-03-30  Bruno Haible  <bruno@clisp.org>
27542
27543         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
27544         nonnull.
27545
27546 2004-03-29  Paul Eggert  <eggert@twinsun.com>
27547
27548         Merge changes to getloadavg.c from coreutils and Emacs.
27549
27550         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
27551         Define to an expression, not to the empty string.
27552         Include cloexec.h and xalloc.h.
27553         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
27554         Use set_cloexec_flag rather than rolling our own.
27555         * lib/cloexec.c, lib/cloexec.h: New files.
27556
27557 2004-03-29  Paul Eggert  <eggert@twinsun.com>
27558
27559         * m4/cloexec.m4: New file.
27560
27561 2004-03-18  Paul Eggert  <eggert@twinsun.com>
27562
27563         * lib/getopt.h: Sync with libc CVS.
27564
27565 2004-03-18  Paul Eggert  <eggert@twinsun.com>
27566             Bruno Haible  <bruno@clisp.org>
27567
27568         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
27569         mbswidth.
27570
27571 2004-03-18  Paul Eggert  <eggert@twinsun.com>
27572             Bruno Haible  <bruno@clisp.org>
27573
27574         * lib/mbswidth.h: Include <wchar.h> only if
27575         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
27576         <wchar.h>.
27577         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
27578
27579 2004-03-09  Paul Eggert  <eggert@twinsun.com>
27580
27581         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
27582         Sync with libc CVS.
27583         * lib/getopt_int.h: New file, also synced from libc.
27584
27585 2004-03-09  Paul Eggert  <eggert@twinsun.com>
27586
27587         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
27588         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
27589         Bring back getopt.c, getopt.h, getopt1.c.
27590
27591 2004-03-07  Paul Eggert  <eggert@twinsun.com>
27592
27593         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
27594         All uses changed.  Check for sa_sigaction member; this fixes
27595         a bug first reported by Jason Andrade in
27596         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
27597
27598 2004-03-07  Paul Eggert  <eggert@twinsun.com>
27599
27600         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
27601         '#if' expressions.  Unlike the code it replaces, it does not
27602         depend on (defined _SC_PAGESIZE).  However, it does depend on
27603         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
27604         first reported by Jason Andrade in
27605         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
27606
27607 2004-02-25  Simon Josefsson  <jas@extundo.com>
27608
27609         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
27610
27611 2004-02-25  Simon Josefsson  <jas@extundo.com>
27612
27613         * lib/strdup.h: New file.
27614         * lib/strdup.c: Include it.
27615         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
27616         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
27617
27618 2004-02-23  Karl Berry  <karl@gnu.org>
27619
27620         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
27621         (from fencepost.gnu.org:/gd/gnuorg).
27622
27623 2004-02-23  Karl Berry  <karl@gnu.org>
27624
27625         * config/srclistvars.sh (GNUORG) [karl]: redefine.
27626         * config/srclist.txt: add maintain/standards documents.
27627
27628 2004-02-18  Bruno Haible  <bruno@clisp.org>
27629
27630         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
27631         Reported by Derek Robert Price <derek@ximbiot.com>.
27632
27633 2004-02-16  Karl Berry  <karl@gnu.org>
27634
27635         * config/mkinstalldirs, install-sh: update from automake.
27636
27637 2004-02-06  Karl Berry  <karl@gnu.org>
27638
27639         * m4/po.m4: update from gettext 0.14.1.
27640
27641 2004-02-06  Karl Berry  <karl@gnu.org>
27642
27643         * lib/config.charset: update from gettext 0.14.1.
27644
27645 2004-02-05  Paul Eggert  <eggert@twinsun.com>
27646
27647         Add comments and code, prompted by suggestions from Bruno Haible
27648         for sh-quote.
27649         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
27650         describing the enum quoting_style values.
27651         * lib/quotearg.c (quotearg_alloc): New function.
27652         (quotearg_buffer_restyled): Treat lone { and } as special.
27653         Treat = as special.  Work around bug with older shells
27654         that "see" a '\' that is really the 2nd byte of a multibyte char.
27655         Quote empty string with shell_quoting_style.
27656
27657 2004-02-03  Bruno Haible  <bruno@clisp.org>
27658
27659         * m4/pipe.m4: New file, from GNU gettext.
27660
27661 2004-02-03  Bruno Haible  <bruno@clisp.org>
27662
27663         * lib/pipe.h: New file, from GNU gettext.
27664         * lib/pipe.c: New file, from GNU gettext.
27665
27666 2004-01-27  Bruno Haible  <bruno@clisp.org>
27667
27668         * m4/execute.m4: New file, from GNU gettext.
27669
27670 2004-01-27  Bruno Haible  <bruno@clisp.org>
27671
27672         * lib/execute.h: New file, from GNU gettext.
27673         * lib/execute.c: New file, from GNU gettext.
27674         * lib/w32spawn.h: New file, from GNU gettext.
27675
27676 2004-01-24  Paul Eggert  <eggert@twinsun.com>
27677
27678         Merge from diffutils.
27679
27680         * lib/file-type.c (file_type): Add typed memory objects.
27681         * lib/file-type.h (S_TYPEISTMO): New macro.
27682
27683         * lib/c-stack.h (c_stack_action): Remove argv argument.
27684         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
27685         (die): Don't calculate message unless segv_action returns.
27686         (get_stack_location, min_address_from_argv, max_address_from_argv,
27687         volatile stack_base, volatile_stack_size): Remove.
27688         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
27689         that every segmentation violation is a stack overflow.  (Ouch!)
27690         See Debian bug 136249 (still outstanding) for more info about why
27691         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
27692
27693 2004-01-24  Paul Eggert  <eggert@twinsun.com>
27694
27695         Exit-status fix from coreutils.
27696
27697         Use exit_failure consistently in place of EXIT_FAILURE,
27698         so that program exit statuses are consistent on failure.
27699
27700         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
27701         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
27702         * lib/argmatch.h: Comment fix to match the above.
27703         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
27704         Now a macro referring to exit_failure, instead of a separate
27705         variable.  Include "exitfail.h" to get it.
27706         * lib/xstrtol.h: Include "exitfail.h".
27707         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
27708
27709         * lib/long-options.c (parse_long_options): Use prototype
27710         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
27711         for clarity.
27712
27713 2004-01-21  Jim Meyering  <jim@meyering.net>
27714
27715         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
27716         so as not to conflict with a different-sized __mktime_internal
27717         function in GNU libc.
27718         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
27719         Problem building statically-linked `ls' reported by Michael Brunnbauer.
27720
27721 2004-01-20  Karl Berry  <karl@gnu.org>
27722
27723         * config/config.guess: update from config.
27724
27725         * config/srclistvars.sh: GNUWWWLICENSES for karl.
27726
27727 2004-01-20  Bruno Haible  <bruno@clisp.org>
27728
27729         Safer stack allocation.
27730         * lib/setenv.c: Include allocsa.h.
27731         (alloca): Remove fallback definition.
27732         (freea): Remove macro.
27733         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
27734         instead of freea.
27735
27736 2004-01-20  Bruno Haible  <bruno@clisp.org>
27737
27738         * m4/eealloc.m4: New file, from GNU gettext.
27739
27740 2004-01-20  Bruno Haible  <bruno@clisp.org>
27741
27742         * m4/allocsa.m4: New file, from GNU gettext.
27743
27744 2004-01-20  Bruno Haible  <bruno@clisp.org>
27745
27746         * lib/xallocsa.h: New file, from GNU gettext.
27747         * lib/xallocsa.c: New file, from GNU gettext.
27748
27749 2004-01-20  Bruno Haible  <bruno@clisp.org>
27750
27751         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
27752
27753 2004-01-20  Bruno Haible  <bruno@clisp.org>
27754
27755         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
27756         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
27757         specially.
27758
27759 2004-01-20  Bruno Haible  <bruno@clisp.org>
27760
27761         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
27762         patch.
27763
27764 2004-01-20  Bruno Haible  <bruno@clisp.org>
27765
27766         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
27767
27768 2004-01-20  Bruno Haible  <bruno@clisp.org>
27769
27770         * lib/eealloc.h: New file.
27771
27772 2004-01-20  Bruno Haible  <bruno@clisp.org>
27773
27774         * lib/binary-io.h: Avoid warnings on Cygwin.
27775
27776 2004-01-20  Bruno Haible  <bruno@clisp.org>
27777
27778         * lib/allocsa.h: New file, from GNU gettext.
27779         * lib/allocsa.c: New file, from GNU gettext.
27780
27781 2004-01-18  Karl Berry  <karl@gnu.org>
27782
27783         * doc/gpl.texi, doc/lgpl.texi: new files.
27784
27785 2004-01-18  Karl Berry  <karl@gnu.org>
27786
27787         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
27788         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
27789
27790 2004-01-15  Paul Eggert  <eggert@twinsun.com>
27791
27792         Merge from coreutils.
27793
27794         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
27795         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
27796         (gl_DEFAULT_POSIX2_VERSION): Move
27797         the documentation from 'configure' into 'config.hin',
27798         so that 'configure --help' isn't burdened by it and
27799         we don't have to worry about its formatting there.
27800         Reword the documentation so that it's more succinct
27801         and can be run together into a single paragraph.
27802         * m4/same.m4 (gl_SAME): Check for pathconf.
27803
27804 2004-01-15  Paul Eggert  <eggert@twinsun.com>
27805
27806         Merge from coreutils.
27807
27808         * lib/posixver.c: Include posixver.h.
27809
27810         * lib/same.c: Include <stdbool.h>, <limits.h>.
27811         (_POSIX_NAME_MAX): Define if not defined.
27812         (MIN): New macro.
27813         (same_name): If file names are silently truncated, report
27814         that the file names are the same if they are the same after
27815         the silent truncation.
27816
27817         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
27818         conversion function.
27819         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
27820         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
27821         longer needed.
27822
27823 2004-01-15  Jim Meyering  <jim@meyering.net>
27824
27825         Merge from coreutils.
27826
27827         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
27828         if no library is required.
27829         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
27830         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
27831         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
27832         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
27833         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
27834         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
27835         value, $ac_cv_search_crypt, if it's "none required".
27836         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
27837         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
27838         not gl_FUNC_GETLOADAVG.
27839         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
27840         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
27841
27842 2004-01-15  Jim Meyering  <jim@meyering.net>
27843
27844         Merge from coreutils.
27845
27846         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
27847         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
27848         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
27849
27850         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
27851         optional configure-time default.
27852
27853         * lib/version-etc.c (version_etc_copyright): Update copyright date.
27854
27855         * lib/xreadlink.c (xreadlink): Correct outdated comment.
27856
27857 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
27858
27859         Merge from coreutils.
27860
27861         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
27862         value, $ac_cv_search_nanosleep, if it's "none required".
27863
27864 2004-01-14  Paul Eggert  <eggert@twinsun.com>
27865
27866         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
27867         with like-named macro in fnmatch.c.
27868         (EXT): Use an internal constant instead.
27869
27870         Merge fnmatch patches from glibc.
27871         * lib/fnmatch.c (mbsinit): Remove define.
27872         Add libc_hidden_ver (__fnmatch, fnmatch).
27873         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
27874         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
27875
27876 2004-01-14  Karl Berry  <karl@gnu.org>
27877
27878         * config/install-sh: update from automake.
27879
27880 2004-01-13  Karl Berry  <karl@gnu.org>
27881
27882         * config/install-sh: update from automake.
27883
27884 2004-01-09  Karl Berry  <karl@gnu.org>
27885
27886         * config/install-sh: update from automake.
27887
27888 2004-01-05  Karl Berry  <karl@gnu.org>
27889
27890         * config/config.{sub,guess}: update from config.
27891
27892 2003-12-31  Karl Berry  <karl@gnu.org>
27893
27894         * config/depcomp: update from automake.
27895
27896 2003-12-14  Karl Berry  <karl@gnu.org>
27897
27898         * lib/config.charset: update from gettext-runtime.
27899
27900 2003-12-03  Paul Eggert  <eggert@twinsun.com>
27901
27902         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
27903         Bug reported by Alfred M. Szmidt.
27904
27905 2003-12-03  Bruno Haible  <bruno@clisp.org>
27906
27907         * m4/gettext.m4: Upgrade from gettext-0.13.
27908         * m4/po.m4: Upgrade from gettext-0.13.
27909         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
27910         * m4/intmax.m4: New file, from gettext-0.13.
27911         * m4/printf-posix.m4: New file, from gettext-0.13.
27912
27913 2003-11-29  Karl Berry  <karl@gnu.org>
27914
27915         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
27916
27917 2003-11-25  Paul Eggert  <eggert@twinsun.com>
27918             Bruno Haible  <bruno@clisp.org>
27919
27920         * lib/printf-parse.h: Don't include sys/types.h.
27921         (ARG_NONE): New macro.
27922         (char_directive): Change type of *arg_index fields to size_t.
27923         * lib/printf-parse.c: Don't include sys/types.h.
27924         (SSIZE_MAX): Remove macro.
27925         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
27926         Remove unnecessary overflow check.
27927         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
27928         fields.
27929
27930 2003-11-25  Bruno Haible  <bruno@clisp.org>
27931
27932         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
27933
27934 2003-11-25  Bruno Haible  <bruno@clisp.org>
27935
27936         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
27937         gt_TYPE_SSIZE_T.
27938
27939 2003-11-24  Paul Eggert  <eggert@twinsun.com>
27940
27941         * modules/alloca: Remove dependency on xalloc.
27942
27943 2003-11-24  Paul Eggert  <eggert@twinsun.com>
27944
27945         * lib/alloca.c: Remove dependency on xalloc module.
27946         (xalloc_die): Remove.
27947         (memory_full) [!defined emacs]: New macro.
27948         [!defined emacs]: Don't include xalloc.h.
27949         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
27950         address arithmetic overflows.  Change datatypes a bit to avoid
27951         unnecessary casts.
27952
27953 2003-11-22  Jim Meyering  <jim@meyering.net>
27954
27955         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
27956         s/size/size_t/.
27957
27958 2003-11-21  Karl Berry  <karl@gnu.org>
27959
27960         * config/config.{sub,guess}: update from config.
27961
27962 2003-11-18  Karl Berry  <karl@gnu.org>
27963
27964         * config/config.{sub,guess}: update from config.
27965
27966         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
27967
27968 2003-11-17  Paul Eggert  <eggert@twinsun.com>
27969
27970         * README: Mention that S+T cannot overflow if S is the size of
27971         an existing object and T is sufficiently small.
27972
27973 2003-11-17  Jim Meyering  <jim@meyering.net>
27974
27975         On systems without utime and without a utimes function capable of
27976         dealing with a NULL struct utimbuf* argument, this utime replacement
27977         could -- in unusual circumstances -- leak a file descriptor.
27978         * lib/utime.c: Include <unistd.h> and <errno.h>.
27979         (utime_null): Be sure to close `fd' and to preserve errno.
27980         Reported by Geoff Collyer via Arnold Robbins.
27981
27982 2003-11-17  Bruno Haible  <bruno@clisp.org>
27983
27984         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
27985         (Depends-on): Add xsize.
27986
27987 2003-11-17  Bruno Haible  <bruno@clisp.org>
27988
27989         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
27990
27991 2003-11-17  Bruno Haible  <bruno@clisp.org>
27992
27993         * lib/vasnprintf.c (alloca): Remove fallback definition.
27994         (freea): Remove definition.
27995         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
27996         Reported by Paul Eggert.
27997
27998 2003-11-16  Paul Eggert  <eggert@twinsun.com>
27999             Bruno Haible  <bruno@clisp.org>
28000
28001         Protect against address arithmetic overflow.
28002         * lib/printf-args.h: Include stddef.h.
28003         (arguments): Change type of field 'count' to size_t.
28004         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
28005         'unsigned int' where appropriate.
28006         * lib/printf-parse.h: Include sys/types.h.
28007         (char_directive): Change type of *arg_index fields to ssize_t.
28008         (char_directives): Change type of fields 'count', max_*_length to
28009         size_t.
28010         * lib/printf-parse.c: Include sys/types.h and xsize.h.
28011         (SSIZE_MAX): Define fallback value.
28012         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
28013         instead of 'int' where appropriate. Check a_allocated, d_allocated
28014         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
28015         * lib/vasnprintf.c: Include xsize.h.
28016         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
28017         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
28018         overflow. Avoid wraparound when converting a width or precision from
28019         decimal to binary.
28020
28021 2003-11-16  Bruno Haible  <bruno@clisp.org>
28022
28023         Update from GNU gettext.
28024         * lib/printf-parse.c: Generalize to it can be compiled for wide
28025         strings.
28026         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
28027         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
28028         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
28029         SNPRINTF): New macros.
28030         Don't include <alloca.h> if the file is used inside libintl.
28031         (local_wcslen): New function, for Solaris 2.5.1.
28032         (VASNPRINTF): Use it instead of wcslen.
28033
28034 2003-11-16  Bruno Haible  <bruno@clisp.org>
28035
28036         * lib/xsize.h (xmax): New function.
28037         (xsum, xsum3, xsum4): Declare as "pure" functions.
28038
28039 2003-11-12  Paul Eggert  <eggert@twinsun.com>
28040
28041         * modules/xalloc (Files): Undo latest change, since xalloc.h
28042         no longer needs SIZE_MAX or PTRDIFF_MAX.
28043
28044 2003-11-12  Paul Eggert  <eggert@twinsun.com>
28045
28046         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
28047         gl_PTRDIFF_MAX.
28048
28049 2003-11-12  Paul Eggert  <eggert@twinsun.com>
28050
28051         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
28052         "return", to pacify some unknown compiler.  Problem reported
28053         by Joerg Schilling.
28054
28055 2003-11-12  Paul Eggert  <eggert@twinsun.com>
28056
28057         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
28058         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
28059         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
28060         heuristic is just as accurate as far as we know, and it removes a
28061         dependency on size_max.m4 and ptrdiff_max.m4.
28062
28063 2003-11-11  Bruno Haible  <bruno@clisp.org>
28064
28065         * modules/xsize (Files): Add m4/size_max.m4.
28066         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
28067
28068 2003-11-11  Bruno Haible  <bruno@clisp.org>
28069
28070         * m4/size_max.m4: New file.
28071         * m4/ptrdiff_max.m4: New file.
28072         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
28073         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
28074         (gl_XALLOC): Invoke it.
28075
28076 2003-11-11  Bruno Haible  <bruno@clisp.org>
28077
28078         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
28079         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
28080         defined.
28081
28082 2003-11-10  Paul Eggert  <eggert@twinsun.com>
28083
28084         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
28085         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
28086         rejected some allocations of exactly SIZE_MAX - 2 bytes.
28087         From Bruno Haible.
28088         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
28089         not (size_t) -1, since it's defined here.
28090
28091 2003-11-09  Karl Berry  <karl@gnu.org>
28092
28093         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
28094
28095 2003-11-06  Paul Eggert  <eggert@twinsun.com>
28096
28097         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
28098         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
28099         Reject sizes of exactly SIZE_MAX bytes.
28100         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
28101         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
28102
28103 2003-11-05  Bruno Haible  <bruno@clisp.org>
28104
28105         * lib/xsize.h: Include limits.h, to avoid a possible collision with
28106         SIZE_MAX defined in <limits.h> on Solaris.
28107
28108 2003-11-04  Jim Meyering  <jim@meyering.net>
28109
28110         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
28111         variable names, rather than @VAR@.
28112         * modules/poll: Likewise.
28113
28114 2003-11-04  Bruno Haible  <bruno@clisp.org>
28115
28116         * modules/xsize: New file.
28117         * modules/linebreak: Depend on xsize.
28118         * MODULES.html.sh (func_all_modules): Add xsize.
28119
28120 2003-11-04  Bruno Haible  <bruno@clisp.org>
28121
28122         * m4/xsize.m4: New file.
28123
28124 2003-11-04  Bruno Haible  <bruno@clisp.org>
28125
28126         * lib/xsize.h: New file.
28127         * lib/linebreak.c: Include xsize.h.
28128         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
28129         argument for overflow.
28130         Suggested by Paul Eggert.
28131
28132 2003-11-03  Karl Berry  <karl@gnu.org>
28133
28134         * config/config.{guess,sub}: update from config.
28135
28136 2003-11-03  Jim Meyering  <jim@meyering.net>
28137
28138         * modules/userspec (lib_SOURCES): Add userspec.h.
28139         (Include): Add "userspec.h".
28140         Improve description.
28141
28142 2003-11-03  Jim Meyering  <jim@meyering.net>
28143
28144         * lib/userspec.c: Include "userspec.h".
28145         * lib/userspec.h: New file.
28146
28147 2003-11-03  Bruno Haible  <bruno@clisp.org>
28148
28149         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
28150
28151 2003-11-03  Bruno Haible  <bruno@clisp.org>
28152
28153         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
28154         available, to avoid (extremely rare) race condition.
28155         Suggested by Paul Eggert.
28156
28157 2003-11-02  Karl Berry  <karl@gnu.org>
28158
28159         * config/srclist.txt (vasprintf.c): sync broken, sigh.
28160
28161 2003-10-31  Paul Eggert  <eggert@twinsun.com>
28162
28163         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
28164         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
28165         (read_filesystem_list): Set and use me_type_malloced.
28166         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
28167         whatever the type happens to be), for brevity and consistency.
28168         Check for size calculation overflow on Alphas running OSF/1.
28169
28170 2003-10-31  Jim Meyering  <jim@meyering.net>
28171
28172         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
28173
28174         * lib/linebuffer.c: Include <string.h> for declaration of memset.
28175
28176 2003-10-30  Paul Eggert  <eggert@twinsun.com>
28177             Bruno Haible  <bruno@clisp.org>
28178
28179         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
28180         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
28181
28182 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
28183
28184         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
28185         netbsd*-gnu*.  Suggested by Robert Millan.
28186
28187 2003-10-29  Paul Eggert  <eggert@twinsun.com>
28188
28189         * modules/group-member: Depend on stdbool.
28190
28191 2003-10-29  Paul Eggert  <eggert@twinsun.com>
28192
28193         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
28194
28195 2003-10-29  Paul Eggert  <eggert@twinsun.com>
28196
28197         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
28198         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
28199         after the 'gnu' in these cases.  This fixes some bugs in the
28200         previous change, and is based on suggestions by Robert Millan.
28201
28202 2003-10-29  Paul Eggert  <eggert@twinsun.com>
28203
28204         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
28205         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
28206         no longer needed.
28207         * lib/quotearg.c (quotearg_n_options): Use it.
28208         * lib/group-member.c: Include <stdbool.h>.
28209         (free_group_info): Arg is now const *; don't free arg.
28210         (get_group_info): Now returns bool and accepts struct group_info *,
28211         rather than returning a malloc'ed struct group_info *.
28212         All uses changed.  Check for overflow in internal size calculation.
28213
28214         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
28215         rather than xmalloc/xrealloc.
28216         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
28217         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
28218         conformance bug: the old code used a pointer after freeing the
28219         storage that it addressed.
28220         * lib/hash.c (hash_initialize): Simplify the code by using
28221         xalloc_oversized rather than doing it by hand.
28222         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
28223         the buffer preserved.  Use free and xmalloc instead.
28224         * lib/quotearg.c (quotearg_n_options): Likewise.
28225         Use a simpler test for size overflow.  Don't use xalloc_oversized
28226         because unsigned int might be wider than size_t (!); this suggests
28227         that we should switch from unsigned int to size_t for slot numbers.
28228
28229 2003-10-28  Paul Eggert  <eggert@twinsun.com>
28230
28231         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
28232         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
28233         NetBSD kernels.  Requested by Richard Stallman.
28234
28235 2003-10-27  Paul Eggert  <eggert@twinsun.com>
28236
28237         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
28238         to allocate the returned structure.  Do not allocate a subarray,
28239         as x2nrealloc will do that.
28240         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
28241         instead of xnrealloc.
28242         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
28243
28244 2003-10-27  Bruno Haible  <bruno@clisp.org>
28245
28246         * lib/stdbool_.h: Better support for BeOS.
28247
28248 2003-10-26  Paul Eggert  <eggert@twinsun.com>
28249
28250         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
28251         now uses inline.
28252
28253 2003-10-26  Paul Eggert  <eggert@twinsun.com>
28254
28255         * lib/xalloc.h (xalloc_oversized): New static inline function, for
28256         callers that want to do their own size-overflow checking.  Include
28257         <stdbool.h>, since xalloc_oversized returns bool.
28258         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
28259         to use xalloc_oversized.
28260
28261         Add two functions x2realloc, x2nrealloc, for programs that grow
28262         arrays dynamically by doubling their sizes.
28263         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
28264         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
28265         New functions.
28266
28267         Port to C99 semantics for 'inline' of external functions.
28268         Bug reported by Bruno Haible.
28269         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
28270         with the old contents of xnmalloc.
28271         (xnmalloc, xmalloc): Use it.
28272         (xnrealloc_inline): New static inline function,
28273         with the old contents of xnrealloc.
28274         (xnrealloc, xrealloc): Use it.
28275
28276         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
28277         that.
28278
28279 2003-10-26  Karl Berry  <karl@gnu.org>
28280
28281         * config/srclist.txt (COPYING.DOC): no longer available from
28282         /gd/gnuorg; don't know where the ultimate source is.
28283
28284 2003-10-25  Paul Eggert  <eggert@twinsun.com>
28285
28286         Fix several address-calculation bugs in the hash modules,
28287         plus some minor code cleanup.
28288
28289         * lib/hash.h: Include <stdbool.h>, for bool.
28290         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
28291         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
28292         hash_get_n_entries, hash_get_max_bucket_length,
28293         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
28294         hash_rehash): Use size_t rather than unsigned.
28295         * lib/hash.c (struct hash_table, hash_get_n_buckets,
28296         hash_get_n_buckets_used, hash_get_n_entries,
28297         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
28298         hash_get_entries, hash_do_for_each, hash_string, is_prime,
28299         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
28300         Likewise.
28301         (SIZE_MAX): Define if not defined.
28302         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
28303         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
28304         hash_print):
28305         Use const * when possible.
28306         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
28307         (check_tuning): Fix bug: if tuning parameters were very close to
28308         0 or 1, rounding errors could have caused subscript violations.
28309         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
28310         (hash_initialize): Add 'fail:' label
28311         to free table and return NULL, and use it to simplify code.
28312         Use calloc rather than clearing the storage ourself.
28313         (hash_initialize, hash_rehash): Check for arithmetic overflow in
28314         buffer size calculations.
28315         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
28316         Include <stddef.h>, for size_t.
28317         * lib/hash-pjw.c (hash_pjw): Likewise.
28318         Switch to method described by Bruno Haible.
28319         Include <limits.h>, for CHAR_BIT.
28320         (SIZE_BITS): New macro.
28321
28322 2003-10-23  Paul Eggert  <eggert@twinsun.com>
28323
28324         * m4/getline.m4 (AM_FUNC_GETLINE):
28325         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
28326         hosts.  Problem reported by Derek Robert Price in
28327         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
28328         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
28329         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
28330
28331 2003-10-21  Paul Eggert  <eggert@twinsun.com>
28332
28333         * lib/getndelim2.c (getndelim2): When size calculation overflows,
28334         ceiling the allocation at NMAX bytes rather than silently
28335         discarding input bytes before NMAX is reached.  This makes
28336         a difference only if NMAX exceeds SIZE_MAX / 2.
28337
28338         * lib/obstack.c: Merge from glibc.
28339         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
28340         Add libc_hidden_def (_obstack_newchunk).
28341         (_obstack_free) [! defined _LIBC]: Remove.
28342         [defined _LIBC]: Make a strong alias from obstack_free, rather than
28343         a clone of the function body.
28344         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
28345         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
28346
28347         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
28348         glibc.
28349         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
28350         arg to memcpy.
28351
28352         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
28353         (obstack_ptr_grow_fast, obstack_int_grow_fast):
28354         Don't use lvalue casts, as GCC plans to remove support for them
28355         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
28356         was also present in the non-GCC version, indicating that this
28357         code had always been buggy and had never been widely used.
28358         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
28359         Use the fast variant of each macro, rather than copying the
28360         definiens of the fast variant; that way, we'll be more likely to
28361         catch future bugs in the fast variants.
28362
28363 2003-10-20  Bruno Haible  <bruno@clisp.org>
28364
28365         * modules/wait-process: New file.
28366         * MODULES.html.sh (func_all_modules): Add wait-process.
28367
28368 2003-10-20  Bruno Haible  <bruno@clisp.org>
28369
28370         * m4/wait-process.m4: New file.
28371
28372 2003-10-20  Bruno Haible  <bruno@clisp.org>
28373
28374         * lib/wait-process.h: New file, from GNU gettext.
28375         * lib/wait-process.c: New file, from GNU gettext.
28376
28377 2003-10-19  Jim Meyering  <jim@meyering.net>
28378
28379         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
28380         HPUX 10.20.
28381
28382 2003-10-18  Karl Berry  <karl@gnu.org>
28383
28384         * config/config.guess: update from config.
28385
28386 2003-10-16  Paul Eggert  <eggert@twinsun.com>
28387
28388         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
28389         (getgroups): First arg is int, not size_t.
28390         Don't let 'free' mangle errno.
28391
28392 2003-10-16  Paul Eggert  <eggert@twinsun.com>
28393
28394         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
28395
28396 2003-10-16  Karl Berry  <karl@gnu.org>
28397
28398         * config/config.{guess,sub}: update from config.
28399
28400 2003-10-16  Jim Meyering  <jim@meyering.net>
28401
28402         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
28403         memcpy.
28404
28405 2003-10-15  Paul Eggert  <eggert@twinsun.com>
28406
28407         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
28408         (SIZE_MAX): Remove.
28409         (new_exclude, add_exclude_file): Initial size no longer needs to
28410         be a power of 2.
28411         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
28412         our own address arithmetic overflow checking.
28413
28414         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
28415         (fnmatch): Do not alloca more than 2000 wide characters;
28416         instead, use malloc for large buffers.
28417         Check for address arithmetic overflow, and return -1
28418         with errno set to ENOMEM in that case.
28419         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
28420         (NEW_PATTERN): Do not alloca more than 8000 bytes;
28421         instead, return -1.  Check for address arithmetic overflow.
28422
28423 2003-10-14  Paul Eggert  <eggert@twinsun.com>
28424
28425         Handle invalid suffixes and overflow independently, so that
28426         callers can treat them independently as needed.  Fix some bugs in
28427         suffix handling, e.g., "100k@" was not diagnosed as an invalid
28428         suffix for a human-readable blocksize.  The major caller-visible
28429         change is the addition of a new
28430         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
28431         that both overflow and suffix chars were found.
28432
28433         * lib/human.c (humblock): Don't check separately for invalid suffix
28434         char; that is xstrtoumax's job (now that its bug is fixed).
28435         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
28436         INTMAX_MAX]: New macros.
28437         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
28438         TYPE_MAXIMUM): New macros.
28439         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
28440         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
28441         if overflow occurs, as it's what __strtol does and it's more useful
28442         in practice.
28443         (__xstrtol): If __strtol reports some error other than ERANGE,
28444         reflect it to the caller as LONGINT_INVALID.  If it reports
28445         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
28446         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
28447         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
28448         value.
28449         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
28450         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
28451         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
28452         [defined UINTMAX_MAX]: New macros.
28453
28454 2003-10-14  Bruno Haible  <bruno@clisp.org>
28455
28456         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
28457
28458 2003-10-14  Bruno Haible  <bruno@clisp.org>
28459
28460         * m4/sig_atomic_t: New file, from GNU gettext.
28461         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
28462
28463 2003-10-14  Bruno Haible  <bruno@clisp.org>
28464
28465         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
28466         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
28467         Also use volatile where needed.
28468
28469 2003-10-12  Paul Eggert  <eggert@twinsun.com>
28470
28471         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
28472         Change maintainer from Bruno Haible to 'all'.
28473
28474 2003-10-12  Paul Eggert  <eggert@twinsun.com>
28475
28476         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
28477
28478 2003-10-12  Paul Eggert  <eggert@twinsun.com>
28479
28480         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
28481         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
28482         and define in terms of the other primitives.
28483         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
28484         (SIZE_MAX): Define if not already defined.
28485         (array_size_overflow): New function.
28486         (xalloc_die): Abort instead of exiting if 'error' returns.
28487         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
28488         (xmalloc, xrealloc): Use them.
28489         (xcalloc): Check for address arithmetic overflow.
28490         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
28491         a bit faster than strcpy.
28492
28493 2003-10-10  Simon Josefsson  <jas@extundo.com>
28494
28495         * modules/argp (Depends-on): Add restrict and strcase.
28496
28497 2003-10-10  Simon Josefsson  <jas@extundo.com>
28498
28499         * m4/argp.m4: Add AC_C_INLINE.
28500
28501 2003-10-08  Paul Eggert  <eggert@twinsun.com>
28502
28503         Merge getpass from libc, plus a few fixes.
28504
28505         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
28506         Include <stdbool.h>.
28507         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
28508         __fsetlocking to empty.
28509         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
28510         do include <bits/libc-lock.h>.
28511         Do not include <fcntl.h>; not needed.
28512         [_LIBC]: Include <wchar.h>.
28513         (NOTCANCEL_MODE): New macro.
28514         (flockfile, funlockfile) [_LIBC]: New macros.
28515         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
28516         [!_LIBC]: New macros.
28517         (call_fclose): New function.
28518         (getpass): Use it.  Save tty stream separately; this simplifies the
28519         code and makes it more reliable if stdin happens to equal stdout.
28520         Invoke __fsetlocking on tty.
28521         Handle thread cancellation if needed.
28522         Namespace cleanup (use __tcgetattr, __getline).
28523         Use bool for Booleans.
28524         [USE_IN_LIBIO]: Handle wide streams.
28525         [!_LIBC]: Unconditionally do the fseek, since we don't know what
28526         stream might go where.
28527
28528         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
28529         doesn't have to include <stdio.h> before us.
28530         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
28531         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
28532         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
28533         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
28534         if not declared, so that we can use getpass.c code from libc without
28535         rewriting it.
28536         (flockfile, ftrylockfile, funlockfile): New macros.
28537
28538 2003-10-08  Paul Eggert  <eggert@twinsun.com>
28539
28540         * modules/getpass: Depend on stdbool.
28541
28542 2003-10-08  Paul Eggert  <eggert@twinsun.com>
28543
28544         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
28545
28546 2003-10-07  Karl Berry  <karl@gnu.org>
28547
28548         * config/config.{guess,sub}: update from config.
28549
28550 2003-10-06  Jim Meyering  <jim@meyering.net>
28551             Bruno Haible  <bruno@clisp.org>
28552
28553         This lets translators provide better translations for the
28554         "Written by ..." part of --version output.
28555         * lib/version-etc.h: Include stdarg.h.
28556         (version_etc_copyright): Declare as readonly.
28557         (version_etc): Make this function variadic with a NULL-terminated list
28558         of author name strings.
28559         (version_etc_va): New declaration.
28560         * lib/version-etc.c: Include stdarg.h, stdlib.h.
28561         (version_etc_copyright): Declare as readonly.
28562         (version_etc_va): New function. Provide a different translatable string
28563         for each possible number of authors < 10. Abbreviate when there are 10
28564         authors or more.
28565         (version_etc): Make this function variadic. Call version_etc_va.
28566         Suggestion from Gary V. Vaughan.
28567
28568         * lib/long-options.h (parse_long_options): Change prototype: the
28569         authors string is moved to the end and becomes variadic.
28570         * lib/long-options.c: Include stdarg.h.
28571         (parse_long_options): Make this function variadic, too.
28572         Call version_etc_va, not version_etc.
28573
28574 2003-10-06  Bruno Haible  <bruno@clisp.org>
28575
28576         * modules/version-etc-2: Remove file.
28577         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
28578
28579 2003-10-06  Bruno Haible  <bruno@clisp.org>
28580
28581         * modules/fatal-signal: New file.
28582         * MODULES.html.sh (func_all_modules): Add fatal-signal.
28583
28584 2003-10-06  Bruno Haible  <bruno@clisp.org>
28585
28586         * m4/fatal-signal.m4: New file.
28587         * m4/signalblocking.m4: New file, from GNU gettext.
28588
28589 2003-10-06  Bruno Haible  <bruno@clisp.org>
28590
28591         * lib/version-etc-2.h: Remove file.
28592         * lib/version-etc-2.c: Remove file.
28593
28594 2003-10-06  Bruno Haible  <bruno@clisp.org>
28595
28596         * lib/fatal-signal.h: New file, from GNU gettext.
28597         * lib/fatal-signal.c: New file, from GNU gettext.
28598
28599 2003-10-05  Paul Eggert  <eggert@twinsun.com>
28600
28601         * README: Rework advice for preventing empty .o files.
28602         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
28603         not <sys/types.h>.
28604
28605 2003-10-04  Karl Berry  <karl@gnu.org>
28606
28607         * lib/argp*: update from libc.
28608
28609 2003-10-04  Karl Berry  <karl@gnu.org>
28610
28611         * config/config.{guess,sub}: update from config.
28612
28613 2003-10-02  Bruno Haible  <bruno@clisp.org>
28614
28615         * modules/lchown (Include): Add lchown.h.
28616         * modules/time_r (Include): Use "..." syntax.
28617         * modules/xgetdomainname (Include): Add xgetdomainname.h.
28618
28619 2003-10-01  Simon Josefsson  <jas@extundo.com>
28620
28621         * MODULES.html.sh (func_all_modules): Move gethostname from section
28622         'based on' to section 'lacking' POSIX:2001.
28623
28624 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
28625
28626         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
28627         to output mode on the same stream.
28628
28629 2003-09-29  Paul Eggert  <eggert@twinsun.com>
28630
28631         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
28632         Fix arg typo in previous patch.
28633
28634 2003-09-28  Jim Meyering  <jim@meyering.net>
28635
28636         * lib/error.c: Correct cpp indentation.
28637
28638 2003-09-27  Paul Eggert  <eggert@twinsun.com>
28639
28640         * modules/free: New file.
28641
28642 2003-09-27  Paul Eggert  <eggert@twinsun.com>
28643
28644         * m4/free.m4: New file.
28645
28646 2003-09-27  Paul Eggert  <eggert@twinsun.com>
28647
28648         * lib/minmax.h (MIN, MAX)
28649         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
28650         Omit the special code that used __typeof__, since we worry that
28651         it could be more trouble than it's worth.  See:
28652         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
28653         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
28654
28655         * lib/free.c: New file.
28656
28657 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
28658
28659         Trivial fixes to Makefile.am parts of module listings.
28660         * modules/strstr: Append strstr.h to lib_SOURCES.
28661         * modules/strcase: Likewise, for strcase.h.
28662
28663 2003-09-27  Karl Berry  <karl@gnu.org>
28664
28665         * config/mkinstalldirs: update from automake.
28666
28667 2003-09-26  Paul Eggert  <eggert@twinsun.com>
28668
28669         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
28670         (error_tail): Do not loop, reallocating temporary buffer, since
28671         the output cannot contain more wide characters than the input
28672         contains bytes, the size must be big enough already.  This avoids
28673         one potential size overflow calculation.  Check for size overflow
28674         when calculating temporary buffer size.  Free temporary buffer
28675         when done, if it was allocated with malloc; this plugs a memory
28676         leak.  Remove casts from void * to pointers, that are no longer
28677         needed now that we're assuming C89 or better.
28678
28679         Merge error changes from glibc.
28680
28681         * lib/error.c, error.h: Update copyright notice header to match glibc.
28682         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
28683         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
28684         Disable cancellation while printing error.
28685         * lib/error.h: Prepend __ to parameter names.
28686
28687 2003-09-26  Jim Meyering  <jim@meyering.net>
28688
28689         * lib/error.c (error_tail): Move some declarations
28690         into inner scope where the local variables are used.
28691
28692 2003-09-26  Bruno Haible  <bruno@clisp.org>
28693
28694         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
28695         stpncpy().
28696         Don't define stpncpy through config.h; it's now done through stpncpy.h.
28697
28698 2003-09-26  Bruno Haible  <bruno@clisp.org>
28699
28700         * lib/stpncpy.h (gnu_stpncpy): New declaration.
28701         (stpncpy): Define as alias for gnu_stpncpy.
28702         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
28703
28704 2003-09-25  Simon Josefsson  <jas@extundo.com>
28705
28706         * lib/xgetdomainname.h: New file.
28707         * lib/xgetdomainname.c: New file.
28708
28709 2003-09-25  Simon Josefsson  <jas@extundo.com>
28710             Bruno Haible  <bruno@clisp.org>
28711
28712         * modules/getdomainname: New file.
28713         * modules/xgetdomainname: New file.
28714         * MODULES.html.sh (func_all_modules): Add getdomainname,
28715         xgetdomainname.
28716
28717 2003-09-25  Simon Josefsson  <jas@extundo.com>
28718             Bruno Haible  <bruno@clisp.org>
28719
28720         * m4/getdomainname.m4: New file.
28721
28722 2003-09-25  Simon Josefsson  <jas@extundo.com>
28723             Bruno Haible  <bruno@clisp.org>
28724
28725         * lib/getdomainname.h: New file.
28726         * lib/getdomainname.c: New file.
28727
28728 2003-09-25  Karl Berry  <karl@gnu.org>
28729
28730         * lib/argp-fmtstream.c, argp-help.c: update from libc.
28731
28732 2003-09-25  Karl Berry  <karl@gnu.org>
28733
28734         * config/install-sh: update from automake.
28735
28736 2003-09-25  Bruno Haible  <bruno@clisp.org>
28737
28738         * modules/version-etc-2: New file, from modules/version-etc with
28739         modifications.
28740         * MODULES.html.sh (func_all_modules): Add version-etc-2.
28741
28742 2003-09-25  Bruno Haible  <bruno@clisp.org>
28743
28744         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
28745         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
28746
28747 2003-09-24  Simon Josefsson  <jas@extundo.com>
28748
28749         * modules/xgethostname: Add xgethostname.h.
28750
28751 2003-09-24  Paul Eggert  <eggert@twinsun.com>
28752
28753         * lib/linebuffer.c (freebuffer): Don't free the argument, just
28754         the buffer associated with the argument.  Bug reported by
28755         Simon Josefsson.
28756
28757 2003-09-24  Paul Eggert  <eggert@twinsun.com>
28758
28759         * README: Document assumptions that 'int' is at least 32 bits
28760         wide, that integer arithmetic is 2's complement without overflow,
28761         that there are no holes in integer values, that adding sizes of
28762         two nonoverlapping objects can't overflow, and that all-bits-zero
28763         yields scalar zero.  Fix spelling and capitalization typos.
28764
28765 2003-09-19  Karl Berry  <karl@gnu.org>
28766
28767         * lib/argp.h: update from libc.
28768
28769 2003-09-17  Paul Eggert  <eggert@twinsun.com>
28770
28771         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
28772         to avoid spurious warnings like "AC_RUN_IFELSE was called before
28773         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
28774
28775 2003-09-17  Paul Eggert  <eggert@twinsun.com>
28776
28777         * gnulib-tool: Use "test -h", not "test -L", for portability
28778         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
28779         (tags_regexp): Remove, since \| doesn't conform to POSIX.
28780         (sed_extract_prog): Issue s commands one-by-one, rather than
28781         using \| in one s command.
28782
28783 2003-09-16  Paul Eggert  <eggert@twinsun.com>
28784
28785         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
28786         input error, instead of returning NULL the next time we are called
28787         (and therefore losing track of errno).
28788
28789 2003-09-16  Bruno Haible  <bruno@clisp.org>
28790
28791         * gnulib-tool (func_create_testdir): Warn about duplicated
28792         dependencies.
28793
28794 2003-09-15  Paul Eggert  <eggert@twinsun.com>
28795
28796         * modules/argmatch, modules/fatal, modules/obstack,
28797         modules/xalloc, modules/xgethostname: Sort dependencies by
28798         importance, not alphabetically.
28799
28800 2003-09-15  Paul Eggert  <eggert@twinsun.com>
28801
28802         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
28803         fails, so that the caller gets the proper errno.
28804
28805         * lib/readutmp.c (read_utmp): Likewise.
28806         Check for fstat error.  Close stream and free storage
28807         when failing.
28808
28809 2003-09-14  Karl Berry  <karl@gnu.org>
28810
28811         * config/srclist.txt (strdup.c): disable for c89 changes.
28812
28813 2003-09-14  Jim Meyering  <jim@meyering.net>
28814
28815         * lib/getloadavg.c: Correct cpp indentation.
28816         * lib/strdup.c: Likewise.
28817         * lib/vasnprintf.c: Likewise.
28818
28819 2003-09-14  Bruno Haible  <bruno@clisp.org>
28820
28821         * modules/fwriteerror: New file.
28822         * MODULES.html.sh (func_all_modules): Add fwriteerror.
28823
28824 2003-09-14  Bruno Haible  <bruno@clisp.org>
28825
28826         * lib/fwriteerror.h: New file.
28827         * lib/fwriteerror.c: New file.
28828
28829 2003-09-12  Paul Eggert  <eggert@twinsun.com>
28830
28831         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
28832         modules/xgethostname, modules/xalloc: Depend on exit.
28833
28834 2003-09-12  Paul Eggert  <eggert@twinsun.com>
28835
28836         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
28837
28838         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
28839         and AC_MINIX, too, so that their extensions are available.
28840
28841         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
28842         This macro has been superseded by gl_BACKUPFILE.
28843
28844         More patches to assume C89 or better.
28845
28846         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
28847
28848         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
28849         unconditionally.
28850         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
28851         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
28852         Include <string.h>, <stdlib.h> unconditionally.
28853         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
28854         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
28855         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
28856         headers or for string.h.
28857         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
28858         or strtoul.
28859
28860         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
28861         headers.
28862         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
28863         * m4/userspec.m4 (gl_USERSPEC): Likewise.
28864         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
28865         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
28866         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
28867         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
28868         memcpy, memset.
28869         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
28870         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
28871         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
28872         strtol.
28873         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
28874         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
28875         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
28876         strtoul.
28877
28878 2003-09-12  Paul Eggert  <eggert@twinsun.com>
28879
28880         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
28881         * lib/obstack.c [!defined _LIBC]: Likewise.
28882         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
28883         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
28884         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
28885
28886         More changes to assume C89 or better.
28887
28888         * lib/error.c (error_tail): Assume vprintf.
28889
28890         * lib/argmatch.c (getenv): Remove decl.
28891         * lib/progreloc.c (get_full_program_name): Define via prototype.
28892         * lib/setenv.c (clearenv): Likewise.
28893         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
28894         needed.
28895         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
28896         (malloc, memcpy): Remove decls.
28897         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
28898         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
28899         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
28900         (memcpy): Remove macro.
28901         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
28902         (__P): Remove.  All uses removed.
28903         (PTR): Remove.  All uses changed to void *.
28904         (CHAR_BIT, NULL): Remove.
28905         (spaces, zeros, memset_space, memset_zero)
28906         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
28907         Remove.
28908         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
28909         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
28910         Define with prototype.
28911         Remove now-unnecessary prototype decl.
28912         (extra_args_spec): Assume ANSI C.  All uses changed.
28913         (extra_args_spec_iso): Remove.
28914         (my_strftime, emacs_strftimeu): Define via prototype.
28915         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
28916         unconditionally.
28917         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
28918         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
28919         (strtoul, strtol): Remove decls.
28920         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
28921         LONG_MAX): Remove.
28922         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
28923         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
28924         (LOCALE_PARAM_PROTO): New macro.
28925         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
28926         (INTERNAL (strtol), strtol): Define with a prototype.
28927         (PARAMS): Remove.  All uses removed.
28928         * lib/tempname.c: Include <string.h> unconditionally.
28929         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
28930         * lib/xgethostname.c (main): Define with a prototype.
28931         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
28932         Include <stdlib.h> unconditionally.
28933         (calloc, malloc, realloc, free): Remove decls.
28934         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
28935         Include <stdlib.h> unconditionally.  Sort include file names.
28936         (strtod): Remove.
28937         (xstrtod): Define with a prototype.
28938         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
28939         (strtol, strtoul): Remove decls.
28940
28941 2003-09-11  Paul Eggert  <eggert@twinsun.com>
28942
28943         More patches to assume C89 or better.
28944         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
28945         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
28946         string.h, memchr, STDC_HEADERS.
28947
28948 2003-09-11  Paul Eggert  <eggert@twinsun.com>
28949
28950         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
28951         Include <stdlib.h>, <string.h> unconditionally.
28952         Remove now-unnecessary cast to char *.
28953         * lib/strnlen.c: Include <string.h> unconditionally.
28954         * lib/yesno.c (yesno): Define with a prototype.
28955
28956 2003-09-11  Bruno Haible  <bruno@clisp.org>
28957
28958         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
28959
28960 2003-09-10  Jim Meyering  <jim@meyering.net>
28961
28962         * lib/error.c: Correct indentation of cpp directives.
28963
28964 2003-09-10  Bruno Haible  <bruno@clisp.org>
28965
28966         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
28967         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
28968         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
28969         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
28970         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
28971         <stdlib.h> and <string.h> checks.
28972         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
28973         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
28974
28975 2003-09-10  Bruno Haible  <bruno@clisp.org>
28976
28977         * lib/strcspn.c: Include <string.h> unconditionally.
28978         * lib/strpbrk.c: Include <string.h> unconditionally.
28979         * lib/strstr.c: Include <string.h> unconditionally.
28980         * lib/unicodeio.c: Include <string.h> unconditionally.
28981         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
28982         * lib/unsetenv.c: Likewise.
28983         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
28984         * lib/yesno.c: Include <stdlib.h> unconditionally.
28985         (rpmatch): Add prototype.
28986
28987 2003-09-09  Paul Eggert  <eggert@twinsun.com>
28988
28989         More patches to assume C89 or better.
28990         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
28991         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
28992         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
28993         or for string.h.
28994         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
28995         stdlib.h.
28996         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
28997         C headers.
28998         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
28999         string.h.
29000         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
29001         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
29002         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
29003         or for string.h.
29004         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
29005         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
29006         C headers.
29007         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
29008         memcpy.
29009         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
29010         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
29011         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
29012         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
29013         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
29014         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
29015         string.h, free.
29016         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
29017         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
29018         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
29019         C headers, or for string.h.
29020         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
29021         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
29022         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
29023         headers, memory.h, stdlib.h, string.h, strings.h.
29024         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
29025         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
29026         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
29027         strchr.
29028         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
29029         headers, memory.h, string.h.
29030         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
29031         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
29032         free.
29033         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
29034         headers.
29035         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
29036         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
29037         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
29038         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
29039         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
29040
29041 2003-09-09  Paul Eggert  <eggert@twinsun.com>
29042
29043         More K&R removal.
29044
29045         * lib/acosl.c (main): Use a prototype.
29046         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
29047         tanl.c: Likewise.
29048
29049         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
29050
29051         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
29052         (getopt, etopt_long, getopt_long_only, _getopt_internal)
29053         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
29054         with a prototype.
29055         * lib/getopt.c (const): Remove macro.
29056         Include <string.h> unconditionally.
29057         (my_index): Remove; all uses changed to strchr.
29058         (strlen): Remove decl.
29059         (exchange): Remove forward decl; no longer needed.
29060         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
29061         Define with prototype.
29062         * lib/getopt1.c (const): Remove macro.
29063         (getopt_long, getopt_long_only, main): Define with prototype.
29064
29065         * lib/getugroups.c: Include <string.h> unconditionally.
29066
29067         * lib/getusershell.c: Include <stdlib.h> unconditionally.
29068         (getusershell, setusershell, endusershell, readname, main):
29069         Define with prototypes.
29070
29071         * lib/group-member.c: Include group-member.h first.
29072         Include <stdlib.h> unconditionally.
29073
29074         * lib/hard-locale.c: Include hard-locale.h first.
29075         Include <stdlib.h>, <string.h> unconditionally.
29076
29077         * lib/hash.c (free, malloc): Remove decls.
29078         Include <stdlib.h> unconditionally.
29079
29080         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
29081         (getenv): Do not declare.
29082
29083         * lib/idcache.c: Include <string.h> unconditionally.
29084
29085         * lib/long-options.c: Include long-options.h first, to test interface.
29086         Include <stdlib.h> unconditionally.
29087
29088         * lib/makepath.c: Include makepath.h first, to test interface.
29089         Include <stdlib.h> and <string.h> unconditionally.
29090
29091         * lib/linebuffer.c: Include <stdlib.h>.
29092         (free): Remove decl.
29093
29094         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
29095         stddef.h. rpl_malloc returns void *, not char *.
29096         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
29097         prototype.
29098
29099         * lib/md5.h: Include <limits.h> unconditionally.
29100         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
29101         (__P): Remove; all uses removed.
29102         * lib/md5.c: Include "md5.h" first.
29103         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
29104         md5_buffer, md5_process_bytes, md5_process_block):
29105         Define with prototypes.
29106         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
29107         * lib/sha.c: Include "sha.h" first.
29108         Include <stdlib.h>, <string.h> unconditionally.
29109
29110         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
29111         * lib/memcmp.c (__ptr_t): Likewise.
29112         * lib/memrchr.c (__ptr_t): Likewise.
29113         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
29114         Include <string.h> unconditionally.
29115         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
29116         * lib/memchr.c: Include <stdlib.h> unconditionally.
29117         * lib/memchr.c (LONG_MAX): Remove.
29118         * lib/memrchr.c (LONG_MAX): Likewise.
29119         * lib/memchr.c (__memchr): Define via a prototype.
29120         * lib/memrchr.c (__memrchr): Likewise.
29121         * lib/memcmp.c (__P): Remove, and remove all uses.
29122         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
29123         Remove forward decls; no longer needed.
29124         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
29125         Use types required by C89 in prototype.
29126
29127         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
29128         * lib/savedir.c: Likewise.
29129         * lib/mkdir.c (free): Remove decl.
29130         * lib/rmdir.c (rmdir): Define with a prototype.
29131         * lib/savedir.c: Include savedir.h first, to test interface.
29132
29133         * lib/mktime.c (STDC_HEADERS): Remove.
29134         Include <stdlib.h>, <string.h> unconditionally.
29135
29136         * lib/modechange.c: Include <stdlib.h> unconditionally.
29137         (malloc): Remove decl.
29138
29139         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
29140         (free): Remove decl.
29141
29142         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
29143         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
29144         (This type really should be intptr_t, but that's a C99ism.)
29145         (_obstack_memcpy): Remove: all uses changed to memcpy.
29146         Include <string.h> unconditionally.
29147         (struct obstack): Assume __STDC__ for types of members
29148         chunkfun, freefun, extra_arg.
29149         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
29150         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
29151         obstack_begin, obstack_specify_allocation,
29152         obstack_specify_allocation_with_arg, obstack_chunkfun,
29153         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
29154         Remove unprototyped decls and the macros that use them.
29155         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
29156         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
29157         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
29158         (defined __STDC__ && __STDC__)]:
29159         Remove nonprototyped code.
29160         Include <stdlib.h> unconditionally.
29161         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
29162         _obstack_allocated_p, _obstack_free, obstack_free,
29163         _obstack_memory_used, print_and_abort):
29164         Define using prototypes.
29165         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
29166         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
29167         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
29168         obstack_next_free, obstack_object_size, obstack_room) [0]:
29169         Remove unused, unprototyped code.
29170
29171         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
29172
29173         * lib/physmem.c (physmem_total, physmem_available, main): Define
29174         with prototypes.
29175
29176         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
29177         (main): Define with a prototype.
29178
29179         * lib/posixver.c (getenv): Remove decl.
29180
29181         * lib/putenv.c (malloc): Returns void *, not char *.
29182         Include <string.h> unconditionally.
29183         (strchr, memcpy, NULL): Do not define.
29184
29185         * lib/readtokens.c: Include readtokens.h first, to test interface.
29186         Include <stdlib.h>, <string.h> unconditionally.
29187         (init_tokenbuffer): Define with a prototype.
29188
29189         * lib/regex.c (PARAMS): Remove.  All uses removed.
29190         All uses of _RE_ARGS removed, too.
29191         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
29192         unconditionally.
29193         (bzero): Assume memset exists.
29194         (memcmp, memcpy, NULL): Remove.
29195         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
29196         char, or assignments to local vars of type signed char.
29197         (init_syntax_once, PREFIX(extract_number_and_incr),
29198         PREFIX(print_partial_compiled_pattern),
29199         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
29200         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
29201         PREFIX(regex_grow_registers), PREFIX(regex_compile),
29202         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
29203         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
29204         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
29205         wcs_compile_range, byte_compile_range, truncate_wchar,
29206         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
29207         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
29208         count_mbs_length, wcs_re_match_2_internal,
29209         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
29210         PREFIX(alt_match_null_string_p),
29211         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
29212         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
29213         regfree, PREFIX(extract_number)): Define with prototype.  Remove
29214         now-unnecessary declaration, if any.
29215         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
29216         regcomp, regexec):
29217         Remove now-unnecessary casts among pointer types.
29218         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
29219
29220         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
29221         (free): Remove decl.
29222
29223         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
29224
29225         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
29226         (free): Remove decl.
29227
29228         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
29229         * lib/xgetcwd.c: Likewise.
29230
29231         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
29232         (free): Remove decl.
29233
29234         * lib/strchrnul.c (strchrnul): Define with a prototype.
29235         Fix bug: c_in was not converted to char before searching.
29236
29237         The following changes are not K&R related:
29238
29239         * lib/group-member.h: Include <sys/types.h>, so that this file is
29240         self-contained.
29241         * lib/makepath.h: Likewise.
29242
29243         * lib/getusershell.c (readname, default_index, line_size, readname):
29244         Use size_t, not int, for sizes.
29245         (readname): If the size overflows, report an error instead of
29246         looping forever.
29247
29248 2003-09-09  Paul Eggert  <eggert@twinsun.com>
29249
29250         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
29251         libc.
29252
29253 2003-09-09  Paul Eggert  <eggert@twinsun.com>
29254
29255         * README: New section: portability guidelines.
29256
29257 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
29258
29259         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
29260         C89 spec.
29261
29262 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
29263
29264         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
29265
29266 2003-09-08  Paul Eggert  <eggert@twinsun.com>
29267
29268         Assume C89 or better; remove K&R cruft.
29269         A few of these changes were first proposed by Derek Robert Price
29270         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
29271
29272         * lib/addext.c: Include <string.h> unconditionally.
29273         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
29274         Don't declare getenv or malloc.
29275
29276         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
29277         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
29278         (NULL): Remove.
29279         (find_stack_direction, alloca): Use prototypes.
29280
29281         * lib/atexit.c (atexit): Define using a prototype.
29282
29283         * lib/basename.c, dirname.c, stripslash.c:
29284         Include <string.h> unconditionally.
29285
29286         * lib/bcopy.c: Include <stddef.h>.
29287         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
29288
29289         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
29290
29291         * lib/error.h (error, error_at_line, error_print_progname)
29292         [! (defined (__STDC__) && __STDC__)]: Remove decls.
29293         * lib/error.c: Include error.h first, to check interface.
29294         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
29295         (VA_START): Remove; all uses changeed to va_start.
29296         (exit, strerror): Remove decls.
29297         (error_print_progname): Prototype uncondionally.
29298         Don't include <errno.h>; no longer needed.
29299         (private_strerror): Remove.
29300         (error_tail): Always define.
29301         (error, error_at_line): Assume C89 or better; always use prototypes.
29302         * lib/fatal.c: Include "fatal.h" first, to test interface.
29303         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
29304         (VA_START): Remove; all uses changed to va_start.
29305         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
29306         this case.
29307         (exit): Remove decl.
29308         (fatal): Prototype unconditionally.  Assume va_start works.
29309         Abort at end, to pacify gcc.
29310
29311         * lib/euidaccess.c (main): Define with a prototype.
29312
29313         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
29314
29315         * lib/exitfail.c: Include <stdlib.h> unconditionally.
29316
29317         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
29318         prototypes.
29319         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
29320         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
29321         (getenv): Remove decl.
29322         (fnmatch): Define using a prototype.
29323         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
29324         (FCT): Define using a prototype.
29325
29326         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
29327
29328         * lib/gethostname.c: Include <stddef.h>.
29329         (gethostname): Define with prototype.  Length is size_t, not int.
29330
29331 2003-09-08  Paul Eggert  <eggert@twinsun.com>
29332
29333         Assume C89 or better; remove K&R cruft.
29334         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
29335         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
29336         string.h, getenv, malloc.
29337         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
29338         headers.
29339         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
29340         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
29341         do not check for strerror.
29342         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
29343         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
29344         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
29345         do not check for doprnt or vprintf.
29346         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
29347         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
29348
29349 2003-09-08  Paul Eggert  <eggert@twinsun.com>
29350
29351         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
29352         getversion.c should have been removed then, but was accidentally
29353         preserved.
29354
29355         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
29356         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
29357
29358 2003-09-08  Karl Berry  <karl@gnu.org>
29359
29360         * config/config.sub, config.guess, srclistvars.sh: update from savannah
29361                 config, forget about prep.
29362
29363         * config/depcomp, missing: update from automake.
29364
29365 2003-09-07  Paul Eggert  <eggert@twinsun.com>
29366
29367         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
29368         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
29369
29370 2003-09-07  Paul Eggert  <eggert@twinsun.com>
29371
29372         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
29373         copy_tm_result.  Bug reported by Simon Josefsson in
29374         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
29375
29376 2003-09-06  Paul Eggert  <eggert@twinsun.com>
29377
29378         * m4/time_r.m4: New file.
29379         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
29380         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
29381         is. Check for timegm declaration.
29382         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
29383         Do not check for gmtime_r.
29384         Replace mktime if __mktime_internal does not exist and if mktime
29385         hasn't been replaced already.
29386
29387 2003-09-06  Paul Eggert  <eggert@twinsun.com>
29388
29389         * lib/time_r.c, lib/time_r.h: New files.
29390
29391         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
29392         __localtime_r.
29393         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
29394         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
29395
29396         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
29397         __gmtime_r.
29398         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
29399         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
29400         Include <time_r.h>.
29401
29402         * lib/timegm.c: Switch to glibc implementation, with the following
29403         changes:
29404         [defined HAVE_CONFIG_H]: Include <config.h>.
29405         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
29406         (__mktime_internal) [!defined _LIBC]: New decl.
29407         (__gmtime_r) [!defined _LIBC]: New macro and function.
29408         (timegm): Use a prototype, since gnulib assumes C89.
29409         Do not bother declaring tmp to be const, as it's not really usefu.
29410         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
29411         (timegm): Declare only if HAVE_DECL_TIMEGM.
29412
29413 2003-09-06  Paul Eggert  <eggert@twinsun.com>
29414
29415         * MODULES.html.sh (func_all_modules): Add time_r.
29416         * modules/time_r: New file.
29417         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
29418         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
29419
29420 2003-09-03  Paul Eggert  <eggert@twinsun.com>
29421
29422         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
29423         Bug reported by Lute Kamstra in
29424         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
29425
29426         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
29427         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
29428         course with correspondingly smaller numbers for tomorrow and
29429         yesterday.  From Tadayoshi Funaba.  Originally installed into
29430         sh-utils on 1999-08-07, but the patch got lost (I guess during the
29431         coreutils merge?).
29432
29433 2003-08-31  Simon Josefsson  <jas@extundo.com>
29434
29435         * modules/timegm: New file.
29436         * MODULES.html.sh (func_all_modules): Add timegm.
29437
29438 2003-08-31  Simon Josefsson  <jas@extundo.com>
29439
29440         * m4/timegm.m4: New file.
29441
29442 2003-08-31  Simon Josefsson  <jas@extundo.com>
29443
29444         * lib/timegm.h: New file.
29445         * lib/timegm.c: New file.  Based on
29446         wget-1.8.2/src/http.c:mktime_from_utc.
29447
29448 2003-08-31  Karl Berry  <karl@gnu.org>
29449
29450         * lib/argp.h: update from libc.
29451
29452 2003-08-28  Bruno Haible  <bruno@clisp.org>
29453
29454         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
29455         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
29456         followed by '#define fnmatch fnmatch_posix' gives an error.
29457
29458 2003-08-28  Bruno Haible  <bruno@clisp.org>
29459
29460         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
29461         warning on QNX, which defines O_BINARY to 000000.
29462
29463 2003-08-27  Jim Meyering  <jim@meyering.net>
29464
29465         * m4/mkstemp.m4: Require that the system mkstemp be able to create
29466         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
29467         would fail after 32.  Reported by Danny Levinson.  Details here:
29468         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
29469
29470 2003-08-24  Bruno Haible  <bruno@clisp.org>
29471
29472         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
29473         MSVC7 <stdio.h> is included later.
29474
29475 2003-08-22  Simon Josefsson  <jas@extundo.com>
29476
29477         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
29478
29479 2003-08-20  Karl Berry  <karl@gnu.org>
29480
29481         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
29482
29483 2003-08-20  Bruno Haible  <bruno@clisp.org>
29484
29485         * modules/progname: New file.
29486         * MODULES.html.sh (func_all_modules): Add progname.
29487
29488 2003-08-20  Bruno Haible  <bruno@clisp.org>
29489
29490         * lib/progname.h: New file, from GNU gettext.
29491         * lib/progname.c: New file, from GNU gettext.
29492         * lib/progreloc.c: New file, from GNU gettext.
29493
29494 2003-08-19  Jim Meyering  <jim@meyering.net>
29495
29496         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
29497         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
29498
29499 2003-08-19  Bruno Haible  <bruno@clisp.org>
29500
29501         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
29502         more.
29503
29504 2003-08-19  Bruno Haible  <bruno@clisp.org>
29505
29506         * lib/xstrdup.c: Assume <string.h> exists.
29507
29508 2003-08-18  Paul Eggert  <eggert@twinsun.com>
29509
29510         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
29511         in makefile rules.
29512
29513 2003-08-18  Jim Meyering  <jim@meyering.net>
29514
29515         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
29516         * m4/lib-ld.m4: Likewise.
29517
29518 2003-08-18  Jim Meyering  <jim@meyering.net>
29519
29520         * lib/setenv.h: Indent nested cpp directive.
29521         * lib/vasnprintf.c: Remove trailing blanks.
29522
29523 2003-08-17  Simon Josefsson  <jas@extundo.com>
29524
29525         * modules/xstrndup: New file.
29526         * MODULES.html.sh (func_all_modules): Add xstrndup.
29527
29528 2003-08-17  Simon Josefsson  <jas@extundo.com>
29529
29530         * modules/argp: Fix autoconf macro name. Add more dependencies.
29531
29532 2003-08-17  Simon Josefsson  <jas@extundo.com>
29533
29534         * m4/xstrndup.m4: New file.
29535
29536 2003-08-17  Simon Josefsson  <jas@extundo.com>
29537
29538         * m4/argp.m4: New file.
29539
29540 2003-08-17  Simon Josefsson  <jas@extundo.com>
29541             Bruno Haible  <bruno@clisp.org>
29542
29543         * lib/xstrndup.h: New file.
29544         * lib/xstrndup.c: New file.
29545
29546 2003-08-17  Bruno Haible  <bruno@clisp.org>
29547
29548         * modules/strndup (Files, Include): Add lib/strndup.h.
29549
29550 2003-08-17  Bruno Haible  <bruno@clisp.org>
29551
29552         * modules/euidaccess (Files): Add lib/euidaccess.h.
29553
29554 2003-08-17  Bruno Haible  <bruno@clisp.org>
29555
29556         * lib/strndup.h: New file.
29557
29558 2003-08-17  Bruno Haible  <bruno@clisp.org>
29559
29560         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
29561         like AC_GNU_SOURCE.
29562         * modules/extensions (configure.ac): Comment out the invocation of
29563         gl_USE_SYSTEM_EXTENSIONS.
29564
29565 2003-08-16  Paul Eggert  <eggert@twinsun.com>
29566
29567         Merges from coreutils, etc.
29568         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
29569         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
29570         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
29571         fixing a typo.
29572         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
29573         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
29574
29575 2003-08-16  Paul Eggert  <eggert@twinsun.com>
29576
29577         Document merge from coreutils.
29578         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
29579         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
29580         * modules/utime: Add m4/utimes-null.m4.
29581
29582 2003-08-16  Paul Eggert  <eggert@twinsun.com>
29583
29584         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
29585         space, undoing this 2003-08-12 change:
29586         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
29587
29588 2003-08-16  Paul Eggert  <eggert@twinsun.com>
29589
29590         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
29591         strtoul.c from libc, undoing this 2003-08-12 change:
29592         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
29593
29594 2003-08-16  Jim Meyering  <jim@meyering.net>
29595
29596         Merges from coreutils.
29597         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
29598         prefix.  Adjust cache variables similarly.  Create 500 rather than
29599         just 300 files, to exercise bug on Darwin6.5, too.
29600         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
29601         $missing_dir.
29602         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
29603         AM_SYS_POSIX_TERMIOS.
29604         Reported by mkc@mathdogs.com.
29605         Also change use of $am_cv_sys_posix_termios
29606         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
29607         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
29608         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
29609         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
29610         in /proc/mounts until it finds one with matching device number.  This
29611         is unnecessary when the FILE argument *is* a mount point.  No stat call
29612         is necessary in that case.  So, disable the statvfs-testing code on
29613         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
29614         as RedHat bug# 84846.
29615         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
29616         to 1MB, so as not to render systems with no stack size limit (e.g.,
29617         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
29618         Include <unistd.h>.  On some systems,
29619         it is required for the definition of _SC_PAGESIZE.
29620
29621 2003-08-16  Jim Meyering  <jim@meyering.net>
29622
29623         Merge from coreutils.
29624         * lib/xstrtoimax.c: #else #if -> #elif.
29625         * lib/xstrtoumax.c: Likewise.
29626
29627 2003-08-16  Jim Meyering  <jim@meyering.net>
29628
29629         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
29630         * m4/utimes.m4: Removed.
29631         * m4/utimes-null.m4: Renamed from utimes.m4.
29632
29633         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
29634         to 1MB, so as not to render systems with no stack size limit (e.g.,
29635         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
29636         Include <unistd.h>.  On some systems,
29637         it is required for the definition of _SC_PAGESIZE.
29638
29639 2003-08-16  Jim Meyering  <jim@meyering.net>
29640         and Paul Eggert  <eggert@cs.ucla.edu>
29641
29642         Merges from coreutils, etc.
29643
29644         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
29645         using the latest version from cvs.  This avoids problems with #line
29646         directives using a vendor (Sun) compiler.
29647         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
29648         Don't set GETGROUPS_LIB here; now it's
29649         done via getgroups.m4's wrapper function.
29650         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
29651         rather than just in sh-util/configure.in, so that the
29652         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
29653         same.
29654         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
29655         AC_FUNC_GETLOADAVG where to find getloadavg.c.
29656         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
29657         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
29658         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
29659         Remove code that is now done by the newly-required macros.
29660         Append $(EXEEXT) to DF_PROG.
29661         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
29662         Do not invoke or require the following here,
29663         since prereq.m4 or some gnulib .m4 now does this for us:
29664         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
29665         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
29666         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
29667         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
29668         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
29669         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
29670         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
29671         AC_FUNC_OBSTACK.
29672         Do not replace the following functions, as this is now the job
29673         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
29674         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
29675         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
29676         atexit getpass, strdup, getpagesize.
29677         Replace 'raise'.
29678         Do not check for the following functions, as this is now the job
29679         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
29680         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
29681         setregid.
29682         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
29683         Check for sys/sysctl.h.
29684         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
29685         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
29686         of checking for ssize_t ourselves.
29687
29688         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
29689         Require every macro that gnulib/modules/* suggests for us.
29690         (jm_PREREQ_ADDEXT): New macro.
29691         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
29692         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
29693
29694         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
29695         (gl_PHYSMEM): Use it.
29696         Also check for `table' function.
29697         Check for new headers and functions.
29698         Add check for sys/sysmp.h.
29699         With suggestions from Kaveh Ghazi.
29700         Ignore headers that are present but cannot be compiled.  This
29701         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
29702         C 5.4.
29703
29704 2003-08-15  Paul Eggert  <eggert@twinsun.com>
29705
29706         Document merge from coreutils.
29707         * modules/userspec: Depend on posixver.
29708         * modules/strftime: Depend on tzset.
29709
29710 2003-08-15  Paul Eggert  <eggert@twinsun.com>
29711
29712         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
29713         rather than tab, after '#' in shell-script copyright notices.
29714         Suggested by Bruno Haible.
29715
29716 2003-08-15  Paul Eggert  <eggert@twinsun.com>
29717
29718         * config/srclist-update: Use three spaces, rather than tab, after '#'
29719         in shell-script copyright notices.  Suggested by Bruno Haible.
29720         Remove unnecessary parenthesization in regular expression.
29721
29722 2003-08-15  Jim Meyering  <jim@meyering.net>
29723
29724         Merge from coreutils.
29725         * lib/xgethostname.c: Include <stdlib.h>.
29726         (xghostname): Don't exit for anything other than memory-related
29727         failure; just return NULL.
29728         * lib/userspec.c: Include "posixver.h".
29729         (parse_user_spec): Accept `.' as a separator only
29730         in pre-POSIX-200112 mode.
29731         * lib/strtoimax.c: Use #elif rather than #else #if.
29732         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
29733         Remove function, now that we can rely on a working tzset function.
29734         [!_LIBC]: Ensure that the required autoconf test has been run.
29735         [!defined _NL_CURRENT && HAVE_STRFTIME]:
29736         Use underlying_strftime for %r.
29737         * lib/sha.c: Merge in some clean-up and optimization changes from
29738         glibc.
29739         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
29740         Ensure that it is a multiple of 64.
29741         Rearrange loop exit tests so as to avoid performing an
29742         additional fread after encountering an error or EOF.
29743         * lib/realloc.c: Update copyright date.
29744
29745 2003-08-15  Jim Meyering  <jim@meyering.net>
29746         and Paul Eggert  <eggert@twinsun.com>
29747
29748         Merge from coreutils.
29749         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
29750         member but strut utmpx does not.  Needed for AIX 4.3.3.
29751         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
29752
29753 2003-08-15  Jim Meyering  <jim@meyering.net>
29754         and Paul Eggert  <eggert@cs.ucla.edu>
29755
29756         Merges from coreutils, etc.
29757         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
29758         Require gl_FUNC_TZSET_CLOBBER.
29759         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
29760         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
29761         members.
29762
29763 2003-08-14  Paul Eggert  <eggert@twinsun.com>
29764
29765         Help the merge from coreutils.
29766         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
29767         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
29768         * m4/tzset.m4: Use it too.
29769
29770 2003-08-14  Paul Eggert  <eggert@twinsun.com>
29771
29772         * modules/tzset: New file.
29773
29774 2003-08-14  Jim Meyering  <jim@meyering.net>
29775
29776         Merges from coreutils.
29777         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
29778         variable names, rather than @FNMATCH_H@.
29779         * modules/alloca: Likewise for $(ALLOCA_H).
29780
29781         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
29782         the three copies of the literal target, `fnmatch.h'.
29783         * modules/alloca (alloca.h): Likewise.
29784
29785 2003-08-14  Jim Meyering  <jim@meyering.net>
29786
29787         Merge from coreutils.
29788         * m4/tzset.m4: New file.
29789         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
29790         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
29791         otherwise, AIX 5.1 systems would end up using the latter.
29792         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
29793         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
29794         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
29795         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
29796
29797 2003-08-14  Jim Meyering  <jim@meyering.net>
29798
29799         Merge from coreutils.
29800         * lib/obstack.h: Whitespace changes.
29801         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
29802         and xcalloc return values.
29803         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
29804         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
29805         hang on OSF/1 5.1 for DIR on both local and remote file systems.
29806         Reported by (and fix confirmed by) Nelson H. F. Beebe.
29807         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
29808         error from mntctl.
29809         Use mntctl's return value to drive the entry-processing loop, since
29810         we can't rely on the value of the vmt_length member in the last
29811         entry.  On some systems doing so could result in exhausting
29812         virtual memory.  Based in part on a patch from Mike Jetzer.
29813
29814 2003-08-14  Jim Meyering  <jim@meyering.net>
29815         and Paul Eggert  <eggert@twinsun.com>
29816
29817         Merges from coreutils, plus other fixes.
29818         * lib/physmem.c: Merge in portability changes from gcc/libiberty
29819         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
29820         for credits and details.  Thanks to Kaveh Ghazi for helping
29821         to keep these files in sync.
29822         (ARRAY_SIZE): Define it.
29823         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
29824         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
29825         (memcasecmp): Don't assume size_t fits in unsigned int.
29826         Remove casts and duplicate code.
29827         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
29828         (memcpy): Remove definition.
29829         Merge in some clean-up and optimization changes from glibc.
29830         [BLOCKSIZE]: Move definition to top of file.
29831         Ensure that it is a multiple of 64.
29832         Rearrange loop exit tests so as to avoid performing an
29833         additional fread after encountering an error or EOF.
29834         * lib/md5.h (md5_uintptr): Define.
29835         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
29836         return to the initial working directory.  Preserve errno
29837         for caller.
29838         * lib/idcache.c: Include "xalloc.h".
29839         (xmalloc, xrealloc): Remove decls.
29840         (getuser): Remove casts no longer required in C89.
29841         * lib/human.c: Include stdio.h, for sprintf.
29842         * lib/group-member.c: Include "xalloc.h".
29843         (xmalloc, xrealloc): Remove decls.
29844         (get_group_info): Remove casts no longer required in C89.
29845         * lib/getusershell.c (readname): Remove casts no longer required in
29846         C89.
29847         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
29848         * lib/getline.c: Whitespace fix, from coreutils.
29849
29850 2003-08-13  Paul Eggert  <eggert@twinsun.com>
29851
29852         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
29853         Check for isascii.
29854
29855         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
29856         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
29857         Undo previous (whitespace-only) change.
29858
29859 2003-08-13  Paul Eggert  <eggert@twinsun.com>
29860
29861         * lib/exclude.c: Include <ctype.h>
29862         (IN_CTYPE_DOMAIN): New macro.
29863         (is_space): New fn.
29864         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
29865         and empty lines.
29866
29867         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
29868         Undo previous (whitespace-only) change.
29869
29870 2003-08-13  Paul Eggert  <eggert@twinsun.com>
29871
29872         * config/srclist-update: Change update back to the old behavior,
29873         leaving whitespace alone.  Use one 'sed' command rather than a
29874         pipeline.
29875         (fixlicense): Now a variable, not a function.
29876         (remove_trailing_blanks): Remove.
29877         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
29878         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
29879         Undo previous (whitespace-only) change.
29880
29881 2003-08-12  Paul Eggert  <eggert@twinsun.com>
29882
29883         Merge from coreutils.
29884         * modules/euidaccess: Add lib_SOURCES, include for new
29885         file euidaccess.h
29886
29887 2003-08-12  Paul Eggert  <eggert@twinsun.com>
29888
29889         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
29890         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
29891         Normalize leading white space and remove trailing white space.
29892
29893         Merge from coreutils
29894         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
29895
29896         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
29897         0.12.1.  These files are now being upgraded automatically by
29898         ../config/srclist-update.
29899
29900 2003-08-12  Paul Eggert  <eggert@twinsun.com>
29901
29902         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
29903         Normalize leading white space and remove trailing white space.
29904         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
29905         notice, as per ../config/srclist-update.
29906
29907         Merge from coreutils.
29908         * lib/euidaccess.h: New file.
29909         * lib/euidaccess.c: Include it.
29910         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
29911         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
29912         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
29913
29914 2003-08-12  Paul Eggert  <eggert@twinsun.com>
29915
29916         * config/srclist-update: Add copyright notice.
29917         (remove_id_lines, remove_trailing_blanks): New constants.
29918         (fixfile): Use them to normalize spacing a bit in copied files.
29919         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
29920         Normalize leading white space and remove trailing white space.
29921
29922         * config/texinfo.tex: Sync with texinfo.
29923
29924         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
29925         strtoul.c from libc, to merge coreutils whitespace changes.
29926
29927         * config/srclist.txt: Get the following m4 files from gettext:
29928         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
29929         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
29930         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
29931         wint_t.m4.
29932
29933 2003-08-12  Karl Berry  <karl@gnu.org>
29934
29935         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
29936         been made.
29937
29938 2003-08-11  Paul Eggert  <eggert@twinsun.com>
29939
29940         * modules/gnu-source, m4/gnu-source.m4:
29941         Remove; we're assuming Autoconf 2.54 or later now.
29942         Suggested by Bruno Haible.
29943         * MODULES.html.sh (func_all_modules): Remove gnu-source.
29944
29945 2003-08-11  Bruno Haible  <bruno@clisp.org>
29946
29947         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
29948
29949 2003-08-11  Bruno Haible  <bruno@clisp.org>
29950
29951         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
29952         (vasnprintf): Use it instead of wcslen.
29953
29954 2003-08-11  Bruno Haible  <bruno@clisp.org>
29955
29956         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
29957         value to ensure that _Bool promotes to int. Use #define for _Bool when
29958         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
29959
29960 2003-08-10  Karl Berry  <karl@gnu.org>
29961
29962         * lib/regex.h: update from libc (whitespace fix).
29963
29964 2003-08-09  Paul Eggert  <eggert@twinsun.com>
29965
29966         Merge some files from coreutils.  These changes were
29967         originally made by Jim Meyering.
29968         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
29969         many older Unixes require this.
29970         * lib/alloca.c (alloca): Remove cast to argument of free;
29971         no longer needed in C89.
29972         * lib/alloca_.h, regex.h: Fix white space to match
29973         what GNU indent does.
29974
29975 2003-08-09  Paul Eggert  <eggert@twinsun.com>
29976
29977         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
29978         apparently Emacs's Unicode mode got confused before my 2003-08-05
29979         checkin.
29980
29981 2003-08-08  Paul Eggert  <eggert@twinsun.com>
29982
29983         * m4/extensions.m4: New file.
29984         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
29985         Require gl_USE_SYSTEM_EXTENSIONS.
29986         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
29987         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
29988
29989 2003-08-08  Paul Eggert  <eggert@twinsun.com>
29990
29991         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
29992         * modules/extensions, modules/gnu-source: New files.
29993         * modules/timespec, modules/unlocked-io: Depend on extensions.
29994
29995 2003-08-07  Paul Eggert  <eggert@twinsun.com>
29996
29997         * modules/restrict: New file.
29998         * MODULES.html.sh (func_all_modules): Add restrict.
29999         * modules/regex: Depend on restrict.
30000
30001 2003-08-07  Paul Eggert  <eggert@twinsun.com>
30002
30003         * m4/restrict.m4: New file.
30004         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
30005
30006 2003-08-07  Bruno Haible  <bruno@clisp.org>
30007
30008         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
30009         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
30010
30011 2003-08-07  Bruno Haible  <bruno@clisp.org>
30012
30013         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
30014         makes the module 'getndelim2' compatible with the module 'getline'.
30015
30016 2003-08-05  Paul Eggert  <eggert@twinsun.com>
30017
30018         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
30019         byte with "\201" to avoid glitches when editing that source file
30020         with multi-gnome-terminal.
30021
30022 2003-08-05  Paul Eggert  <eggert@twinsun.com>
30023
30024         * lib/bumpalloc.h: Remove.
30025
30026 2003-08-05  Paul Eggert  <eggert@twinsun.com>
30027
30028         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
30029         * modules/bumpalloc: Remove.
30030
30031 2003-08-04  Paul Eggert  <eggert@twinsun.com>
30032
30033         * lib/getloadavg.c: Change copyright notice and spacing to conform to
30034         GNU coding style.
30035
30036         Merge from coreutils.
30037         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
30038         1. From glibc.
30039         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
30040         from Karl Berry, implemented by Jim Meyering.
30041         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
30042         from Dmitry V. Levin.
30043         Remove anachronistic cast of xrealloc.
30044         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
30045         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
30046         type. Otherwise, it wouldn't compile with at least /bin/cc on
30047         ymp-cray-unicos9.0.2.X.
30048         Combine two mostly-identical uses of alloca into one.
30049         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
30050
30051 2003-08-04  Dave Love  <d.love@dl.ac.uk>
30052
30053         [From Emacs.]
30054
30055         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
30056         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
30057         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
30058         obsolete NLIST_NAME_UNION.
30059         [__GNU__]: Undef BSD and FSCALE.
30060         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
30061
30062 2003-08-03  Paul Eggert  <eggert@twinsun.com>
30063
30064         * lib/stdbool_.h (_Bool): Make it signed char, instead of
30065         an enum type, so that it's guaranteed to promote to int.  See:
30066         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
30067
30068 2003-08-03  Karl Berry  <karl@gnu.org>
30069
30070         * config/depcomp: update from automake.
30071
30072 2003-07-31  Paul Eggert  <eggert@twinsun.com>
30073
30074         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
30075         (strerror): Don't assume that a printable int fits in 14 bytes.
30076
30077 2003-07-31  Bruno Haible  <bruno@clisp.org>
30078
30079         * modules/getpass-gnu: New file.
30080         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
30081
30082 2003-07-31  Bruno Haible  <bruno@clisp.org>
30083
30084         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
30085
30086 2003-07-24  Karl Berry  <karl@gnu.org>
30087
30088         * config/missing: update from automake.
30089
30090 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
30091             Bruno Haible  <bruno@clisp.org>
30092
30093         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
30094         * lib/getline.c (getline, getdelim): Likewise.
30095         Remove _GNU_SOURCE define; now it's defined in config.h through
30096         m4/getline.m4.
30097
30098 2003-07-23  Karl Berry  <karl@gnu.org>
30099
30100         * config/config.sub: update from prep.
30101
30102 2003-07-22  Paul Eggert  <eggert@twinsun.com>
30103
30104         * modules/xalloc (Depends-on): Add exitfail.
30105         * modules/xmemcoll: Likewise.
30106
30107 2003-07-22  Paul Eggert  <eggert@twinsun.com>
30108
30109         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
30110         over-parenthesization in macros.
30111
30112         Sync with coreutils.
30113
30114         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
30115         required by C99.
30116
30117         Use `exit_failure' for xalloc and xmemcoll instead of their own
30118         private exit-failure variables.
30119         * lib/xalloc.h (xalloc_exit_failure): Remove.
30120         * lib/xmalloc.c: Likewise.  Include exitfail.h.
30121         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
30122         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
30123         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
30124         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
30125
30126 2003-07-20  Jim Meyering  <jim@meyering.net>
30127
30128         * modules/closeout (Depends-on): Add exitfail.
30129         Suggestion from Bruno Haible.
30130
30131 2003-07-19  Karl Berry  <karl@gnu.org>
30132
30133         * config/config.sub: update from prep.
30134
30135 2003-07-18  Paul Eggert  <eggert@twinsun.com>
30136
30137         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
30138         Remove.
30139         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
30140         to test that it can stand by itself.  Include "exitfail.h".
30141         Clients should set exit_failure instead.
30142         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
30143
30144 2003-07-18  Bruno Haible  <bruno@clisp.org>
30145
30146         * modules/getndelim2: New file.
30147         * modules/getline: Share files with module getndelim2.
30148         * modules/getnline: Depend on getndelim2 instead of sharing files with
30149         it. Add getnline.c to lib_SOURCES.
30150         * MODULES.html.sh (func_all_modules): Add getndelim2.
30151
30152 2003-07-18  Bruno Haible  <bruno@clisp.org>
30153
30154         * m4/getndelim2.m4: New file.
30155         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
30156         invoke gl_PREREQ_GETNDELIM2.
30157         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
30158         gl_PREREQ_GETNDELIM2.
30159         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
30160         gl_GETNDELIM2.
30161
30162 2003-07-18  Bruno Haible  <bruno@clisp.org>
30163
30164         * lib/getndelim2.h: New file.
30165         * lib/getndelim2.c: Make into a module of its own. Include config.h,
30166         getndelim2.h.
30167         (getndelim2): Make non-static. Change return type to ssize_t.
30168         * lib/getline.h: Change argument names.
30169         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
30170         * lib/getnline.c: Include getndelim2.h.
30171
30172 2003-07-18  Andreas Schwab  <schwab@suse.de>
30173
30174         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
30175
30176 2003-07-17  Karl Berry  <karl@gnu.org>
30177
30178         * config/config.sub: update from prep.
30179
30180 2003-07-17  Bruno Haible  <bruno@clisp.org>
30181
30182         * modules/getnline: New file.
30183         * modules/getline: Add lib/getndelim2.c to source file list.
30184         * MODULES.html.sh (func_all_modules): Add getnline.
30185
30186 2003-07-17  Bruno Haible  <bruno@clisp.org>
30187
30188         * m4/getnline.m4: New file.
30189
30190 2003-07-17  Bruno Haible  <bruno@clisp.org>
30191
30192         * m4/Makefile.am.in: Remove file.
30193         * m4/Makefile.am: Remove file.
30194         * m4/Makefile.in: Remove file.
30195
30196 2003-07-17  Bruno Haible  <bruno@clisp.org>
30197
30198         * lib/getnline.h: New file.
30199         * lib/getnline.c: New file.
30200         * lib/getndelim2.c: New file, extracted from getline.c.
30201         (getndelim2): Renamed from getdelim2, with added nmax argument.
30202         * lib/getline.c: Include getndelim2.c.
30203         (getdelim2): Moved out to getndelim2.c.
30204         (getline, getdelim): Update.
30205
30206 2003-07-17  Bruno Haible  <bruno@clisp.org>
30207
30208         * lib/Makefile.am: Remove file.
30209         * lib/Makefile.in: Remove file.
30210
30211 2003-07-17  Bruno Haible  <bruno@clisp.org>
30212
30213         * configure.in: Remove file.
30214         * Makefile.in: Remove file.
30215
30216 2003-07-17  Bruno Haible  <bruno@clisp.org>
30217
30218         * MODULES.html.sh: Put the </BODY> right before </HTML>.
30219
30220 2003-07-16  Karl Berry  <karl@gnu.org>
30221
30222         * config/srclist-update: was running fixlicense twice, which caused
30223                 texinfo.tex to be nullified for some reason.  Simplify,
30224                 $gplsrc is no longer needed as far as I can see?
30225
30226 2003-07-16  Jim Meyering  <jim@meyering.net>
30227
30228         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
30229
30230 2003-07-15  Paul Eggert  <eggert@twinsun.com>
30231
30232         * config/srclist.txt: Get the following files from gettext-runtime/intl
30233         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
30234         ref-del.sin.  From Bruno Haible.
30235         * config/srclist-update (fixfile): Change grep pattern again, since the
30236         previous fix didn't work (there was another trailing $).  Use
30237         '[$]' to escape the $s.
30238
30239 2003-07-15  Karl Berry  <karl@gnu.org>
30240
30241         * lib/vasnprintf.c: update from gettext.
30242
30243 2003-07-15  Karl Berry  <karl@gnu.org>
30244
30245         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
30246         gets expanded when surrounded by '$'.
30247
30248 2003-07-15  Jim Meyering  <jim@meyering.net>
30249
30250         * modules/save-cwd: Don't depend on error.  From Derek Price.
30251
30252 2003-07-15  Jim Meyering  <jim@meyering.net>
30253
30254         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
30255
30256 2003-07-14  Simon Josefsson  <jas@extundo.com>
30257
30258         * modules/mempcpy: New file.
30259         * MODULES.html.sh (func_all_modules): Add mempcpy.
30260
30261 2003-07-14  Simon Josefsson  <jas@extundo.com>
30262
30263         * m4/mempcpy.m4: New file.
30264
30265 2003-07-14  Simon Josefsson  <jas@extundo.com>
30266
30267         * lib/mempcpy.h: New file.
30268         * lib/mempcpy.c: New file.
30269
30270 2003-07-14  Paul Eggert  <eggert@twinsun.com>
30271
30272         * modules/getdate, modules/posixtm: Depend on mktime.
30273
30274 2003-07-14  Paul Eggert  <eggert@twinsun.com>
30275
30276         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
30277         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
30278         unicodeio.c, unicodeio.h, unlocked-io.h:
30279         Switch from LGPL to GPL.
30280
30281 2003-07-14  Paul Eggert  <eggert@twinsun.com>
30282
30283         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
30284         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
30285         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
30286         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
30287         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
30288         updated automatically by ../config/srclist-update.  This changes
30289         their license from LPGL to GPL.
30290
30291 2003-07-14  Paul Eggert  <eggert@twinsun.com>
30292
30293         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
30294         assumed to refer to the root of the most recent stable gettext version.
30295         * config/srclistvars.sh: Add defaults for eggert.
30296         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
30297         Match "This program" as well as "The program".  This is needed
30298         for gettext.
30299
30300 2003-07-14  Jim Meyering  <jim@meyering.net>
30301
30302         Don't emit diagnostics.  Let callers do that.
30303         * lib/save-cwd.c: Don't include "error.h".
30304         (save_cwd): Don't call error.  Ensure that errno is valid
30305         when returning nonzero.
30306
30307         * lib/save-cwd.h (restore_cwd): Update prototype.
30308         * lib/save-cwd.c (restore_cwd): Remove two parameters.
30309         Simplify.  Don't call error upon failure.  Let callers do that.
30310         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
30311         when auditing is enabled.  But don't bother updating the #if.
30312
30313 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
30314
30315         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
30316         it breaks C++ compilation.
30317         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
30318
30319 2003-07-10  Simon Josefsson  <jas@extundo.com>
30320
30321         * modules/strchrnul (Makefile.am): Add strchrnul.h.
30322
30323 2003-07-10  Jim Meyering  <jim@meyering.net>
30324
30325         * m4/clock_time.m4: Remove trailing blank.
30326         * m4/intmax_t.m4: Likewise.
30327
30328 2003-07-10  Jim Meyering  <jim@meyering.net>
30329
30330         * lib/vasnprintf.c: Remove trailing blanks.
30331         Make cpp indentation consistent.
30332
30333 2003-07-09  Paul Eggert  <eggert@twinsun.com>
30334
30335         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
30336         posixver.c, strftime.c, strnlen.c, strverscmp.c:
30337         Switch from LGPL to GPL.
30338
30339 2003-07-09  Paul Eggert  <eggert@twinsun.com>
30340
30341         * config/srclist.txt: Sort sublists.  Add
30342         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
30343         that differ from gnulib for one reason or another; we'd like this list
30344         to be smaller but for now let's document what we have.
30345
30346 2003-07-08  Paul Eggert  <eggert@twinsun.com>
30347
30348         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
30349         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
30350         and sweeter "eval x=$x".
30351         * config/srclist.txt: Get lib/argp* from glibc.
30352
30353 2003-07-07  Paul Eggert  <eggert@twinsun.com>
30354
30355         * lib/mktime.c: Fix some boundary cases and remove need for floating
30356         point.
30357
30358         Issue a compile-time diagnostic if time_t is floating point, or if
30359         two's complement arithmetic is not in effect, or if arithmetic
30360         right shift does not propagate the sign.  These assumptions were
30361         all in the original code but they weren't checked.
30362
30363         (TIME_T_MIDPOINT, verify): New macros.
30364         (__isleap): Remove; it has integer overflow problems.
30365         (leapyear): New function, without those problems.
30366         (ydhms_tm_diff): Remove; splitting into two parts.
30367         (ydhms_diff): New function, containing the arithmetic part of
30368         the old ydhms_tm_diff function.  Issue a compile-time
30369         diagnostic if we are not using C99 integer division.
30370         Avoid casts when possible.
30371         (guess_time_tm): New function, containing the checking part of
30372         the old ydhms_tm_diff function.  Return the new value, rather than
30373         the difference between it and the old.  Accept a new argument T
30374         so that *T specifies the old value.  Check for overflow in the result.
30375
30376         (__mktime_internal): Use a time_t offset, not a long int offset.
30377         This undoes the 2003-06-04 change, which is no longer needed now
30378         that we have better overflow checking.
30379         (localtime_offset): Likewise.
30380
30381         (__mktime_internal): Avoid harmful overflow on hosts where time_t
30382         and long are 64-bit but int is only 32-bit.
30383         (ydhms_diff): Use long int to store year1 and yday1.
30384         Issue a compile-time diagnostic if long int is not wide enough.
30385
30386         (__mktime_internal): Use long int to store adjusted year and yday.
30387         Use plain C rather than preprocessor commands, if that doesn't
30388         affect efficiency.
30389         Check for overflow (and try to repair) after each probe
30390         rather than checking only at the very end.  This avoids some bugs
30391         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
30392         does not equal GMT offset at maximum time).
30393         Use integer to check for overflow rather than floating point; this
30394         is more portable to non-IEEE hosts, and is a tad faster.
30395         When we detect that we are oscillating between two values,
30396         don't check whether tm_isdst has the requested value, since
30397         we already know the answer.  When tm_isdst has the wrong value,
30398         use a different heuristic to find the right one, based on the
30399         extreme values actually observed in practice in tz2003a,
30400         rather than the (overly optimistic) "previous 3 calendar quarters".
30401
30402         (not_equal_tm, print_tm, check_result): Use "const T" rather than
30403         "T const" to accommodate glibc style.
30404         (check_result): Use less-confusing report format.  "long" -> "long int.
30405         (main): Likewise.
30406         Don't loop if the iteration overflows time_t.
30407         Allow a negative step in the iteration.
30408
30409 2003-07-06  Karl Berry  <karl@gnu.org>
30410
30411         * config/depcomp: update from automake.
30412         * config/config.sub: update from prep.
30413
30414 2003-07-03  Karl Berry  <karl@gnu.org>
30415
30416         * config/config.guess: update from prep.
30417
30418 2003-07-01  Paul Eggert  <eggert@twinsun.com>
30419
30420         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
30421         xreadlink.c now includes it unconditionally.
30422
30423 2003-07-01  Paul Eggert  <eggert@twinsun.com>
30424
30425         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
30426         having it depend on HAVE_SYS_TYPES_H.
30427
30428 2003-07-01  Bruno Haible  <bruno@clisp.org>
30429
30430         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
30431         <sys/types.h> should be sufficient.
30432         Reported by Paul Eggert.
30433
30434 2003-06-26  Karl Berry  <karl@gnu.org>
30435
30436         * config/depcomp: update from automake.
30437
30438 2003-06-26  Bruno Haible  <bruno@clisp.org>
30439
30440         * modules/human: Depend on module stdbool.
30441
30442 2003-06-25  Bruno Haible  <bruno@clisp.org>
30443
30444         * modules/readlink: New file.
30445         * modules/xreadlink: Depend on it.
30446         * MODULES.html.sh (func_all_modules): Add readlink.
30447
30448 2003-06-25  Bruno Haible  <bruno@clisp.org>
30449
30450         * m4/readlink.m4: New file.
30451
30452 2003-06-25  Bruno Haible  <bruno@clisp.org>
30453
30454         * lib/readlink.c: New file.
30455
30456 2003-06-22  Karl Berry  <karl@gnu.org>
30457
30458         * config/srclist.txt: update mkinstalldirs from automake.
30459         * config/mkinstalldirs: update.
30460
30461 2003-06-22  Bruno Haible  <bruno@clisp.org>
30462
30463         Portability to mingw32.
30464         * m4/ssize_t.m4: New file, from GNU gettext.
30465         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
30466         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
30467
30468 2003-06-22  Bruno Haible  <bruno@clisp.org>
30469
30470         * modules/safe-read: Add m4/ssize_t.m4.
30471         * modules/xreadlink: Add m4/ssize_t.m4.
30472
30473 2003-06-20  Bruno Haible  <bruno@clisp.org>
30474
30475         Assume C89, so PARAMS isn't needed.
30476         * lib/unicodeio.h (PARAMS): Remove.
30477         * lib/unicodeio.c: Don't use PARAMS.
30478
30479 2003-06-18  Karl Berry  <karl@gnu.org>
30480
30481         * config/config.{guess,sub}: update from prep.
30482
30483 2003-06-18  Jim Meyering  <jim@meyering.net>
30484
30485         Merge changes from coreutils.
30486         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
30487         Remove explicit declarations of xmalloc and realloc.
30488         Include xalloc.h.
30489         (read_utmp): Remove anachronistic cast of xmalloc.
30490
30491 2003-06-17  Paul Eggert  <eggert@twinsun.com>
30492
30493         Assume C89, so PARAMS isn't needed.
30494         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
30495         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
30496         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
30497         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
30498         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
30499         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
30500         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
30501         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
30502         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
30503         lib/xstrtod.h, lib/xstrtol.h: Likewise.
30504         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
30505         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
30506         no longer needed. Anyway, config.h should always be included before any
30507         other file.
30508
30509 2003-06-11  Simon Josefsson  <jas@extundo.com>
30510
30511         * modules/sysexits: New file.
30512         * MODULES.html.sh (func_all_modules): Add sysexits.
30513
30514 2003-06-11  Simon Josefsson  <jas@extundo.com>
30515
30516         * lib/sysexit_.h: New file.
30517
30518 2003-06-11  Derek Price  <derek@ximbiot.com>
30519
30520         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
30521         necessary.
30522
30523 2003-06-11  Bruno Haible  <bruno@clisp.org>
30524
30525         * m4/sysexits.m4: New file.
30526
30527 2003-06-10  Simon Josefsson  <jas@extundo.com>
30528
30529         * lib/argp.h: New file, from glibc.
30530         * lib/argp-ba.c: New file, from glibc.
30531         * lib/argp-eexst.c: New file, from glibc.
30532         * lib/argp-fmtstream.c: New file, from glibc.
30533         * lib/argp-fmtstream.h: New file, from glibc.
30534         * lib/argp-fs-xinl.c: New file, from glibc.
30535         * lib/argp-help.c: New file, from glibc.
30536         * lib/argp-namefrob.h: New file, from glibc.
30537         * lib/argp-parse.c: New file, from glibc.
30538         * lib/argp-pv.c: New file, from glibc.
30539         * lib/argp-pvh.c: New file, from glibc.
30540         * lib/argp-xinl.c: New file, from glibc.
30541
30542 2003-06-10  Simon Josefsson  <jas@extundo.com>
30543
30544         * modules/strchrnul: New file.
30545
30546 2003-06-10  Simon Josefsson  <jas@extundo.com>
30547
30548         * modules/argp: New file.
30549
30550 2003-06-10  Simon Josefsson  <jas@extundo.com>
30551
30552         * m4/strchrnul.m4: New file.
30553
30554 2003-06-10  Simon Josefsson  <jas@extundo.com>
30555
30556         * lib/strchrnul.h: New file.
30557         * lib/strchrnul.c: New file.
30558
30559 2003-06-10  Bruno Haible  <bruno@clisp.org>
30560
30561         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
30562
30563 2003-06-07  Karl Berry  <karl@gnu.org>
30564
30565         * config/config.{guess,sub}: update from prep.
30566
30567 2003-06-07  Jim Meyering  <jim@meyering.net>
30568
30569         * modules/strtod: Use $(...) notation, not @...@ for
30570         AC_REPLACE'd variables.
30571         * modules/localcharset: Likewise.
30572
30573 2003-06-07  Jim Meyering  <jim@meyering.net>
30574
30575         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
30576         in place of my name in the copyright comment.
30577         Remove definition and uses of __P.
30578
30579         From coreutils.
30580         * lib/stat.c: Don't declare xmalloc explicitly.
30581         Instead, include "xalloc.h".
30582         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
30583         xrealloc, and xcalloc return values.
30584         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
30585         Improve comment.
30586         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
30587
30588 2003-06-07  Bruno Haible  <bruno@clisp.org>
30589
30590         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
30591         avoid AC_CONFIG_LINKS.
30592         * modules/fnmatch (Makefile.am): Use explicit creation rule for
30593         fnmatch.h, to avoid AC_CONFIG_LINKS.
30594         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
30595
30596 2003-06-07  Bruno Haible  <bruno@clisp.org>
30597
30598         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
30599         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
30600         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
30601         directory.
30602         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
30603         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
30604         directory.
30605
30606 2003-06-06  Jim Meyering  <jim@meyering.net>
30607
30608         Merge from coreutils.
30609         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
30610         Consolidate declarations and initializations of *_base* locals.
30611
30612         Merge from coreutils.
30613         This avoids a core dump on systems without GNU putenv,
30614         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
30615         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
30616         (unsetenv): New static function, from GNU libc.
30617         (rpl_putenv): Use it.
30618
30619         * lib/modechange.c: Remove trailing blanks.
30620
30621         Merge from coreutils.
30622         * lib/fsusage.c: Remove declaration of statfs.
30623         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
30624
30625         * lib/posixtm.c: Include <stdbool.h> unconditionally.
30626
30627 2003-06-06  Jim Meyering  <jim@meyering.net>
30628
30629         * lib/stdbool_.h: Renamed from stdbool.h.in.
30630
30631 2003-06-06  Jim Meyering  <jim@meyering.net>
30632             Bruno Haible  <bruno@clisp.org>
30633
30634         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
30635         Adjust Makefile.am snippet not to redirect directly to target.
30636         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
30637
30638 2003-06-05  Paul Eggert  <eggert@twinsun.com>
30639
30640         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
30641         mismatch, look in future quarters as well as past.  This fixes a
30642         bug when processing fall-backwards gaps immediately after a long
30643         period of daylight-saving time.
30644
30645         * lib/mktime.c: Assume freestanding C89 or better.
30646         (HAVE_LIMITS_H): Remove.  Assume it's 1.
30647         (__P): Remove; not used.
30648         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
30649         (mktime, not_equal_tm, print_tm, check_result,
30650         main): Use prototypes.  Use const * where appropriate.
30651         (main): Fix typo in testing code that uncovered by above changes.
30652         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
30653
30654 2003-06-04  Paul Eggert  <eggert@twinsun.com>
30655
30656         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
30657         locale.h, localeconv.  This merges changes from coreutils.
30658
30659         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
30660         It can be removed after the next Autoconf is released.
30661         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
30662         needed.
30663
30664 2003-06-04  Paul Eggert  <eggert@twinsun.com>
30665
30666         * lib/mktime.c: Fix Debian bug 177940
30667         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
30668         (localtime_offset): Now long int, not time_t, because we want it
30669         to be guaranteed to be signed.  All uses changed.
30670         (__mktime_internal): If overflow would occur when adding offset,
30671         don't add it.
30672
30673         Merge 'human' changes from coreutils.  Rewrite to support
30674         locale-specific notations like thousands separators.
30675         * lib/human.c: Simplify authorship notice.
30676         Include human.h immediately after config.h.
30677         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
30678         <limits.h>: Do not include, since human.h does.
30679         (SIZE_MAX, UINTMAX_MAX): New macros.
30680         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
30681         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
30682         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
30683         (power_letter): Renamed from suffixes.
30684         (generate_suffix_backwards): Remove.
30685         (adjust_value): Now takes int style (because of human.h changes)
30686         and long double value (for greater precision on some platforms).
30687         (group_number): New function.
30688         (human_readable): Use it.  Use integer options, not enum.
30689         Put the options before the sizes in the arg list.
30690         Support all the new options.
30691         The old human_readable function has been removed;
30692         use inttostr.h instead.
30693         (human_readable, default_block_size, humblock):
30694         Use uintmax_t, not int, for block sizes.
30695         (human_readable_inexact, block_size_types): Remove.
30696         (block_size_opts): New constant.
30697         (human_options): Renamed from human_block_size, with new signature
30698         that allows block sizes up to UINTMAX_MAX.  All callers changed.
30699         * lib/human.h: Add copyright and authorship notice.
30700         Include <limits.h> and <stdbool.h> unconditionally.
30701         (PARAMS): Remove.  All uses removed.
30702         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
30703         (enum human_inexact_style): Remove tag; now a nameless enum.
30704         (human_floor, human_ceiling, human_round_to_even): Now have
30705         values 2, 0, 1 rather than -1, 1, 0.
30706         (human_group_digits, human_suppress_point_zero, human_autoscale,
30707         human_base_1024, human_SI, human_B): New constants.
30708         (human_readable_inexact, human_block_size): Remove.
30709         (human_readable): Size args are now uintmax_t, not int.
30710         (human_options): New decl.
30711
30712         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
30713         unnecessary now that we assume C89 or better.  This change
30714         imported from coreutils.
30715
30716         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
30717         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
30718         in the 2003-05-30 sync from glibc.
30719
30720         .h files should stand alone, but we shouldn't include <sys/types.h>
30721         if we can get away with just <stddef.h>.
30722
30723         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
30724         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
30725         rather than <sys/types.h>, as we merely need size_t.
30726         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
30727         to get size_t.
30728         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
30729         Include <stdio.h>, to get FILE.
30730         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
30731         memcasecmp.h has included <stddef.h> and all we need is size_t.
30732         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
30733         our interface, instead of including <sys/types.h>
30734
30735 2003-06-04  Paul Eggert  <eggert@twinsun.com>
30736
30737         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
30738         now, as glibc mktime is buggy on non-glibc systems.
30739
30740 2003-06-03  Karl Berry  <karl@gnu.org>
30741
30742         * config/config.sub: update from prep.
30743
30744 2003-06-02  Paul Eggert  <eggert@twinsun.com>
30745
30746         [from coreutils]
30747         Fix some minor time-related bugs with POSIX time arguments.
30748         Some valid time stamps were being rejected (notably -1, and
30749         time stamps before 1900 on 64-bit hosts).  And some invalid
30750         time stamps were being accepted, e.g. September 31.
30751
30752         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
30753         that we can return (time_t) -1 successfully.
30754         * lib/posixtm.c: Likewise.
30755         [HAVE_STDBOOL_H]: Include <stdbool.h>.
30756         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
30757         (t): Remove static var.
30758         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
30759         of static var.  All uses changed.
30760         (year): Do not reject years before 1900; they can occur with
30761         64-bit time_t.
30762         (posix_time_parse): Do not check for out-of-range components;
30763         that is now the caller's responsibility, since our checks were
30764         only approximations.
30765         (posixtime): Use mktime to check for out-of-range components,
30766         since it knows them exactly.
30767         If mktime returns (time_t) -1, check whether an error actually occurred
30768         by invoking localtime on -1.
30769         (main) [TEST_POSIXTIME]: Check for input data errors, and report
30770         posixtime failures better.
30771         Improve the test data (in comments only).
30772
30773 2003-06-02  Karl Berry  <karl@gnu.org>
30774
30775         * config/mkinstalldirs (version): new variable.
30776         (--version): new option.
30777         (usage): improve message.
30778
30779 2003-05-30  Karl Berry  <karl@gnu.org>
30780
30781         * lib/mktime.c: update from libc.
30782
30783 2003-05-30  Bruno Haible  <bruno@clisp.org>
30784
30785         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
30786         * config/config.rpath: Upgrade to gettext-0.12.1.
30787
30788 2003-05-30  Bruno Haible  <bruno@clisp.org>
30789
30790         * m4/gettext.m4: Upgrade to gettext-0.12.1.
30791         * m4/nls.m4: New file, from gettext-0.12.1.
30792         * m4/po.m4: New file, from gettext-0.12.1.
30793         * m4/progtest.m4: Upgrade to gettext-0.12.1.
30794
30795 2003-05-30  Bruno Haible  <bruno@clisp.org>
30796
30797         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
30798         * lib/localcharset.h: Likewise.
30799         * lib/localcharset.c: Likewise.
30800
30801 2003-05-29  Karl Berry  <karl@gnu.org>
30802
30803         * config/config.rpath: update from gettext.
30804
30805 2003-05-28  Paul Eggert  <eggert@twinsun.com>
30806
30807         Assume the headers required for C89 freestanding compilers.
30808         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
30809         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
30810         * m4/human.m4 (gl_HUMAN): Likewise.
30811         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
30812         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
30813         * m4/userspec.m4 (gl_USERSPEC): Likewise.
30814         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
30815         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
30816         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
30817
30818 2003-05-28  Paul Eggert  <eggert@twinsun.com>
30819
30820         Assume the headers required for C89 freestanding compilers.
30821         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
30822         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
30823         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
30824         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
30825         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
30826         define, since <limits.h> is guaranteed to do that.
30827         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
30828         * lib/exclude.c: Include <stdbool.h> unconditionally.
30829         * lib/tempname.c: Include <stddef.h> unconditionally.
30830         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
30831         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
30832         <stddef.h> does that.
30833         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
30834         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
30835         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
30836         needed.
30837         * lib/xstrtol.c: Likewise.
30838         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
30839         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
30840
30841         * lib/addext.c (addext): Use assignment rather than cast, to avoid
30842         warnings on some platforms.
30843
30844         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
30845         arbitrarily.
30846
30847 2003-05-26  Jim Meyering  <jim@meyering.net>
30848
30849         Merge in a change from coreutils:
30850         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
30851         that is guaranteed to be `no'.  Use `no_such_member' to indicate
30852         that condition, rather than `-1' which is slightly misleading.
30853         Change the name of the cache variable to have the gl_ prefix.
30854         Prompted by a patch from Richard Dawe for DJGPP.
30855
30856 2003-05-24  Karl Berry  <karl@gnu.org>
30857
30858         * config/config.guess: update from prep.
30859
30860 2003-05-22  Karl Berry  <karl@gnu.org>
30861
30862         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
30863
30864 2003-05-20  Karl Berry  <karl@gnu.org>
30865
30866         * config/config.guess: update from prep.
30867
30868 2003-05-18  Karl Berry  <karl@gnu.org>
30869
30870         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
30871         might actually be set by the user.
30872
30873         * config/depcomp, install-sh, mdate-sh: update from automake.
30874
30875 2003-05-17  Bruno Haible  <bruno@clisp.org>
30876
30877         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
30878         invalid expansion for AC_EGREP_CPP.
30879         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
30880         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
30881         Suggested by Akim Demaille <akim@epita.fr> in
30882         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
30883
30884 2003-05-12  Jim Meyering  <jim@meyering.net>
30885
30886         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
30887         the space-padded-by-default conversion specifiers, %e, %k, %l.
30888
30889 2003-05-12  Bruno Haible  <bruno@clisp.org>
30890
30891         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
30892         the string is longer than 4 KB.
30893
30894 2003-05-11  Karl Berry  <karl@gnu.org>
30895
30896         * config/config.{guess,sub}: update from prep.
30897
30898 2003-05-09  Bruno Haible  <bruno@clisp.org>
30899
30900         * modules/error: Add m4/strerror_r.m4 to file list.
30901
30902 2003-05-03  Bruno Haible  <bruno@clisp.org>
30903
30904         Upgrade to Unicode-4.0.
30905         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
30906         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
30907         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
30908         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
30909         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
30910         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
30911         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
30912         Change width of U+E0100..U+E01EF from 1 to 0.
30913
30914 2003-04-25  Jim Meyering  <jim@meyering.net>
30915
30916         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
30917         of type size_t, not int.
30918
30919 2003-04-25  Bruno Haible  <bruno@clisp.org>
30920
30921         * lib/copy-file.c: Include <stddef.h>, for size_t.
30922
30923 2003-04-21  Paul Eggert  <eggert@twinsun.com>
30924
30925         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
30926         code which expansion is under static control.  Patch imported from
30927         Akim Demaille's patch to Bison; see
30928         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
30929
30930 2003-04-14  Bruno Haible  <bruno@clisp.org>
30931
30932         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
30933
30934 2003-04-11  Jim Meyering  <jim@meyering.net>
30935
30936         Merge changes from Coreutils.
30937
30938         2003-03-22  Jim Meyering  <jim@meyering.net>
30939
30940         * lib/strftime.c (widen): Cast alloca return value to proper type.
30941
30942         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
30943
30944         From GNU libc.
30945         * lib/strftime.c (my_strftime): Handle very large width
30946         specifications for numeric values correctly.  Improve checks for
30947         overflow.
30948
30949         2003-01-19  Jim Meyering  <jim@meyering.net>
30950
30951         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
30952         definitions.
30953         (nl_get_alt_digit) [! defined my_strftime]: Define.
30954         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
30955         _nl_get_alt_digit and _nl_get_walt_digit.
30956
30957         * lib/strftime.c (my_strftime): Merge in locale-related changes from
30958         libc. These changes have no effect outside of _LIBC.
30959
30960 2003-04-10  Bruno Haible  <bruno@clisp.org>
30961
30962         * modules/findprog: New file.
30963         * MODULES.html.sh (func_all_modules): Add it.
30964
30965 2003-04-10  Bruno Haible  <bruno@clisp.org>
30966
30967         * m4/findprog.m4: New file.
30968         * m4/eaccess.m4: New file.
30969
30970 2003-04-10  Bruno Haible  <bruno@clisp.org>
30971
30972         * lib/findprog.h: New file, from GNU gettext.
30973         * lib/findprog.c: New file, from GNU gettext.
30974
30975 2003-04-05  Jim Meyering  <jim@meyering.net>
30976
30977         Merge changes from Coreutils.
30978
30979         * lib/exclude.h (PARAMS): Remove definition and uses.
30980         * lib/exclude.c: Remove uses of `PARAMS'.
30981
30982         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
30983         Add test-cases for DOS filenames. Declare program_name.
30984         (main): Set up program_name.  Patch by Rich Dawe.
30985
30986         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
30987         error from mntctl.
30988         Use mntctl's return value to drive the entry-processing loop, since
30989         we can't rely on the value of the vmt_length member in the last
30990         entry.  On some systems doing so could result in exhausting
30991         virtual memory.  Based in part on a patch from Mike Jetzer.
30992
30993 2003-04-04  Bruno Haible  <bruno@clisp.org>
30994
30995         * modules/linebreak: New file.
30996         * MODULES.html.sh (func_all_modules): Add it.
30997
30998 2003-04-04  Bruno Haible  <bruno@clisp.org>
30999
31000         * m4/linebreak.m4: New file.
31001
31002 2003-04-04  Bruno Haible  <bruno@clisp.org>
31003
31004         * lib/linebreak.h: New file, from GNU gettext.
31005         * lib/linebreak.c: New file, from GNU gettext with slight
31006         modifications.
31007         * lib/lbrkprop.h: New file, from GNU gettext.
31008
31009 2003-04-03  Bruno Haible  <bruno@clisp.org>
31010
31011         * modules/utf8-ucs4: New file.
31012         * modules/utf16-ucs4: New file.
31013         * modules/ucs4-utf8: New file.
31014         * modules/ucs4-utf16: New file.
31015         * MODULES.html.sh (func_all_modules): Add them.
31016
31017 2003-04-03  Bruno Haible  <bruno@clisp.org>
31018
31019         * m4/utf-ucs4.m4: New file.
31020         * m4/ucs4-utf.m4: New file.
31021
31022 2003-04-03  Bruno Haible  <bruno@clisp.org>
31023
31024         * lib/utf8-ucs4.h: New file, from GNU gettext.
31025         * lib/utf16-ucs4.h: New file, from GNU gettext.
31026         * lib/ucs4-utf8.h: New file, from GNU gettext.
31027         * lib/ucs4-utf16.h: New file, from GNU gettext.
31028
31029 2003-04-02  Bruno Haible  <bruno@clisp.org>
31030
31031         * modules/binary-io: New file.
31032         * MODULES.html.sh (func_all_modules): Add it.
31033
31034 2003-04-02  Bruno Haible  <bruno@clisp.org>
31035
31036         * lib/binary-io.h: New file, from GNU gettext.
31037
31038 2003-04-01  Bruno Haible  <bruno@clisp.org>
31039
31040         * modules/pathname: New file.
31041         * MODULES.html.sh (func_all_modules): Add it.
31042
31043 2003-04-01  Bruno Haible  <bruno@clisp.org>
31044
31045         * lib/pathname.h: New file, from GNU gettext.
31046         * lib/concatpath.c: New file, from GNU gettext.
31047
31048 2003-03-30  Bruno Haible  <bruno@clisp.org>
31049
31050         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
31051
31052 2003-03-30  Bruno Haible  <bruno@clisp.org>
31053
31054         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
31055         function chown() doesn't exist.
31056
31057 2003-03-28  Bruno Haible  <bruno@clisp.org>
31058
31059         * modules/copy-file: New file.
31060         * MODULES.html.sh (func_all_modules): Add it.
31061
31062 2003-03-28  Bruno Haible  <bruno@clisp.org>
31063
31064         * m4/copy-file.m4: New file.
31065
31066 2003-03-28  Bruno Haible  <bruno@clisp.org>
31067
31068         * lib/copy-file.h: New file, from GNU gettext.
31069         * lib/copy-file.c: New file, from GNU gettext.
31070
31071 2003-03-18  Jim Meyering  <jim@meyering.net>
31072
31073         * lib/quote.c (quote_n): Fix typo in comment.
31074
31075 2003-03-18  Bruno Haible  <bruno@clisp.org>
31076
31077         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
31078         checking.
31079         * m4/onceonly_2_57.m4: Likewise.
31080
31081 2003-03-17  Bruno Haible  <bruno@clisp.org>
31082
31083         * m4/onceonly.m4: Require autoconf 2.54 or newer.
31084         (m4_quote): Remove macro.
31085         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
31086
31087 2003-03-14  Jim Meyering  <jim@meyering.net>
31088
31089         Merge changes from Coreutils.
31090         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
31091         to be const, in order to avoid warnings.
31092         (obstack_room): Likewise.
31093         (obstack_empty_p): Likewise.
31094
31095 2003-03-14  Bruno Haible  <bruno@clisp.org>
31096
31097         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
31098         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
31099
31100 2003-03-13  Paul Eggert  <eggert@twinsun.com>
31101
31102         Merge changes from Bison.
31103         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
31104         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
31105         when compiling Bison 1.875's `bitset bset = obstack_alloc
31106         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
31107         * lib/hash.c: Include <stdbool.h> unconditionally.
31108
31109 2003-03-13  Paul Eggert  <eggert@twinsun.com>
31110
31111         * m4/onceonly.m4 (m4_quote): New macro.
31112         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
31113         Quote AC_FOREACH variable-expansions properly.
31114
31115 2003-03-13  Paul Eggert  <eggert@twinsun.com>
31116
31117         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
31118
31119 2003-03-09  Paul Eggert  <eggert@twinsun.com>
31120
31121         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
31122         Reported by Bruce Becker; see:
31123         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
31124
31125 2003-03-03  Paul Eggert  <eggert@twinsun.com>
31126             Bruno Haible  <bruno@clisp.org>
31127
31128         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
31129         Reported by John Hughes, see
31130         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
31131
31132 2003-02-20  Bruno Haible  <bruno@clisp.org>
31133
31134         * MODULES.html.sh (func_all_modules): Add poll.
31135
31136 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
31137
31138         * modules/poll: New file.
31139
31140 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
31141
31142         * lib/poll_.h: New file.
31143         * lib/poll.c: New file.
31144
31145 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
31146
31147         * m4/poll.m4: New file.
31148
31149 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
31150
31151         * modules/mathl: New file.
31152
31153 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
31154
31155         * lib/mathl.h: New file.
31156         * lib/acosl.c: New file.
31157         * lib/asinl.c: New file.
31158         * lib/atanl.c: New file.
31159         * lib/ceill.c: New file.
31160         * lib/cosl.c: New file.
31161         * lib/expl.c: New file.
31162         * lib/floorl.c: New file.
31163         * lib/frexpl.c: New file.
31164         * lib/ldexpl.c: New file.
31165         * lib/logl.c: New file.
31166         * lib/sincosl.c: New file.
31167         * lib/sinl.c: New file.
31168         * lib/sqrtl.c: New file.
31169         * lib/tanl.c: New file.
31170         * lib/trigl.c: New file.
31171         * lib/trigl.h: New file.
31172
31173 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
31174
31175         * m4/mathl.m4: New file.
31176
31177 2003-02-18  Bruno Haible  <bruno@clisp.org>
31178
31179         * MODULES.html.sh (func_all_modules): Add mathl.
31180
31181 2003-02-17  Bruno Haible  <bruno@clisp.org>
31182
31183         * modules/mkdtemp: New module.
31184         * MODULES.html.sh (func_all_modules): Add it.
31185
31186 2003-02-17  Bruno Haible  <bruno@clisp.org>
31187
31188         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
31189
31190 2003-02-17  Bruno Haible  <bruno@clisp.org>
31191
31192         * lib/mkdtemp.h: New file, from GNU gettext.
31193         * lib/mkdtemp.c: New file, from GNU gettext.
31194
31195 2003-02-02  Jim Meyering  <jim@meyering.net>
31196
31197         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
31198         e.g. glibc-2.2.93.
31199
31200 2003-01-31  Bruno Haible  <bruno@clisp.org>
31201
31202         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
31203         'rpl_rename'.
31204         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
31205         'rpl_strnlen'.
31206         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
31207         'rpl_strtod'.
31208         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
31209         'rpl_utime'.
31210
31211 2003-01-31  Bruno Haible  <bruno@clisp.org>
31212
31213         * lib/rename.c: #undef rename before defining rpl_rename.
31214         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
31215
31216 2003-01-30  Bruno Haible  <bruno@clisp.org>
31217
31218         * modules/vasnprintf, modules/vasprintf: New modules.
31219         * MODULES.html.sh (func_all_modules): Add them.
31220
31221 2003-01-30  Bruno Haible  <bruno@clisp.org>
31222
31223         * m4/signed.m4: New file, from GNU gettext.
31224         * m4/longdouble.m4: New file, from GNU gettext.
31225         * m4/wchar_t.m4: New file, from GNU gettext.
31226         * m4/wint_t.m4: New file, from GNU gettext.
31227         * m4/vasnprintf.m4: New file.
31228         * m4/vasprintf.m4: New file.
31229
31230 2003-01-30  Bruno Haible  <bruno@clisp.org>
31231
31232         * lib/printf-args.h: New file, from GNU gettext.
31233         * lib/printf-args.c: New file, from GNU gettext.
31234         * lib/printf-parse.h: New file, from GNU gettext.
31235         * lib/printf-parse.c: New file, from GNU gettext.
31236         * lib/vasnprintf.h: New file, from GNU gettext.
31237         * lib/vasnprintf.c: New file, from GNU gettext.
31238         * lib/asnprintf.c: New file, from GNU gettext.
31239         * lib/vasprintf.h: New file, from GNU gettext with modifications.
31240         * lib/vasprintf.c: New file, from GNU gettext.
31241         * lib/asprintf.c: New file, from GNU gettext.
31242
31243 2003-01-29  Bruno Haible  <bruno@clisp.org>
31244
31245         * modules/stpncpy: New module.
31246         * MODULES.html.sh (func_all_modules): Add it.
31247
31248 2003-01-29  Bruno Haible  <bruno@clisp.org>
31249
31250         * m4/stpncpy.m4: New file.
31251
31252 2003-01-29  Bruno Haible  <bruno@clisp.org>
31253
31254         * lib/stpncpy.h: New file, from GNU gettext with modifications.
31255         * lib/stpncpy.c: New file, from GNU gettext with modifications.
31256
31257 2003-01-28  Bruno Haible  <bruno@clisp.org>
31258
31259         * modules/c-ctype: New module.
31260         * MODULES.html.sh (func_all_modules): Add it.
31261
31262 2003-01-28  Bruno Haible  <bruno@clisp.org>
31263
31264         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
31265         Paul Eggert.
31266         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
31267         Paul Eggert.
31268
31269 2003-01-27  Bruno Haible  <bruno@clisp.org>
31270
31271         * modules/xsetenv: New module.
31272         * MODULES.html.sh (func_all_modules): Add it.
31273
31274 2003-01-27  Bruno Haible  <bruno@clisp.org>
31275
31276         * lib/xsetenv.h: New file, from GNU gettext.
31277         * lib/xsetenv.c: New file, from GNU gettext.
31278
31279 2003-01-23  Jim Meyering  <jim@meyering.net>
31280
31281         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
31282         from working on systems without dirfd (at least Irix and OSF1/Tru64).
31283
31284 2003-01-23  Bruno Haible  <bruno@clisp.org>
31285
31286         * modules/minmax: New module.
31287         * MODULES.html.sh (func_all_modules): Add it.
31288
31289 2003-01-23  Bruno Haible  <bruno@clisp.org>
31290
31291         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
31292         Eggert.
31293
31294 2003-01-22  Bruno Haible  <bruno@clisp.org>
31295
31296         * modules/exit: New module.
31297         * MODULES.html.sh (func_all_modules): Add it.
31298
31299 2003-01-22  Bruno Haible  <bruno@clisp.org>
31300
31301         * lib/exit.h: New file, from GNU gettext.
31302
31303 2003-01-19  Bruno Haible  <bruno@clisp.org>
31304
31305         * gnulib-tool: Recognize option --extract-maintainer.
31306         (func_get_maintainer): New function.
31307         * modules/*: Add Maintainer entry.
31308
31309 2003-01-16  Jim Meyering  <jim@meyering.net>
31310
31311         * m4/regex.m4: The `regex' struct is both input and output.
31312         Initialize it before each use.  Patch by Tim Waugh.
31313
31314 2003-01-16  Bruno Haible  <bruno@clisp.org>
31315
31316         * MODULES.html.sh: Add a table of contents. Add the module name as
31317         leftmost column. Add hyperlinks.
31318
31319 2003-01-15  Bruno Haible  <bruno@clisp.org>
31320
31321         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
31322
31323 2003-01-15  Bruno Haible  <bruno@clisp.org>
31324
31325         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
31326         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
31327         suffix.
31328
31329 2003-01-15  Bruno Haible  <bruno@clisp.org>
31330
31331         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
31332
31333 2003-01-15  Bruno Haible  <bruno@clisp.org>
31334
31335         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
31336         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
31337
31338 2003-01-14  Jim Meyering  <jim@meyering.net>
31339
31340         * lib/same.c (same_name): Tweak a comment.
31341
31342 2003-01-14  Bruno Haible  <bruno@clisp.org>
31343
31344         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
31345         when a string comparison is sufficient.
31346
31347 2003-01-14  Bruno Haible  <bruno@clisp.org>
31348
31349         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
31350         'unsigned int'.
31351
31352 2003-01-14  Bruno Haible  <bruno@clisp.org>
31353
31354         * lib/hash-pjw.c: Add comment about low quality of this function.
31355
31356 2003-01-13  Bruno Haible  <bruno@clisp.org>
31357
31358         * modules/stpcpy: Distribute lib/stpcpy.h.
31359         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
31360
31361 2003-01-13  Bruno Haible  <bruno@clisp.org>
31362
31363         * modules/*: Add a description.
31364         * modules/strpbrk: Fix Makefile.am snippet.
31365         * modules/strtoimax: Fix dependencies.
31366         * modules/strtoumax: Likewise.
31367
31368 2003-01-13  Bruno Haible  <bruno@clisp.org>
31369
31370         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
31371         * modules/alloca (Makefile.am): All object files depend on alloca.h.
31372         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
31373
31374 2003-01-13  Bruno Haible  <bruno@clisp.org>
31375
31376         * gnulib-tool (func_create_testdir): Store config/* files in the main
31377         directory.
31378         * config.rpath: Move to ...
31379         * config/config.rpath: ... here.
31380         * modules/gettext: Contains config/config.rpath, not config.rpath.
31381         * modules/iconv: Likewise.
31382
31383 2003-01-12  Paul Eggert  <eggert@twinsun.com>
31384
31385         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
31386         to avoid collisions with libcurses and libreadline.
31387
31388         * m4/getstr.m4: Remove.
31389         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
31390
31391 2003-01-12  Paul Eggert  <eggert@twinsun.com>
31392
31393         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
31394         to avoid collisions with libcurses and libreadline.
31395
31396         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
31397         * lib/getstr.h, getstr.c: Remove.
31398         * lib/getline.c: Include "getline.h", to check interface.
31399         Move body of old getstr.c here: this defines MIN_CHUNK and
31400         declares getdelim2, which is renamed from getstr.
31401         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
31402
31403         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
31404         All uses changed.
31405         * lib/linebuffer.h: Likewise.
31406         (readline): Remove backward-compatibility macro.
31407
31408 2003-01-12  Paul Eggert  <eggert@twinsun.com>
31409
31410         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
31411         to avoid collisions with libcurses and libreadline.
31412         * getstr: Remove.
31413         * MODULES.html.sh: Remove getstr.
31414         * modules/getline: Depend on unlocked-io, not getstr.
31415
31416 2003-01-12  Jim Meyering  <jim@meyering.net>
31417
31418         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
31419
31420 2003-01-10  Bruno Haible  <bruno@clisp.org>
31421
31422         * modules/alloca: Change Makefile.am requirements. Simplify Include
31423         requirements. Add lib/alloca_.h to file list.
31424
31425 2003-01-10  Bruno Haible  <bruno@clisp.org>
31426
31427         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
31428
31429 2003-01-10  Bruno Haible  <bruno@clisp.org>
31430
31431         * lib/alloca_.h: New file.
31432         * lib/getdate.y: Unconditionally include alloca.h.
31433         * lib/makepath.c: Likewise.
31434         * lib/setenv.c: Likewise.
31435         * lib/userspec.c: Likewise.
31436
31437 2003-01-09  Karl Berry  <karl@gnu.org>
31438
31439         * MODULES.html.sh: include `dirname $0` in PATH, to find
31440         gnulib-tool.
31441
31442 2003-01-09  Bruno Haible  <bruno@clisp.org>
31443
31444         * modules/stdbool: Change configure.ac, Makefile.am requirements.
31445         Simplify Include requirements. Add lib/stdbool.h.in to file list.
31446
31447 2003-01-09  Bruno Haible  <bruno@clisp.org>
31448
31449         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
31450
31451 2003-01-09  Bruno Haible  <bruno@clisp.org>
31452
31453         * lib/stdbool.h.in: New file.
31454
31455 2003-01-09  Bruno Haible  <bruno@clisp.org>
31456
31457         * gnulib-tool (func_all_modules): Ignore files ending in ~.
31458         * MODULES.html.sh: Likewise.
31459
31460 2003-01-08  Jim Meyering  <jim@meyering.net>
31461
31462         * lib/full-write.c: Undefine and define-away `const' after inclusion
31463         of errno.h, not before.  Suggestion from Bruno Haible.
31464
31465 2003-01-08  Bruno Haible  <bruno@clisp.org>
31466
31467         * modules/full-read: Depend on full-write.
31468
31469 2003-01-08  Bruno Haible  <bruno@clisp.org>
31470
31471         * lib/safe-read.c: Include specification header first, to ensure its
31472         selfcontainedness.
31473         * lib/full-write.c: Likewise.
31474
31475 2003-01-07  Jim Meyering  <jim@meyering.net>
31476
31477         * lib/full-write.c: Rework so that it may serve to define full_read,
31478         too.
31479         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
31480
31481 2003-01-07  Bruno Haible  <bruno@clisp.org>
31482
31483         * lib/strtoimax.c: Include <stdint.h> as an alternative to
31484         <inttypes.h>.
31485         * lib/xstrtol.h: Likewise.
31486         * lib/xstrtoimax.c: Likewise.
31487         * lib/xstrtoumax.c: Likewise.
31488         * lib/human.h: Likewise.
31489
31490         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
31491         on systems that have <inttypes.h> but not <stdint.h>.
31492
31493 2003-01-07  Bruno Haible  <bruno@clisp.org>
31494
31495         * MODULES.html.sh: Add copyright notice.
31496         (missed_files): Omit CVS directory entries.
31497         (func_module): Make it work with sed-3.02.
31498         * MODULES.txt: Remove file.
31499
31500 2003-01-06  Jim Meyering  <jim@meyering.net>
31501
31502         * lib/version-etc.c: Update year in translatable copyright string.
31503
31504 2003-01-03  Karl Berry  <karl@gnu.org>
31505
31506         * config/config.{guess,sub}: update from prep.
31507
31508 2003-01-02  Karl Berry  <karl@gnu.org>
31509
31510         * doc/COPYING.DOC: belatedly updated to 1.2.
31511
31512 2003-01-01  Karl Berry  <karl@gnu.org>
31513
31514         * gnulib-tool (func_verify_module): report module name $module in
31515         error message, not $1.
31516         * gnulib-tool (create-testdir): don't complain if destdir couldn't
31517         be created, only if it doesn't exist.
31518         * gnulib-tool (last_checkin_date): don't expand the $Date here.
31519
31520 2002-12-31  Paul Eggert  <eggert@twinsun.com>
31521
31522         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
31523
31524 2002-12-31  Paul Eggert  <eggert@twinsun.com>
31525
31526         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
31527         memcmp if strcoll doesn't work.
31528
31529 2002-12-31  Bruno Haible  <bruno@clisp.org>
31530
31531         * lib/utime.c (utime_null): No need to call ftruncate if the file was
31532         nonempty.
31533
31534 2002-12-31  Bruno Haible  <bruno@clisp.org>
31535
31536         * lib/memcoll.c (STRCOLL): New macro.
31537         (memcoll): Use it.
31538
31539 2002-12-31  Bruno Haible  <bruno@clisp.org>
31540
31541         * lib/localcharset.h: New file.
31542         * lib/localcharset.c: Include it.
31543         * lib/unicodeio.c: Likewise.
31544
31545 2002-12-31  Bruno Haible  <bruno@clisp.org>
31546
31547         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
31548         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
31549
31550 2002-12-31  Bruno Haible  <bruno@clisp.org>
31551
31552         * lib/getline.h: Include <stddef.h>, for size_t.
31553
31554         * lib/unicodeio.h: Include <stddef.h>, for size_t.
31555         * lib/unicodeio.c: Don't include <stddef.h>.
31556
31557 2002-12-31  Bruno Haible  <bruno@clisp.org>
31558
31559         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
31560         HAVE_TM_ZONE.
31561
31562 2002-12-24  Karl Berry  <karl@gnu.org>
31563
31564         * config/config.guess: update from prep.
31565
31566 2002-12-24  Bruno Haible  <bruno@clisp.org>
31567
31568         General infrasructure.
31569         * m4/README: Rewritten.
31570         * m4/onceonly.m4: New file.
31571         * m4/onceonly_2_57.m4: New file.
31572
31573         Module atexit.
31574         * m4/atexit.m4: New file.
31575
31576         Module strtod.
31577         * m4/strtod.m4: New file.
31578
31579         Module strtol.
31580         * m4/strtol.m4: New file.
31581
31582         Module strtoul.
31583         * m4/strtoul.m4: New file.
31584
31585         Module memchr.
31586         * m4/memchr.m4: New file.
31587
31588         Module memcmp.
31589         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
31590         (jm_FUNC_MEMCMP): Invoke it.
31591
31592         Module memcpy.
31593         * m4/memcpy.m4: New file.
31594
31595         Module memmove.
31596         * m4/memmove.m4: New file.
31597
31598         Module memset.
31599         * m4/memset.m4: New file.
31600
31601         Module strcspn.
31602         * m4/strcspn.m4: New file.
31603
31604         Module strpbrk.
31605         * m4/strpbrk.m4: New file.
31606
31607         Module strstr.
31608         * m4/strstr.m4: New file.
31609
31610         Module strerror.
31611         * m4/strerror.m4: New file.
31612
31613         Module mktime.
31614         * m4/mktime.m4: Renamed from jm-mktime.m4.
31615         (gl_PREREQ_MKTIME): New macro.
31616         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
31617
31618         Module malloc.
31619         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
31620         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
31621         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
31622
31623         Module realloc.
31624         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
31625         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
31626         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
31627
31628         Module strftime.
31629         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
31630         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
31631         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
31632         gl_TM_GMTOFF.
31633         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
31634
31635         Module xalloc.
31636         * m4/xalloc.m4: New file.
31637
31638         Module alloca.
31639         * m4/alloca.m4: New file.
31640
31641         Module putenv.
31642         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
31643         (jm_FUNC_PUTENV): Invoke it.
31644
31645         Module setenv.
31646         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
31647         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
31648         when invoked twice.
31649         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
31650         gt_FUNC_SETENV.
31651
31652         Module memrchr.
31653         * m4/memrchr.m4: New file.
31654
31655         Module stpcpy.
31656         * m4/stpcpy.m4: New file.
31657
31658         Module strcase.
31659         * m4/strcase.m4: New file.
31660
31661         Module strdup.
31662         * m4/strdup.m4: New file.
31663
31664         Module strnlen.
31665         * m4/strnlen.m4: New file.
31666
31667         Module strndup.
31668         * m4/strndup.m4: New file.
31669
31670         Module xstrtod.
31671         * m4/xstrtod.m4: New file.
31672
31673         Module xstrtol.
31674         * m4/xstrtol.m4: New file.
31675
31676         Module getdate.
31677         * m4/getdate.m4: New file.
31678
31679         Module unlocked-io.
31680         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
31681         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
31682         * m4/jm-glibc-io.m4n: Remove file.
31683
31684         Module long-options.
31685         * m4/long-options.m4: New file.
31686
31687         Module md5.
31688         * m4/md5.m4: New file.
31689
31690         Module sha.
31691         * m4/sha.m4: New file.
31692
31693         Module getstr.
31694         * m4/getstr.m4: New file.
31695
31696         Module getline.
31697         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
31698         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
31699         <sys/types.h>, for size_t. Use the function name gnu_getline, not
31700         simply getline. Infoke gl_PREREQ_GETLINE.
31701
31702         Module obstack.
31703         * m4/obstack.m4: New file.
31704
31705         Module hash.
31706         * m4/hash.m4: New file.
31707
31708         Module readtokens.
31709         * m4/readtokens.m4: New file.
31710
31711         Module strverscmp.
31712         * m4/strverscmp.m4: New file.
31713
31714         Module stdbool.
31715         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
31716         OSF/1.
31717
31718         Module strtoll.
31719         * m4/strtoll.m4: New file.
31720
31721         Module strtoull.
31722         * m4/strtoull.m4: New file.
31723
31724         Module strtoimax.
31725         * m4/strtoimax.m4: New file.
31726
31727         Module strtoumax.
31728         * m4/strtoumax.m4: New file.
31729
31730         Module xstrtoimax.
31731         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
31732         jm_AC_PREREQ_XSTRTOIMAX.
31733         Moved the strtol prerequisites to strtol.m4.
31734         Moved the strtoll prerequisites to strtoll.m4.
31735         Moved the strtoimax prerequisites to strtoimax.m4.
31736
31737         Module xstrtoumax.
31738         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
31739         jm_AC_PREREQ_XSTRTOUMAX.
31740         Moved the strtoul prerequisites to strtoul.m4.
31741         Moved the strtoull prerequisites to strtoull.m4.
31742         Moved the strtoumax prerequisites to strtoumax.m4.
31743
31744         Module chown.
31745         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
31746         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
31747
31748         Module dup2.
31749         * m4/dup2.m4: New file.
31750
31751         Module ftruncate.
31752         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
31753         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
31754
31755         Module getgroups.
31756         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
31757         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
31758
31759         Module gettimeofday.
31760         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
31761         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
31762         gl_PREREQ_GETTIMEOFDAY.
31763
31764         Module mkdir.
31765         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
31766         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
31767
31768         Module mkstemp.
31769         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
31770         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
31771         jm_AC_TYPE_UINTMAX_T.
31772         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
31773
31774         Module stat.
31775         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
31776         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
31777
31778         Module lstat.
31779         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
31780         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
31781
31782         Module timespec.
31783         * m4/timespec.m4 (gl_TIMESPEC): New macro.
31784         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
31785         * m4/st_mtim.m4: Indentation.
31786
31787         Module nanosleep.
31788         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
31789         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
31790         gl_PREREQ_NANOSLEEP.
31791
31792         Module regex.
31793         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
31794         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
31795         (gl_REGEX): New macro.
31796
31797         Module rename.
31798         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
31799         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
31800
31801         Module rmdir.
31802         * m4/rmdir.m4: New file.
31803
31804         Module utime.
31805         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
31806         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
31807         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
31808
31809         Module dirname.
31810         * m4/dirname.m4: New file.
31811
31812         Module getopt.
31813         * m4/getopt.m4: New file.
31814
31815         Module unistd-safer.
31816         * m4/unistd-safer.m4: New file.
31817
31818         Module fnmatch.
31819         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
31820         declaration.
31821         (gl_PREREQ_FNMATCH_EXTRA): New macro.
31822         (gl_FUNC_FNMATCH_POSIX): New macro.
31823         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
31824         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
31825         simply fnmatch.
31826
31827         Module exclude.
31828         * m4/exclude.m4: New file.
31829
31830         Module human.
31831         * m4/human.m4: New file.
31832
31833         Module acl.
31834         * m4/acl.m4: Nop.
31835
31836         Module backupfile.
31837         * m4/backupfile.m4: New file.
31838         * m4/d-ino.m4: Indentation.
31839
31840         Module fsusage.
31841         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
31842         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
31843         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
31844
31845         Module dirfd.
31846         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
31847         requirements.
31848
31849         Module euidaccess.
31850         * m4/euidaccess.m4: New file.
31851
31852         Module file-type.
31853         * m4/file-type.m4: New file.
31854
31855         Module fileblocks.
31856         * m4/fileblocks.m4: New file.
31857
31858         Module filemode.
31859         * m4/filemode.m4: New file.
31860
31861         Module isdir.
31862         * m4/isdir.m4: New file.
31863
31864         Module lchown.
31865         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
31866         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
31867
31868         Module makepath.
31869         * m4/makepath.m4: New file.
31870
31871         Module modechange.
31872         * m4/modechange.m4: New file.
31873
31874         Module mountlist.
31875         * m4/mountlist.m4: New file.
31876         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
31877         Indentation.
31878
31879         Module path-concat.
31880         * m4/path-concat.m4: New file.
31881
31882         Module pathmax.
31883         * m4/pathmax.m4: New file.
31884
31885         Module same.
31886         * m4/same.m4: New file.
31887
31888         Module save-cwd.
31889         * m4/save-cwd.m4: New file.
31890
31891         Module savedir.
31892         * m4/savedir.m4: New file.
31893
31894         Module xgetcwd.
31895         * m4/xgetcwd.m4: New file.
31896         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
31897
31898         Module xreadlink.
31899         * m4/xreadlink.m4: New file.
31900
31901         Module safe-read.
31902         * m4/safe-read.m4: New file.
31903
31904         Module safe-write.
31905         * m4/safe-write.m4: New file.
31906
31907         Module closeout.
31908         * m4/closeout.m4: New file.
31909
31910         Module stdio-safer.
31911         * m4/stdio-safer.m4: New file.
31912
31913         Module getpass.
31914         * m4/getpass.m4: New file.
31915
31916         Module getugroups.
31917         * m4/getugroups.m4: New file.
31918
31919         Module group-member.
31920         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
31921         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
31922
31923         Module idcache.
31924         * m4/idcache.m4: New file.
31925
31926         Module userspec.
31927         * m4/userspec.m4: New file.
31928
31929         Module gettime.
31930         * m4/clock_time.m4: New file.
31931         * m4/gettime.m4: New file.
31932
31933         Module settime.
31934         * m4/settime.m4: New file.
31935
31936         Module posixtm.
31937         * m4/posixtm.m4: New file.
31938
31939         Module gethostname.
31940         * m4/gethostname.m4: New file.
31941
31942         Module canon-host.
31943         * m4/canon-host.m4: New file.
31944
31945         Module gettext.
31946         * m4/codeset.m4: New file, from gettext-0.11.5.
31947         * m4/gettext.m4: New file, from gettext-0.11.5.
31948         * m4/glibc21.m4: New file, from gettext-0.11.5.
31949         * m4/iconv.m4: New file, from gettext-0.11.5.
31950         * m4/intdiv0.m4: New file, from gettext-0.11.5.
31951         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
31952         * m4/inttypes.m4: New file, from gettext-0.11.5.
31953         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
31954         * m4/isc-posix.m4: New file, from gettext-0.11.5.
31955         * m4/lcmessage.m4: New file, from gettext-0.11.5.
31956         * m4/lib-ld.m4: New file, from gettext-0.11.5.
31957         * m4/lib-link.m4: New file, from gettext-0.11.5.
31958         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
31959         * m4/progtest.m4: New file, from gettext-0.11.5.
31960         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
31961         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
31962         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
31963
31964         Module localcharset.
31965         * m4/localcharset.m4: New file.
31966
31967         Module hard-locale.
31968         * m4/hard-locale.m4: New file.
31969
31970         Module mbswidth.
31971         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
31972         onceonly macros.
31973         * m4/mbrtowc.m4: Add comment.
31974
31975         Module memcasecmp.
31976         * m4/memcasecmp.m4: New file.
31977
31978         Module memcoll.
31979         * m4/memcoll.m4: New file.
31980
31981         Module unicodeio.
31982         * m4/unicodeio.m4: New file.
31983
31984         Module rpmatch.
31985         * m4/rpmatch.m4: New file.
31986
31987         Module yesno.
31988         * m4/yesno.m4: New file.
31989
31990         Module exitfail.
31991         * m4/exitfail.m4: New file.
31992
31993         Module c-stack.
31994         * m4/c-stack.m4 (gl_C_STACK): New macro.
31995         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
31996
31997         Module error.
31998         * m4/error.m4 (gl_ERROR): New macro.
31999         (jm_PREREQ_ERROR): Use onceonly macros.
32000
32001         Module fatal.
32002         * m4/fatal.m4: New file.
32003
32004         Module getloadavg.
32005         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
32006         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
32007
32008         Module getpagesize.
32009         * m4/getpagesize.m4: New file.
32010
32011         Module getusershell.
32012         * m4/getusershell.m4: New file.
32013
32014         Module physmem.
32015         * m4/physmem.m4: New file.
32016
32017         Module posixver.
32018         * m4/posixver.m4: New file.
32019
32020         Module quotearg.
32021         * m4/quotearg.m4: New file.
32022
32023         Module quote.
32024         * m4/quote.m4: New file.
32025
32026         Module readutmp.
32027         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
32028
32029         Module sig2str.
32030         * m4/sig2str.m4: New file.
32031
32032         Other.
32033         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
32034         ulonglong.m4.
32035         * m4/intmax_t.m4: New file.
32036         * m4/d-type.m4: Indentation.
32037         * m4/jm-macros.m4: Update.
32038         * m4/prereq.m4 (jm_PREREQ): Update.
32039         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
32040         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
32041         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
32042         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
32043         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
32044         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
32045         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
32046         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
32047         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
32048         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
32049         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
32050         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
32051         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
32052         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
32053         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
32054         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
32055         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
32056         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
32057         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
32058
32059 2002-12-24  Bruno Haible  <bruno@clisp.org>
32060
32061         * MODULES.txt: Update according to m4/ changes.
32062
32063         Module gettext.
32064         * config.rpath: New file, from gettext-0.11.5.
32065
32066         * modules/*: New module descriptions.
32067         * gnulib-tool: New file.
32068         * MODULES.html.sh: New file.
32069
32070 2002-12-21  Karl Berry  <karl@gnu.org>
32071
32072         * doc/fdl.texi: update to version 1.2.
32073
32074 2002-12-19  Karl Berry  <karl@gnu.org>
32075
32076         * config/config.guess: update from prep.
32077
32078 2002-12-18  Bruno Haible  <bruno@clisp.org>
32079
32080         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
32081         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
32082
32083 2002-12-17  Bruno Haible  <bruno@clisp.org>
32084
32085         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
32086         stdlib.h, string.h.
32087
32088 2002-12-17  Bruno Haible  <bruno@clisp.org>
32089
32090         * lib/canon-host.c (strdup): Remove unused declaration.
32091
32092         * lib/fsusage.c: Include full_read.h.
32093         (get_fs_usage): Use full_read instead of safe_read.
32094
32095         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
32096
32097 2002-12-12  Karl Berry  <karl@gnu.org>
32098
32099         * config/config.guess: update from prep.
32100
32101 2002-12-11  Bruno Haible  <bruno@clisp.org>
32102
32103         * m4/setenv.m4: New file, from gettext-0.11.5.
32104
32105 2002-12-11  Bruno Haible  <bruno@clisp.org>
32106
32107         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
32108         not unsetenv().
32109         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
32110         modifications:
32111
32112         2002-12-11  Bruno Haible  <bruno@clisp.org>
32113
32114                 * setenv.c (alloca): Fall back to malloc.
32115                 (freea): New macro.
32116                 (setenv): Use freea() to free memory allocated with alloca().
32117
32118         2002-11-13  Bruno Haible  <bruno@clisp.org>
32119
32120                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
32121                 function declarations.
32122                 * unsetenv.c (unsetenv): Likewise.
32123
32124         2002-03-04  Bruno Haible  <bruno@clisp.org>
32125
32126                 Portability to AIX 4.3.3.
32127                 * unsetenv.c: New file, extracted from setenv.c.
32128                 * setenv.c: Move the unsetenv() function to unsetenv.c.
32129
32130         2001-12-20  Bruno Haible  <bruno@clisp.org>
32131
32132                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
32133                 use malloc instead. For SunOS 4.
32134
32135         2001-12-11  Bruno Haible  <bruno@clisp.org>
32136
32137                 * setenv.c: Declare alloca.
32138                 (compar_fn_t): New typedef.
32139                 (KNOWN_VALUE, STORE_VALUE): Use it.
32140
32141         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
32142         setenv.h.
32143
32144 2002-12-10  Paul Eggert  <eggert@twinsun.com>
32145
32146         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
32147         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
32148         Choose values that are less likely to collide with system fnmatch
32149         options.
32150         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
32151         defined (e.g., a pure POSIX system).
32152         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
32153         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
32154
32155 2002-12-06  Paul Eggert  <eggert@twinsun.com>
32156
32157         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
32158         a pain in practice to deal with generated m4 files.  This change
32159         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
32160
32161         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
32162         and jm-glibc-io.m4, as they are no longer a special case.
32163         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
32164         kludge and the auto-generation stuff.  Check only whether the
32165         functions are declared, not whether they exist, since older hosts
32166         that don't declare the functions can't use the optimization anyway.
32167
32168 2002-12-06  Jim Meyering  <jim@meyering.net>
32169
32170         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
32171
32172         Merge in changes from libc's misc/error.c, in preparation
32173         for the merge of gnulib's changes back into libc.
32174
32175         * lib/error.c (_): Define only if not already defined.
32176         Move definition to follow all #include directives.
32177         Include unlocked-io.h only if !_LIBC.
32178         [_LIBC]: Include <libio/libioP.h>.
32179         [USE_IN_LIBIO]: Include <libio/iolibio.h>
32180         (fflush): Tweak definition to use INTUSE.
32181         (putc): Define.
32182
32183 2002-12-05  Paul Eggert  <eggert@twinsun.com>
32184
32185         * lib/alloca.c [defined emacs]: Include "lisp.h".
32186         (xalloc_die) [defined emacs]: New macro.
32187         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
32188         [! defined emacs]: Include <xalloc.h>.
32189         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
32190         (pointer): Typedef to POINTER_TYPE *.
32191         (malloc): Remove decl; we now always use xmalloc.
32192         (alloca): Use old-style definition, since Emacs needs this.
32193         Check for arithmetic overflow when computing combined size.
32194
32195 2002-12-04  Paul Eggert  <eggert@twinsun.com>
32196
32197         Do not generate unlocked-io.h automatically, since it's easier to
32198         maintain it by hand.
32199
32200         * lib/unlocked-io.h: New file, from GNU diffutils,
32201         but with proper copyright notice and attribution.
32202         * lib/gen-uio: Remove.
32203         * lib/Makefile.am: Add copyright notice.
32204         (libfetish_a_SOURCES): Add unlocked-io.h.
32205         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
32206         (DISTCLEANFILES, io_functions): Remove macros.
32207         (EXTRA_DIST): Remove gen_uio.
32208         (unlocked-io.h): Remove rule.
32209
32210 2002-12-04  Jim Meyering  <jim@meyering.net>
32211
32212         Reflect the fact that stat.c and lstat.c are no longer generated.
32213         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
32214         (DISTCLEANFILES): Likewise.
32215         (EXTRA_DIST): Likewise.
32216         (all_local): Don't depend on stat.c or lstat.c.
32217         (stat.c, lstat.c): Remove rules.
32218         (EXTRA_DIST): Remove xstat.in.
32219
32220         * lib/xstat.in: Remove file.  Contents moved into stat.c.
32221         * lib/stat.c: New file.  Contents mostly from xstat.in.
32222         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
32223         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
32224
32225         * lib/safe-read.c: Rework so that it may serve to define safe_write,
32226         too.
32227         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
32228
32229 2002-12-03  Jim Meyering  <jim@meyering.net>
32230
32231         * lib/safe-read.c, safe-write.c: Change variable names and comments,
32232         but not semantics, to minimize the differences between these two files.
32233         (safe_read): Change comment to mention SAFE_READ_ERROR.
32234
32235         * lib/safe-read.c (IS_EINTR): Define.
32236         (safe_read): Use IS_EINTR in place of in-function cpp directives.
32237
32238 2002-12-02  Jim Meyering  <jim@meyering.net>
32239
32240         * lib/safe-read.c (EINTR): Define.
32241         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
32242         (INT_MAX): Provide fallback.
32243         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
32244
32245         * lib/safe-read.h (SAFE_READ_ERROR): Define.
32246
32247 2002-12-02  Bruno Haible  <bruno@clisp.org>
32248
32249         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
32250         Define, taken from safe-read.c.
32251         (INT_MAX): Provide fallback.
32252         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
32253         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
32254
32255         * lib/safe-read.c (EINTR): Remove definition.
32256         (safe_read): Don't use EINTR if it is absent.
32257
32258 2002-12-01  Jim Meyering  <jim@meyering.net>
32259
32260         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
32261         zero.
32262         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
32263
32264 2002-11-27  Paul Eggert  <eggert@twinsun.com>
32265
32266         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
32267         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
32268         with `if (! (value < limit)) abort ();', for readability.
32269
32270 2002-11-26  Karl Berry  <karl@gnu.org>
32271
32272         * lib/strdup.c: copy from libc again, with jim's ok.
32273         * lib/.cppi-disable: re-add strdup.c
32274
32275 2002-11-25  Karl Berry  <karl@gnu.org>
32276
32277         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
32278         instead of "strtol.c".
32279
32280 2002-11-25  Karl Berry  <karl@gnu.org>
32281
32282         * config/install-sh: update from automake for variable quoting, $0 in
32283         error msgs, etc.
32284
32285         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
32286         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
32287         entry.
32288
32289 2002-11-25  Jim Meyering  <jim@meyering.net>
32290
32291         * lib/mktime.c: Sync from libc, now that it has the latest fix.
32292
32293 2002-11-24  Karl Berry  <karl@gnu.org>
32294
32295         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
32296         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
32297
32298 2002-11-24  Jim Meyering  <jim@meyering.net>
32299
32300         Update from coreutils:
32301
32302         * lib/mktime.c: Merge in changes from libc.
32303
32304         Avoid a link-time failure on some Linux systems.
32305         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
32306         (otherwise).
32307         (__mon_yday): Declare with the STATIC attribute.
32308         (__mktime_internal): Likewise.
32309         Based on a report from Greg Schafer.
32310
32311 2002-11-23  Jim Meyering  <jim@meyering.net>
32312
32313         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
32314         Use `unsigned', not `int', as type of index.
32315
32316         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
32317
32318         * lib/fsusage.c: Remove unneeded parentheses around operands of
32319         `defined'.
32320
32321 2002-11-22  Paul Eggert  <eggert@twinsun.com>
32322
32323         * lib/quotearg.h: Allow multiple inclusion by surrounding with
32324         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
32325         so that we can be included first.
32326         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
32327         * lib/quotearg.c: Include quotearg.h immediately after config.h.
32328         No need to include stddef.h or sys/types.h any more.
32329         Surround local include files with "", not "<>".
32330         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
32331         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
32332         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
32333         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
32334         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
32335         (ISPRINT): Remove; no longer needed now that we assume C89.
32336
32337         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
32338         Preserve errno.
32339
32340         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
32341         quotearg_char): Use SIZE_MAX rather than
32342         (size_t) -1 when we are talking about "infinity".
32343
32344         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
32345
32346 2002-11-22  Paul Eggert  <eggert@twinsun.com>
32347
32348         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
32349         hint that one should use `if (! x) abort ();' rather than `assert
32350         (x);', and anyway it's one less thing to worry about configuring.
32351         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
32352         hash_rehash, hash_insert): Use abort rather than assert.
32353
32354 2002-11-22  Bruno Haible  <bruno@clisp.org>
32355
32356         * lib/safe-read.h: Assume C89. Add comments.
32357         (safe_read): Change return type to size_t.
32358         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
32359         byte counts > SSIZE_MAX correctly.
32360         * lib/safe-write.h: New file.
32361         * lib/safe-write.c: New file.
32362         * lib/full-read.h: New file.
32363         * lib/full-read.c: New file.
32364         * lib/full-write.h: Assume C89. Add comments.
32365         * lib/full-write.c: Include safe-write.h.
32366         (full_write): Rewritten to use safe_write.
32367         Suggested by Jim Meyering and Paul Eggert.
32368
32369 2002-11-21  Jim Meyering  <jim@meyering.net>
32370
32371         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
32372
32373         Merge in changes from the coreutils.
32374
32375         2002-09-25  Paul Eggert  <eggert@twinsun.com>
32376         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
32377         <stdint.h>.
32378         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
32379         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
32380         int.  Work more efficiently if X is the same width as uintmax_t.
32381         Do not compare X to -1, to avoid bogus compiler warning.
32382         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
32383         Don't assume that f_frsize and f_bsize are the same type.
32384
32385         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
32386         warning on FreeBSD.
32387
32388         * lib/makepath.c (make_path): Restore umask *before* creating the final
32389         component.
32390         (make_path): Minor reformatting.
32391
32392         * lib/xmalloc.c: Adjust to work with new autoconf macros,
32393         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
32394         HAVE_MALLOC/HAVE_REALLOC.
32395
32396         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
32397         dummy ones.  At least on GNU/Linux systems, `auto' means something
32398         else.
32399         From Michael Stone.
32400
32401 2002-11-21  Bruno Haible  <bruno@clisp.org>
32402
32403         Remove case insensitive option matching.
32404         * lib/argmatch.h (argcasematch): Remove declaration.
32405         (ARGCASEMATCH): Remove macro.
32406         (__xargmatch_internal): Remove case_sensitive argument.
32407         (XARGMATCH): Update.
32408         (XARGCASEMATCH): Remove macro.
32409         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
32410         case_sensitive argument.
32411         (argcasematch): Remove function.
32412         (__xargmatch_internal): Remove case_sensitive argument.
32413         (main): Use XARGMATCH instead of XARGCASEMATCH.
32414
32415         * lib/xmalloc.c: Change compile-time error message. Add comment about
32416         required autoconf version.
32417
32418 2002-11-20  Paul Eggert  <eggert@twinsun.com>
32419
32420         Merge argmatch cleanups from Bison.  Assume C89.
32421
32422         * lib/argmatch.c: Include config.h here, not in argmatch.h.
32423         Include stdlib.h, for EXIT_FAILURE.
32424         Always include <string.h>, since we assume C89.
32425         (EXIT_FAILURE): Remove pre-C89 bug workaround.
32426         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
32427         Include <stddef.h> instead, since it's all we need for size_t.
32428         (PARAMS): Remove.  All uses removed.
32429         (ARRAY_CARDINALITY): Do not bother to #undef.
32430         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
32431         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
32432         Remove unnecessary parentheses.
32433         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
32434         Insert necessary parentheses.
32435         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
32436         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
32437
32438 2002-11-19  Bruno Haible  <bruno@clisp.org>
32439
32440         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
32441         * lib/mbswidth.h: Include <stddef.h>, for size_t.
32442
32443         * lib/mbswidth.h (PARAMS): Remove macro.
32444         (mbswidth, mbsnwidth): Use ANSI C function declarations.
32445         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
32446
32447         * lib/gcd.h (PARAMS): Remove macro.
32448         (gcd): Use ANSI C function declarations.
32449         * lib/gcd.c (gcd): Likewise.
32450
32451 2002-11-15  Bruno Haible  <bruno@clisp.org>
32452
32453         * lib/strcspn.c: Include <stddef.h>.
32454         (strcspn): Use ANSI C function declaration. Change return type to
32455         size_t. Use NULL.
32456         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
32457         (strpbrk): Use NULL.
32458         * lib/strpbrk.h (PARAMS): Remove macro.
32459         (strpbrk): Use ANSI C function declaration.
32460         * lib/strstr.c: Don't include <sys/types.h>.
32461         * lib/strstr.h (PARAMS): Remove macro.
32462         (strstr): Use ANSI C function declarations.
32463
32464 2002-11-14  Karl Berry  <karl@gnu.org>
32465
32466         * config/mkinstalldirs: `do' on separate line, instead of
32467         `for var; do'.
32468
32469 2002-11-06  Bruno Haible  <bruno@clisp.org>
32470
32471         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
32472         * lib/gcd.c (gcd): Likewise.
32473
32474 2002-11-05  Bruno Haible  <bruno@clisp.org>
32475
32476         * lib/gcd.h: New file, from gettext-0.11.5.
32477         * lib/gcd.c: New file, from gettext-0.11.5.
32478
32479 2002-11-05  Bruno Haible  <bruno@clisp.org>
32480
32481         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
32482         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
32483         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
32484         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
32485
32486         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
32487         <libintl.h>.
32488         * lib/makepath.c: Include gettext.h instead of <locale.h> and
32489         <libintl.h>.
32490
32491         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
32492         * lib/human.c: Include gettext.h instead of <libintl.h>.
32493         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
32494         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
32495         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
32496         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
32497         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
32498         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
32499         (textdomain): Remove definition.
32500         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
32501
32502         * lib/long-options.c: Remove include of <libintl.h> and definition of
32503         _.
32504         * lib/same.c: Remove include of <libintl.h> and definition of _.
32505
32506 2002-11-04  Owen Taylor  <otaylor@redhat.com>
32507
32508         * lib/config.charset: A few additions for Solaris.
32509
32510 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
32511
32512         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
32513         * lib/localcharset.c (locale_charset): Declare as extern "C".
32514
32515 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
32516
32517         * lib/config.charset: msdos in uk_UA uses CP1125.
32518
32519 2002-11-04  Bruno Haible  <bruno@clisp.org>
32520
32521         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
32522         * lib/strcase.h: New file, from GNU gettext-0.11.5.
32523         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
32524         * lib/strstr.h: New file, from GNU gettext-0.11.5.
32525         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
32526
32527 2002-11-04  Bruno Haible  <bruno@clisp.org>
32528
32529         * lib/localcharset.c (locale_charset): Don't return an empty string.
32530
32531 2002-11-04  Bruno Haible  <bruno@clisp.org>
32532
32533         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
32534         aliases.
32535
32536 2002-11-04  Bruno Haible  <bruno@clisp.org>
32537
32538         * lib/config.charset: Update for newest glibc. Add canonical names
32539         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
32540
32541 2002-11-04  Bruno Haible  <bruno@clisp.org>
32542
32543         * lib/config.charset: Add support for NetBSD.
32544
32545 2002-11-04  Bruno Haible  <bruno@clisp.org>
32546
32547         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
32548
32549 2002-11-01  Bruno Haible  <bruno@clisp.org>
32550
32551         * configure.in: Add AC_CONFIG_AUX_DIR call.
32552         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
32553         test/Makefile.
32554         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
32555
32556 2002-09-28  Karl Berry  <karl@gnu.org>
32557
32558         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
32559         installed automake until the next release, since changes have been
32560         made.
32561
32562 2002-09-25  Karl Berry  <karl@gnu.org>
32563
32564         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
32565         * lib/getopt*: copy from libc/posix.
32566         * lib/gettext.h: copy from gettext.
32567         * lib/.cppi-disable: add strdup.c, gettext.h.
32568
32569 2002-09-25  Karl Berry  <karl@gnu.org>
32570
32571         * config/srclist.txt: enable gettext.h check.
32572         * config/config.{guess,sub}: update from prep.
32573         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
32574                 from automake 1.6.3.
32575         See srclist*.
32576
32577 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
32578
32579         * regex.c (PATFETCH): Remove the translating fetch.
32580         (PATFETCH_RAW): Rename to PATFETCH.
32581         (set_image_of_range): New fun.
32582         (SET_RANGE_TABLE_WORK_AREA): Use it.
32583         (regex_compile): Don't translate the pattern chars so eagerly.
32584         Only do it when inserting an `exactn' bytecode or when handling
32585         a char-range.
32586         (mutually_exclusive_p): Avoid empty statement.
32587
32588 2002-07-06  Jim Meyering  <meyering@lucent.com>
32589
32590         * m4/README: Don't mention Makefile.am.in.
32591         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
32592
32593 2002-07-01  Jim Meyering  <meyering@lucent.com>
32594
32595         * lib/c-stack.c: Include sys/time.h.
32596         From Volker Borchert.
32597
32598 2002-06-26  Paul Eggert  <eggert@twinsun.com>
32599
32600         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
32601
32602 2002-06-26  Paul Eggert  <eggert@twinsun.com>
32603
32604         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
32605         New macro.  Use it uniformly instead of
32606         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
32607         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
32608         reported by Vin Shelton.
32609
32610 2002-06-22  Paul Eggert  <eggert@twinsun.com>
32611
32612         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
32613         Do not assume SA_SIGINFO behavior.
32614         Bug reported by Jim Meyering on NetBSD 1.5.2.
32615
32616 2002-06-22  Jim Meyering  <meyering@lucent.com>
32617
32618         * m4/c-stack.m4: New file, from diffutils-2.8.2.
32619         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
32620
32621         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
32622         now that configure.ac uses AC_GNU_SOURCE.
32623         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
32624         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
32625
32626         Update to latest tools.  Suggestions from Paul Eggert.
32627         * m4/stdbool.m4: New file, from diffutils-2.8.2.
32628         * m4/gnu-source.m4: Update from diffutils-2.8.2.
32629         * m4/fnmatch.m4: Likewise.
32630         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
32631         to AC_HEADER_STDBOOL
32632
32633 2002-06-22  Jim Meyering  <meyering@lucent.com>
32634
32635         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
32636         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
32637
32638 2002-06-22  Jim Meyering  <meyering@lucent.com>
32639
32640         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
32641
32642         * lib/exitfail.c, exitfail.h: Likewise.
32643         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
32644
32645         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
32646         of fnmatch.h.
32647         (EXTRA_DIST): Add fnmatch_loop.c.
32648         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
32649
32650         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
32651         * lib/fnmatch.c: Update from diffutils-2.8.2.
32652         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
32653         * lib/fnmatch.h: Remove file.
32654
32655 2002-06-21  Jim Meyering  <meyering@lucent.com>
32656
32657         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
32658         * m4/mbrtowc.m4: Likewise.
32659
32660         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
32661         * m4/mbswidth.m4: Reflect name change:
32662         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
32663         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
32664
32665         * m4/lib-link.m4: Update from gettext-0.11.2.
32666         * m4/gettext.m4: Likewise.
32667
32668         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
32669         From Alfred M. Szmidt.
32670
32671 2002-06-18  Paul Eggert  <eggert@twinsun.com>
32672
32673         * lib/file-type.h: Report an error if neither S_ISREG nor
32674         S_IFREG is defined, instead of using a test specific to glibc
32675         2.2.  This should be safe, since POSIX requires S_ISREG and
32676         Unix Version 7 had S_IFREG.  We don't need to check for
32677         <sys/types.h> since we don't use any symbols that it defines.
32678
32679 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
32680
32681         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
32682         $@-t, so that each temporary file name is unique and valid in the first
32683         8 characters, for operation under DOS.
32684
32685 2002-06-15  Paul Eggert  <eggert@twinsun.com>
32686
32687         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
32688
32689 2002-06-15  Jim Meyering  <meyering@lucent.com>
32690
32691         Work even with DJGPP 2.03, which lacks support for symlinks.
32692         From Richard Dawe.
32693         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
32694         is defined.
32695         * lib/lchown.c (S_ISLNK): Likewise.
32696
32697 2002-06-15  Jim Meyering  <meyering@lucent.com>
32698
32699         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
32700         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
32701         have been included before this file.
32702
32703 2002-06-14  Jim Meyering  <meyering@lucent.com>
32704
32705         * lib/file-type.h: Use the version from diffutils-2.8.2.
32706         * lib/file-type.c: Likewise.
32707
32708 2002-06-07  Jim Meyering  <meyering@lucent.com>
32709
32710         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
32711         They're needed at least for NetBSD 1.5.2.
32712         ($statxfs_includes): Include those same headers.
32713         ($statxfs_includes): Include sys/vfs.h if available.
32714         ($statxfs_includes): Likewise for sys/statvfs.h.
32715         Check for the following members in both structs statfs and statvfs:
32716         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
32717
32718 2002-06-01  Jim Meyering  <meyering@lucent.com>
32719
32720         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
32721         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
32722
32723 2002-05-28  Jim Meyering  <meyering@lucent.com>
32724
32725         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
32726         Reported by Volker Borchert.
32727
32728 2002-05-27  Jim Meyering  <meyering@lucent.com>
32729
32730         Fix a problem seen only on nonconforming systems whereby ls.c's
32731         use of localtime, and then of gettimeofday would cause trouble:
32732         the localtime call used to initialize rpl_gettimeofday's save
32733         mechanism would clobber ls's current local time information so
32734         that in any long listing the first file would always be listed
32735         with date 1970-01-01.  Analysis by Volker Borchert.
32736
32737         * lib/gettimeofday.c (localtime): Undefine.
32738         (rpl_localtime): New function.
32739
32740 2002-05-27  Jim Meyering  <meyering@lucent.com>
32741
32742         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
32743         localtime.
32744
32745         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
32746         use the replacement function; it wouldn't resolve at link time.
32747         Reported by Volker Borchert.
32748
32749 2002-05-22  Jim Meyering  <meyering@lucent.com>
32750
32751         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
32752         file-type.h.
32753         * lib/file-type.h: New file.
32754         * lib/file-type.c (file_type): New file/function.  Extracted from
32755         diffutils.
32756
32757 2002-04-30  Jim Meyering  <meyering@lucent.com>
32758
32759         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
32760
32761 2002-04-29  Paul Eggert  <eggert@twinsun.com>
32762
32763         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
32764
32765 2002-04-29  Paul Eggert  <eggert@twinsun.com>
32766
32767         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
32768         Do not check for alloca.h (no longer used) or stdbool.h (was never
32769         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
32770
32771 2002-04-29  Paul Eggert  <eggert@twinsun.com>
32772
32773         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
32774
32775 2002-04-29  Jim Meyering  <meyering@lucent.com>
32776
32777         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
32778         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
32779         Use AC_FUNC_STRNLEN here instead.
32780
32781         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
32782         With autoconf-2.53a, it's part of AC_PROG_CC.
32783
32784 2002-04-28  Paul Eggert  <eggert@twinsun.com>
32785
32786         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
32787         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
32788
32789 2002-04-28  Paul Eggert  <eggert@twinsun.com>
32790
32791         * lib/sig2str.h, lib/sig2str.c: New files.
32792         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
32793
32794 2002-04-28  Paul Eggert  <eggert@twinsun.com>
32795
32796         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
32797         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
32798         of 127, since 64 is the largest conceivable number for ancient
32799         nonstandard hosts.
32800         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
32801
32802 2002-04-28  Jim Meyering  <meyering@lucent.com>
32803
32804         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
32805
32806 2002-04-24  Jim Meyering  <meyering@lucent.com>
32807
32808         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
32809         (jm_PREREQ): Use it.
32810
32811         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
32812         mach/mach.h fcntl.h.
32813         Check for this function: setlocale.
32814
32815 2002-04-24  Jim Meyering  <meyering@lucent.com>
32816
32817         * lib/gettext.h: New file, from Gettext.
32818         * lib/Makefile.am (INCLUDES): Remove -I../intl.
32819         (libfetish_a_SOURCES): Add gettext.h.
32820
32821 2002-04-16  Jim Meyering  <meyering@lucent.com>
32822
32823         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
32824         ut_pid, ut_id, ut_exit.
32825
32826 2002-04-16  Jim Meyering  <meyering@lucent.com>
32827
32828         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
32829         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
32830         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
32831
32832 2002-04-12  Jim Meyering  <meyering@lucent.com>
32833
32834         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
32835         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
32836         existence of the getmntinfo function.  Needed for Darwin 5.3.
32837
32838         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
32839         This is necessary at least on Darwin 5.3.
32840
32841         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
32842         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
32843         strnlen.o in the library, and that makes some versions of ranlib
32844         object.
32845
32846 2002-04-12  Jim Meyering  <meyering@lucent.com>
32847
32848         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
32849
32850 2002-04-09  Jim Meyering  <meyering@lucent.com>
32851
32852         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
32853         to be more precise.  Rather than saying we're checking whether the
32854         function `works', say what we're testing.
32855         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
32856         Reported by Bruno Haible.
32857
32858 2002-03-10  Jim Meyering  <meyering@lucent.com>
32859
32860         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
32861         Suggestion from Santiago Vila.
32862
32863 2002-03-08  Jim Meyering  <meyering@lucent.com>
32864
32865         * lib/rename.c: Mention that this wrapper is needed also on
32866         mips-dec-ultrix4.4 systems.
32867
32868 2002-03-02  Jim Meyering  <meyering@lucent.com>
32869
32870         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
32871         not HAVE_CLOCK_SETTIME.
32872
32873 2002-02-27  Paul Eggert  <eggert@twinsun.com>
32874
32875         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
32876         Check for clock_settime.
32877
32878 2002-02-27  Paul Eggert  <eggert@twinsun.com>
32879
32880         * lib/nanosleep.h: Rename to....
32881         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
32882
32883         * lib/gettime.c: New file.
32884         * lib/settime.c: New file.
32885         * lib/stime.c: Remove.
32886
32887         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
32888         timespec.h.  Remove nanosleep.h.
32889
32890 2002-02-25  Paul Eggert  <eggert@twinsun.com>
32891
32892         * m4/acl.m4: New file.
32893         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
32894         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
32895
32896 2002-02-25  Paul Eggert  <eggert@twinsun.com>
32897
32898         * lib/acl.c, lib/acl.h: New files.
32899         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
32900
32901 2002-02-24  Jim Meyering  <meyering@lucent.com>
32902
32903         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
32904         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
32905         cause trouble.  Reported by Nelson Beebe.
32906
32907 2002-02-23  Paul Eggert  <eggert@twinsun.com>
32908
32909         * lib/path-concat.c (xpath_concat): Reorder code to pacify
32910         compilers that don't know that xalloc_die never returns.
32911
32912 2002-02-20  Jim Meyering  <meyering@lucent.com>
32913
32914         * lib/getdate.c: Regenerate using bison-1.33.
32915
32916 2002-02-17  Jim Meyering  <meyering@lucent.com>
32917
32918         * config/config.guess (main): Don't use `head -1'; it's no longer
32919         portable. Use `sed 1q' instead.
32920
32921 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
32922
32923         * m4/codeset.m4: Upgrade to gettext-0.11.
32924         * m4/gettext.m4: Upgrade to gettext-0.11.
32925         * m4/glibc21.m4: Upgrade to gettext-0.11.
32926         * m4/iconv.m4: Upgrade to gettext-0.11.
32927         * m4/isc-posix.m4: Upgrade to gettext-0.11.
32928         * m4/lcmessage.m4: Upgrade to gettext-0.11.
32929         * m4/lib-ld.m4: New file, from gettext-0.11.
32930         * m4/lib-link.m4: New file, from gettext-0.11.
32931         * m4/lib-prefix.m4: New file, from gettext-0.11.
32932         * m4/progtest.m4: Upgrade to gettext-0.11.
32933
32934 2002-02-15  Paul Eggert  <eggert@twinsun.com>
32935
32936         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
32937         (jm_PREREQ): Use it.
32938
32939 2002-02-15  Paul Eggert  <eggert@twinsun.com>
32940
32941         * lib/posixver.c, lib/posixver.h: New files.
32942         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
32943
32944 2002-02-02  Paul Eggert  <eggert@twinsun.com>
32945             Bruno Haible  <bruno@clisp.org>
32946
32947         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
32948         (fwrite_success_callback): New declaration.
32949         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
32950         print_unicode_char. Call failure callback instead of error.
32951         (fwrite_success_callback): New function.
32952         (exit_failure_callback): New function.
32953         (fallback_failure_callback): New function.
32954         (print_unicode_char): Call unicode_to_mb.
32955
32956 2002-01-26  Jim Meyering  <meyering@lucent.com>
32957
32958         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
32959         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
32960
32961 2002-01-26  Jim Meyering  <meyering@lucent.com>
32962
32963         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
32964
32965 2002-01-22  Paul Eggert  <eggert@twinsun.com>
32966
32967         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
32968
32969 2002-01-22  Jim Meyering  <meyering@lucent.com>
32970
32971         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
32972         Otherwise, some versions of automake would omit the rule that makes
32973         Makefile from Makefile.in.
32974
32975 2002-01-21  Paul Eggert  <eggert@twinsun.com>
32976
32977         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
32978         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
32979         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
32980         (memcoll): Set errno to zero if there is no error.
32981
32982         * lib/quotearg.c (quotearg_buffer_restyled):
32983         Fix bug with quoting buffers containing NUL when backslashing escapes.
32984         This bug was exposed by the other changes in this patch.
32985         (quotearg_n_options): New arg ARGSIZE.
32986         All callers changed.
32987         (quoting_options_from_style): New function.
32988         (quotearg_n_style): Use it.
32989         (quotearg_n_style_mem): New function.
32990
32991         * lib/quotearg.h (quotearg_n_style_mem): New function.
32992
32993 2002-01-19  Jim Meyering  <meyering@lucent.com>
32994
32995         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
32996         Remove useless quotes: DF_PROG="df".
32997         * m4/strnlen.m4: New file.
32998
32999 2002-01-16  Paul Eggert  <eggert@twinsun.com>
33000
33001         * lib/backupfile.c (ISDIGIT): Comment fix.
33002         * lib/getdate.y (ISDIGIT): Likewise.
33003         * lib/posixtm.c (ISDIGIT, year): Likewise.
33004         * lib/strverscmp.c (ISDIGIT): Likewise.
33005         * lib/userspec.c (ISDIGIT): Likewise.
33006
33007 2002-01-16  Jim Meyering  <meyering@lucent.com>
33008
33009         * lib/getdate.y: Add three semicolons, each just before a closing
33010         brace. Bison (as of version 1.31) no longer papers over that mistake.
33011
33012 2002-01-05  Jim Meyering  <meyering@lucent.com>
33013
33014         * lib/version-etc.c (version_etc_copyright): Update copyright year.
33015
33016 2001-12-19  Paul Eggert  <eggert@twinsun.com>
33017
33018         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
33019         not silently exit merely because the output buffer happens to
33020         have nothing pending.
33021
33022 2001-12-18  Paul Eggert  <eggert@twinsun.com>
33023
33024         See the big note in ../ChangeLog.
33025         * lib/human.c (suffixes): Prefer K to k for 1024.
33026         (generate_suffix_backwards): New function.
33027         (human_readable_inexact): Use it.
33028         * lib/xstrtol.c (__xstrtol): If there is no number but there
33029         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
33030         Accept 'K' as well as 'k'.
33031
33032 2001-12-15  Jim Meyering  <meyering@lucent.com>
33033
33034         * lib/regex.h (__restrict_arr): Update from libc.
33035
33036         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
33037         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
33038         (STREQ): Define.
33039
33040 2001-12-14  Jim Meyering  <meyering@lucent.com>
33041
33042         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
33043         Suggestion from Bruno Haible.
33044
33045 2001-12-10  Jim Meyering  <meyering@lucent.com>
33046
33047         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
33048         xrealloc, Instead, include "xalloc.h".
33049         (initbuffer): Don't cast xmalloc return value to char*.
33050         (readline): Reword comment.
33051         Don't cast xrealloc return value to char*
33052         Return NULL, not 0.
33053
33054 2001-12-09  Jim Meyering  <meyering@lucent.com>
33055
33056         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
33057         about `signed and unsigned type in conditional expression'.
33058         * lib/posixtm.c (posix_time_parse): Likewise.
33059
33060         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
33061
33062         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
33063         to avoid a pedantic warning.
33064
33065         * lib/getstr.c: Don't include assert.h.
33066         (getstr): Remove warning-evoking assertions.
33067         Return -1 if offset parameter is out of bounds.
33068         Change the type of a local from int to size_t.
33069
33070         * lib/strftime.c (my_strftime_localtime_r): Include this function
33071         definition in the `#if ! HAVE_TM_GMTOFF' block.
33072
33073         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
33074         Include xalloc.h instead.
33075
33076 2001-12-02  Jim Meyering  <meyering@lucent.com>
33077
33078         * lib/tempname.c: Don't declare getenv, thus reverting the change of
33079         2001-11-18.  It's no longer necessary, now that stdlib.h is always
33080         included.
33081
33082         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
33083         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
33084
33085 2001-11-30  Akim Demaille  <akim@epita.fr>
33086
33087         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
33088         before being defined.
33089
33090 2001-11-27  Paul Eggert  <eggert@twinsun.com>
33091
33092         * lib/quotearg.h (quotearg_n, quotearg_n_style):
33093         First arg is int, not unsigned.
33094         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
33095         (SIZE_MAX, UINT_MAX): New macros.
33096         (quotearg_n_options): Abort if N is negative.
33097         Avoid overflow check on hosts where size_t is 64 bits and int
33098         is 32 bits, as overflow is impossible there.
33099         Fix off-by-one typo that caused unnecessary reallocation.
33100
33101 2001-11-27  Jim Meyering  <meyering@lucent.com>
33102
33103         * lib/tempname.c: Merge with version from libc.
33104         * lib/regex.c: Likewise.
33105
33106         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
33107         systems for which STDC_HEADERS is 0, it was not included, resulting in
33108         a warning about an integer-to-pointer conversion problem with getenv.
33109         Reported by Volker Borchert.
33110
33111 2001-11-26  Jim Meyering  <meyering@lucent.com>
33112
33113         * lib/gtod.h: Remove file.
33114         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
33115         * lib/gettimeofday.c: Don't include gtod.h.
33116         (GTOD_init): Remove function.
33117         (rpl_gettimeofday): Do its job here instead, rather than aborting.
33118         Suggestion from Volker Borchert.
33119
33120 2001-11-23  Jim Meyering  <meyering@lucent.com>
33121
33122         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
33123         it.
33124         * lib/hash.c (struct hash_table): Define it here instead.
33125
33126 2001-11-22  Jim Meyering  <meyering@lucent.com>
33127
33128         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
33129
33130 2001-11-20  Jim Meyering  <meyering@lucent.com>
33131
33132         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
33133         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
33134
33135 2001-11-19  Jim Meyering  <meyering@lucent.com>
33136
33137         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
33138         directory.  Use "conftestXXXXXX" as the template.
33139         Suggestion from Paul Eggert.
33140
33141         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
33142         immediately, so the test doesn't mistakenly hit the max-open-files
33143         limit.
33144
33145 2001-11-18  Paul Eggert  <eggert@twinsun.com>
33146
33147         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
33148         (TEMPORARIES): New macro.
33149         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
33150         removes an artificial limitation (e.g. HP-UX 10.20, where
33151         TMP_MAX is 17576).
33152
33153 2001-11-18  Jim Meyering  <meyering@lucent.com>
33154
33155         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
33156
33157 2001-11-18  Jim Meyering  <meyering@lucent.com>
33158
33159         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
33160         on SunOS 4.
33161
33162         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
33163         files will be created before anything else.
33164
33165 2001-11-17  Paul Eggert  <eggert@twinsun.com>
33166
33167         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
33168         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
33169
33170 2001-11-17  Jim Meyering  <meyering@lucent.com>
33171
33172         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
33173         Prompted by a report from Bob Proulx.
33174
33175         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
33176         Instead, require UTILS_FUNC_MKSTEMP.
33177
33178 2001-11-17  Jim Meyering  <meyering@lucent.com>
33179
33180         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
33181         Now, that's done as part of AC_FUNC_STRTOD.
33182
33183 2001-11-17  Jim Meyering  <meyering@lucent.com>
33184
33185         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
33186         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
33187         rather than group writable.  Patch by Juan F. Codagnone.
33188
33189         * lib/readtokens.c: Remove explicit declarations of xmalloc and
33190         xrealloc, Instead, include "xalloc.h".
33191
33192         * lib/mountlist.c: Include unlocked-io.h after all system headers.
33193         Remove explicit declarations of xmalloc, xrealloc,
33194         and xstrdup.  Instead, include "xalloc.h".
33195
33196         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
33197         unlocked-io.h.
33198         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
33199         Likewise.
33200         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
33201
33202         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
33203         Reported by Padraig Brady.
33204
33205         * lib/mkstemp.c: #undef mkstemp.
33206         Include config.h.
33207         (rpl_mkstemp): Rename from mkstemp.
33208         Protoize.
33209
33210 2001-11-16  Jim Meyering  <meyering@lucent.com>
33211
33212         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
33213         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
33214         determine the amount of total physical memory, use pstat_getstatic.
33215         HPUX-11 doesn't define _SC_PHYS_PAGES.
33216         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
33217         If sysconf couldn't be used to determine the amount of available
33218         physical memory, use both pstat_getstatic and pstat_getdynamic.
33219         Based on a patch from Bob Proulx.
33220
33221 2001-11-10  Jim Meyering  <meyering@lucent.com>
33222
33223         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
33224         (jm_PREREQ): Use it.
33225
33226 2001-11-09  Jim Meyering  <meyering@lucent.com>
33227
33228         * m4/jm-macros.m4: Require autoconf-2.52f.
33229         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
33230         Use these AC_-prefixed names, not the AM_-prefixed ones.
33231
33232         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
33233
33234 2001-11-05  Jim Meyering  <meyering@lucent.com>
33235
33236         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
33237
33238 2001-11-04  Jim Meyering  <meyering@lucent.com>
33239
33240         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
33241         $DEFS.
33242
33243 2001-11-03  Jim Meyering  <meyering@lucent.com>
33244
33245         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
33246         of AC_DEFUN.
33247
33248         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
33249         know the name of the variable in the macro definition.
33250
33251 2001-11-03  Jim Meyering  <meyering@lucent.com>
33252
33253         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
33254         in argmatch_to_argument call.
33255
33256         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
33257         argument.
33258
33259         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
33260         e.g., a fault due to an attempt to free a NULL pointer.
33261
33262 2001-11-01  Jim Meyering  <meyering@lucent.com>
33263
33264         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
33265         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
33266
33267 2001-11-01  Jim Meyering  <meyering@lucent.com>
33268
33269         * lib/dirfd.c, lib/dirfd.h: New files.
33270         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
33271
33272         * lib/hash.c (hash_print) [TESTING]: Clean up.
33273
33274 2001-10-22  Paul Eggert  <eggert@twinsun.com>
33275
33276         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
33277         to avoid a warning if -Wall.
33278
33279 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
33280
33281         * README: New file
33282         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
33283         (per RMS's instructions, this is now the canonical source)
33284         * lgpl/, gpl/: New directories.
33285
33286 2001-10-21  Paul Eggert  <eggert@twinsun.com>
33287
33288         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
33289
33290 2001-10-21  Jim Meyering  <meyering@lucent.com>
33291
33292         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
33293         this code would end up calling gettext even in packages built
33294         with --disable-nls.
33295         * lib/getopt.c (_): Likewise.
33296         * lib/regex.c (_): Likewise.
33297
33298 2001-10-20  Paul Eggert  <eggert@twinsun.com>
33299
33300         * m4/error.m4 (jm_PREREQ_ERROR):
33301         Do not invoke AC_CHECK_FUNCS with strerror_r, as
33302         AC_FUNC_STRERROR_R does that.
33303         Check for strerror declaration.
33304
33305         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
33306         are supposed to have them these days.
33307         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
33308         Merge changes from latest Autoconf CVS.
33309         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
33310         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
33311         POSIX decided to standardize on the int flavor of strerror_r.
33312
33313 2001-10-20  Paul Eggert  <eggert@twinsun.com>
33314
33315         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
33316         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
33317         Use strerror_r that is only a macro, even if it is not a function.
33318         (strerror): Check for HAVE_DECL_STRERROR before declaring.
33319         (private_strerror): Use prototypes, not old-style function definition.
33320         (print_errno_message): New function.
33321         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
33322         char*-flavored one.
33323         (error_tail, error, error_at_line): Use it.
33324
33325 2001-10-11  Jim Meyering  <meyering@lucent.com>
33326
33327         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
33328         and quote_n (1, ... to avoid clobbering a buffer.
33329
33330 2001-10-05  Jim Meyering  <meyering@lucent.com>
33331
33332         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
33333         hash-pjw.h.
33334         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
33335         * lib/hash-pjw.h: New file.
33336
33337 2001-09-30  Jim Meyering  <meyering@lucent.com>
33338
33339         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
33340         `struct fsstat' has the `f_fstypename' member.
33341         Use that to define FS_TYPE, which is now used to make
33342         the getfsstat link test tighter.
33343
33344 2001-09-30  Jim Meyering  <meyering@lucent.com>
33345
33346         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
33347         Include <sys/ucred.h>, for Apple Darwin.
33348         Include sys/mount.h and sys/fs_types.h only if available.
33349         (FS_TYPE): Define.
33350         (read_filesystem_list): Use FS_TYPE.
33351
33352 2001-09-29  Paul Eggert  <eggert@twinsun.com>
33353
33354         * lib/exclude.c (excluded_filename): 0 -> false, since it's
33355         a boolean context.
33356
33357 2001-09-29  Jim Meyering  <meyering@lucent.com>
33358
33359         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
33360         [one-argument getmntent function]): Include stdio.h before mntent.h.
33361         SunOS 4.1.x needs it for the declaration of `FILE'.
33362         Patch by Volker Borchert.
33363
33364         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
33365         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
33366         sys/fs_types.h, and make the link-test for getfsstat guard #include
33367         directives with appropriate #if HAVE_*_H tests so that we can
33368         detect getfsstat on Apple Darwin1.3.7 systems.
33369         Reported by Nelson Beebe.
33370         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
33371
33372 2001-09-28  Paul Eggert  <eggert@twinsun.com>
33373
33374         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
33375         #defines strtoimax.  Also treat the other strto* functions
33376         like strtoimax.
33377
33378         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
33379         Check for strtoul and strtoumax,
33380         as those declarations are made even in the signed case.
33381         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
33382         Likewise, for strtol and strtoimax.
33383
33384 2001-09-28  Paul Eggert  <eggert@twinsun.com>
33385
33386         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
33387         #defines strtoimax.  Also treat the other strto* functions
33388         like strtoimax.
33389
33390         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
33391         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
33392         (strtoimax, strtoumax): Do not declare if already defined as a macro.
33393
33394 2001-09-26  Jim Meyering  <meyering@lucent.com>
33395
33396         Most macros in unlocked-io.h had the wrong number of arguments.
33397         * lib/gen-uio: New script.
33398         (USE_UNLOCKED_IO): Define to 1 if not already defined.
33399         * lib/unlocked-io.hin: Remove file.
33400         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
33401         rather than trying to embed it here.
33402         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
33403         Reported by Padraig Brady.
33404
33405 2001-09-25  Volker Borchert  <bt@teknon.de>
33406
33407         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
33408         `result'.
33409
33410 2001-09-24  Jim Meyering  <meyering@lucent.com>
33411
33412         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
33413
33414 2001-09-23  Jim Meyering  <meyering@lucent.com>
33415
33416         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
33417         instead of the mere test for existence of mntent.h.  The latter
33418         would get a false-positive on AIX 3.4 systems.
33419         In the outer getmntent if-block, don't die if neither of the getmntent
33420         tests succeeds.  Instead, just fall through and continue with the
33421         remaining tests.
33422
33423 2001-09-23  Jim Meyering  <meyering@lucent.com>
33424
33425         * lib/mountlist.c: Remove useless parentheses in #if directives.
33426         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
33427         the deprecated MOUNTED symbol is no longer defined in mntent.h.
33428
33429 2001-09-22  Jim Meyering  <meyering@lucent.com>
33430
33431         * m4/gettext.m4: New file.  From gettext.
33432         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
33433         * m4/progtest.m4: Likewise
33434         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
33435         * m4/glibc21.m4: Likewise.
33436
33437         * m4/libintl.m4: Remove.  No longer used.
33438
33439 2001-09-22  Jim Meyering  <meyering@lucent.com>
33440
33441         * lib/localcharset.c: Update from latest gettext.
33442         * lib/config.charset: Likewise.
33443
33444 2001-09-20  Jim Meyering  <meyering@lucent.com>
33445
33446         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
33447         strtoimax.
33448         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
33449         strtoumax.
33450
33451 2001-09-20  Jim Meyering  <meyering@lucent.com>
33452
33453         * lib/xstrtol.c (strtoimax): Guard declaration with
33454         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
33455         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
33456         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
33457         (strtoumax): Likewise, for completeness (it wasn't necessary).
33458
33459 2001-09-17  Paul Eggert  <eggert@twinsun.com>
33460
33461         * lib/strtoimax.c (HAVE_LONG_LONG):
33462         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
33463         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
33464         to work around bug in IBM C compiler.
33465
33466 2001-09-17  Jim Meyering  <meyering@lucent.com>
33467
33468         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
33469         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
33470         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
33471         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
33472         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
33473         whenever the right hand side need not be expanded by the shell.
33474
33475 2001-09-16  Paul Eggert  <eggert@twinsun.com>
33476
33477         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
33478         library.  It's not correct, as some older glibcs are buggy.
33479         fnmatch wasn't fixed until glibc 2.2.
33480
33481         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
33482         special shell magic here.
33483
33484 2001-09-16  Jim Meyering  <meyering@lucent.com>
33485
33486         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
33487         * m4/jm-macros.m4: Require it.
33488
33489 2001-09-16  Jim Meyering  <meyering@lucent.com>
33490
33491         * lib/mkdir.c: New file.
33492
33493 2001-09-15  Jim Meyering  <meyering@lucent.com>
33494
33495         * m4/jm-macros.m4: Check for help2man.
33496
33497 2001-09-11  Jim Meyering  <meyering@lucent.com>
33498
33499         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
33500         The body, by Paul Eggert, was moved here from configure.in.
33501         * m4/jm-macros.m4: Require UTILS_HOST_OS.
33502
33503 2001-09-04  Paul Eggert  <eggert@twinsun.com>
33504
33505         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
33506         (jm_PREREQ): Use it.
33507
33508 2001-09-04  Paul Eggert  <eggert@twinsun.com>
33509
33510         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
33511         Use ssize_t, not int, to store result of readlink.
33512         Check for ssize_t overflow as well as size_t overflow,
33513         as POSIX says the result of readlink is implementation-defined
33514         when ssize_t overflows.
33515         Remove unnecessary cast to char*.
33516         Use free+malloc instead of realloc, as the storage doesn't need
33517         to be preserved and it's clearer and can be more efficient that way.
33518         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
33519         * lib/xreadlink.h (xreadlink): Update prototype.
33520
33521 2001-09-04  Paul Eggert  <eggert@twinsun.com>
33522
33523         * lib/xgetcwd.c: Revert some of the previous change; intead,
33524         fix the HAVE_GETCWD_NULL code to behave more like the
33525         !HAVE_GETCWD_NULL code used to.
33526
33527         Include "xalloc.h".
33528         (xgetcwd): Do not return NULL when memory is exhausted; instead,
33529         invoke xalloc_die.
33530
33531 2001-09-03  Paul Eggert  <eggert@twinsun.com>
33532
33533         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
33534         sys/param.h, as pathmax.h includes them.
33535
33536 2001-09-03  Paul Eggert  <eggert@twinsun.com>
33537
33538         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
33539         (jm_PREREQ_XGETCWD): New macro.
33540
33541         * m4/getcwd.m4: New file.
33542
33543 2001-09-03  Paul Eggert  <eggert@twinsun.com>
33544
33545         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
33546         like the HAVE_GETCWD_NULL code.
33547         Include pathmax.h if not HAVE_GETCWD.
33548         Do not include xalloc.h.
33549         (INITIAL_BUFFER_SIZE): New symbol.
33550         Do not use xmalloc / xrealloc, since the caller is responsible for
33551         handling errors.  Preserve errno around `free' during failure.
33552         Do not overrun buffer when using getwd.
33553
33554 2001-09-03  Paul Eggert  <eggert@twinsun.com>
33555
33556         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
33557         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
33558         getcwd (NULL, 0).
33559
33560 2001-09-03  Paul Eggert  <eggert@twinsun.com>
33561
33562         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
33563         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
33564         spotted by Jim Meyering.
33565
33566 2001-09-03  Jim Meyering  <meyering@lucent.com>
33567
33568         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
33569         failure.
33570
33571 2001-09-02  Jim Meyering  <meyering@lucent.com>
33572
33573         * lib/error.c: Update from GNU libc.
33574
33575 2001-09-01  Jim Meyering  <meyering@lucent.com>
33576
33577         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
33578         Used by df.
33579
33580 2001-09-01  Jim Meyering  <meyering@lucent.com>
33581
33582         * lib/xreadlink.c: New file.
33583         * lib/xreadlink.h: New file.
33584         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
33585         xreadlink.h.
33586
33587         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
33588         doesn't conflict with sparc Solaris 7's definition in
33589         /usr/include/sys/int_types.h.
33590
33591         * lib/exclude.c: Use `""', not `<>' to #include non-system header
33592         files.
33593         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
33594         and strncasecmp as r-values.  Unixware didn't have declarations.
33595
33596 2001-08-31  Paul Eggert  <eggert@twinsun.com>
33597
33598         * lib/xstrtol.h: Add copyright notice.
33599         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
33600         LONGINT_INVALID_SUFFIX_CHAR.
33601
33602 2001-08-31  Paul Eggert  <eggert@twinsun.com>
33603
33604         * lib/xstrtol.c (strtoimax): New decl.
33605
33606 2001-08-31  Paul Eggert  <eggert@twinsun.com>
33607
33608         * lib/xgetcwd.c: Don't include pathmax.h.
33609         Include stdlib.h and unistd.h if available.
33610         Include xalloc.h.
33611         (xmalloc, xstrdup, free): Remove decls.
33612         (xgetcwd): Don't assume sizes fit in unsigned.
33613         Check for overflow when computing sizes.
33614         Simplify reallocation code.
33615
33616 2001-08-31  Paul Eggert  <eggert@twinsun.com>
33617
33618         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
33619         a directory's st_size can have an arbitrary value, so the old
33620         usage could waste an arbitrary amount of memory.  All uses
33621         changed.
33622         * lib/savedir.h: Update prototype.
33623
33624 2001-08-31  Paul Eggert  <eggert@twinsun.com>
33625
33626         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
33627
33628         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
33629         old strtoimax.c.
33630
33631         Also, make the following further changes to make this file's
33632         configuration more similar to that of strtol.c:
33633         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
33634         (strtoumax, uintmax_t, strtoull, strtol): Remove.
33635         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
33636         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
33637         changed to signed values.
33638
33639         And make the following changes as well:
33640         Fix copyright notice, as 1999 was missing.
33641         (verify): New macro.
33642         (strtoimax): Check sizes at compile-time, not run-time.
33643         Prefer strtol to strtoll if both work.
33644         (main): Remove; it was not that useful and was a pain to maintain.
33645
33646         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
33647
33648 2001-08-31  Jim Meyering  <meyering@lucent.com>
33649
33650         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
33651         Use an initial, malloc'd, buffer of length 128 rather than
33652         a statically allocated one of length 1024.
33653
33654 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33655
33656         Simplify code, partly by assuming autoconf 2.52 semantics.
33657
33658         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
33659
33660         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
33661         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
33662         All uses removed.
33663         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
33664         Move AC_REQUIRE to next-to-top level, to avoid confusion.
33665         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
33666         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
33667         jm_AC_HEADER_INTTYPES_H.
33668         * m4/jm-macros.m4 (jm_MACROS): Likewise.
33669
33670         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
33671
33672         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
33673         Quote first arg of AC_DEFUN.
33674         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
33675         since they are needed to parse the include file even if we need
33676         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
33677         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
33678         but with opposite signedness.
33679
33680 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33681
33682         Merge 'exclude' changes from tar 1.13.22.
33683         This fixes one or two unlikely storage allocation overflow bugs,
33684         but doesn't change user-visible behavior otherwise.
33685
33686 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33687
33688         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
33689         (jm_PREREQ_EXCLUDE): New macro.
33690
33691 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33692
33693         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
33694         tm to be declared.
33695
33696 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33697
33698         * lib/hash.c: Remove '2001' from copyright notice.
33699
33700 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33701
33702         * lib/full-write.h: New file.
33703         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
33704         * lib/full-write.c: Correct credits, as cccp.c no longer
33705         exists and anyway it was so heavily changed from the old cccp
33706         code as to be unrecognizable.  Include full-write.h.
33707         (full_write) Return size_t, with short writes meaning failure.
33708         All callers changed.  This fixes a bug with large buffers
33709         on 64-bit hosts.
33710         * lib/utime.c: Include full-write.h.
33711
33712 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33713
33714         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
33715         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
33716         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
33717         Include if available.
33718         (<xalloc.h>): Include
33719         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
33720         (verify): New macro.  Use it to verify that EXCLUDE macros do not
33721         collide with FNM macros.
33722         (struct patopts): New struct.
33723         (struct exclude): Use it, as exclude patterns now come with options.
33724         (new_exclude): Support above changes.
33725         (new_exclude, add_exclude_file):
33726         Initial size must now be a power of two to simplify overflow checking.
33727         (free_exclude, fnmatch_no_wildcards): New function.
33728         (excluded_filename): No longer requires options arg, as the options
33729         are determined by add_exclude.  Now returns bool, not int.
33730         (excluded_filename, add_exclude):
33731         Add support for the fancy new exclusion options.
33732         (add_exclude, add_exclude_file): Now takes int options arg.
33733         Check for arithmetic overflow when computing sizes.
33734         (add_exclude_file): xrealloc might modify errno, so don't
33735         realloc until after errno might be used.
33736
33737         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
33738         New macros.
33739         (free_exclude): New decl.
33740         (add_exclude, add_exclude_file): Now takes int options arg.
33741         (excluded_filename): No longer requires options arg, as the options
33742         are determined by add_exclude.  Now returns bool, not int.
33743
33744 2001-08-30  Paul Eggert  <eggert@twinsun.com>
33745
33746         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
33747
33748 2001-08-27  Jim Meyering  <meyering@lucent.com>
33749
33750         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
33751
33752         * lib/version-etc.c (N_): Remove definition.
33753         Revert most of last change.
33754         Instead, simply don't mark the `Copyright...' string for translation.
33755         Based on advice from Paul Eggert.
33756
33757         * lib/strtoxmax.c: Tweak comment.
33758
33759 2001-08-26  Jim Meyering  <meyering@lucent.com>
33760
33761         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
33762
33763         * m4/xstrtoimax.m4: New file.
33764         * m4/xstrtoumax.m4: Add comments explaining why we
33765         AC_REPLACE_FUNCS(strtol).
33766
33767 2001-08-26  Jim Meyering  <meyering@lucent.com>
33768
33769         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
33770         of copyright with `%s' so translators don't get an untranslated
33771         message in 2002.
33772         (COPYRIGHT_YEAR): Define.
33773         (version_etc): Use fprintf rather than fputs.
33774         Suggestion from Ulrich Drepper.
33775
33776         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
33777
33778         * lib/strtoll.c: New file, from GNU libc.
33779         * lib/xstrtoimax.c: New file.
33780
33781         * lib/xstrtol.h: Add xstrtoimax.
33782         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
33783         * lib/strtoimax.c: New file.  Likewise, but first define
33784         STRTOUXMAX_SIGNED.
33785
33786         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
33787         ...
33788         * lib/strtoxmax.c: ... then renamed to this.
33789
33790 2001-08-18  Paul Eggert  <eggert@twinsun.com>
33791
33792         * m4/inttypes.m4: Add AC_PREREQ(2.13).
33793         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
33794         (jm_AC_TYPE_INTMAX_T): New macro.
33795         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
33796
33797         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
33798
33799         * m4/longlong.m4: Renamed from ulonglong.m4.
33800         * m4/inttypes.m4: Renamed from inttypes_h.m4.
33801         * m4/uintmax_t.m4: Removed.
33802
33803 2001-08-13  Paul Eggert  <eggert@twinsun.com>
33804
33805         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
33806         Port to Solaris 8, where 'sed' requires a space after the 'r'
33807         command, and where sh dislikes "$/".  Clean up the spacing a bit.
33808         Redirect output to $tmp just once.
33809
33810 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
33811
33812         * lib/addext.c (<errno.h>): Include.
33813         (errno): Declare if not defined.
33814         (addext): Work correctly when pathconf returns -1 and leaves
33815         errno alone because there is no limit.  Also, work even if
33816         pathconf returns a value greater than SIZE_MAX.
33817
33818 2001-08-12  Jim Meyering  <meyering@lucent.com>
33819
33820         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
33821         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
33822         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
33823         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
33824         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
33825         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
33826         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
33827         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
33828         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
33829         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
33830         utime.m4, utimes.m4, xstrtoumax.m4:
33831         Quote the first argument in each use of AC_DEFUN.
33832
33833 2001-08-12  Jim Meyering  <meyering@lucent.com>
33834
33835         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
33836         Simply `return getcwd (NULL, 0);'.
33837         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
33838         Use 1300 as initial value for length, not PATH_MAX.
33839
33840         * lib/pathmax.h: Clean up cpp syntax.
33841
33842 2001-08-12  Jim Meyering  <meyering@lucent.com>
33843
33844         * lib/gettimeofday.c: New file.
33845         * lib/gtod.h: New file.
33846         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
33847
33848 2001-08-05  Jim Meyering  <meyering@lucent.com>
33849
33850         * m4/jm-macros.m4: Require autoconf-2.52.
33851
33852 2001-08-04  Jim Meyering  <meyering@lucent.com>
33853
33854         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
33855         stmt, to get in sync with glibc.
33856
33857 2001-08-03  Paul Eggert  <eggert@twinsun.com>
33858
33859         The following changes are from gettext 0.10.39 as maintained by
33860         Bruno Haible.
33861
33862         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
33863         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
33864         with inverted sense.  All uses changed.
33865
33866         * lib/mbswidth.c: Don't include <limits.h>.
33867         Include <stdlib.h> and <string.h> unconditionally.
33868         (iswcntrl, mbsinit, ISCNTRL): New macros.
33869         (mbsnwidth): Use K&R style function declarations.
33870         Don't bother checking for MB_LEN_MAX == 1, since the compiler
33871         can optimize it when MB_CUR_MAX == 1.
33872         The width of control characters is zero, not 1.
33873
33874 2001-08-03  Paul Eggert  <eggert@twinsun.com>
33875
33876         The following changes are from gettext 0.10.39 as maintained by
33877         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
33878
33879         * m4/codeset.m4: Upgrade to serial AM1.
33880         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
33881         all uses changed.  Quote first arg of AC_DEFUN.
33882         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
33883
33884         * m4/iconv.m4: Upgrade to serial AM2.
33885         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
33886         Add --with-libconv-prefix.
33887         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
33888         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
33889         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
33890         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
33891         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
33892
33893         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
33894         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
33895         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
33896         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
33897         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
33898         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
33899         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
33900         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
33901         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
33902
33903         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
33904         string.h any more.
33905
33906         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
33907         not the default value.
33908
33909         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
33910         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
33911         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
33912         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
33913         Also check for iswcntrl, used for wcwidth fallback.
33914         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
33915         to Autoconf 2.13.
33916
33917 2001-08-03  Jim Meyering  <meyering@lucent.com>
33918
33919         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
33920         as it was in the original.  Reported by Paul Eggert.
33921
33922 2001-07-16  Jim Meyering  <meyering@lucent.com>
33923
33924         * m4/gettimeofday.m4: New file.
33925         Prompted by a report from Bernhard Baehr.
33926
33927 2001-07-15  Jim Meyering  <meyering@lucent.com>
33928
33929         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
33930         stuff. Now it's in ../Makefile.cfg.
33931
33932 2001-07-15  Jim Meyering  <meyering@lucent.com>
33933
33934         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
33935         (BUILT_SOURCES): Add unlocked-io.h.
33936         (io_functions): Define.
33937         (unlocked-io.h): New rule.
33938         (DISTCLEANFILES): Add unlocked-io.h.
33939         (all-local): Depend on unlocked-io.h, to ensure it is created.
33940
33941         * lib/unlocked-io.hin: New file
33942
33943         * lib/regex.c: Update from glibc.
33944
33945 2001-07-05  Jim Meyering  <meyering@lucent.com>
33946
33947         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
33948         recommendation.
33949         (libfetish_a_SOURCES): Put all .h files here instead.
33950         Remove a thus-exposed (better checks in automake) duplicate and
33951         two unnecessary .h files.
33952
33953 2001-07-04  Jim Meyering  <meyering@lucent.com>
33954
33955         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
33956         that generates jm-glibc-io.m4 so that it doesn't trigger any make
33957         distcheck failure.
33958
33959 2001-07-02  Jim Meyering  <meyering@lucent.com>
33960
33961         The following changes were prompted by suggestions from Bruno Haible.
33962
33963         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
33964         is now generated.
33965         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
33966         definition of EXTRA_DIST.
33967         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
33968         ensure that the generated file is created/updated whenever the list
33969         of $(unlocked_functions) is changed.
33970         (jm-glibc-io.m4): New rule.
33971         (unlocked-io.h): New rule -- currently unused.
33972
33973 2001-06-24  Jim Meyering  <meyering@lucent.com>
33974
33975         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
33976         unmatched right bracket, rather than kludging it with an extra,
33977         falsely-matching quote in a comment.  Patch by Akim Demaille.
33978
33979 2001-06-11  Jim Meyering  <meyering@lucent.com>
33980
33981         * lib/regex.c: Update from GNU libc.
33982
33983 2001-05-27  Jim Meyering  <meyering@lucent.com>
33984
33985         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
33986         Check for ut_type in struct utmp.
33987
33988 2001-05-27  Jim Meyering  <meyering@lucent.com>
33989
33990         * lib/readutmp.h (UT_TYPE): Define.
33991
33992 2001-05-24  Jim Meyering  <meyering@lucent.com>
33993
33994         * lib/argmatch.c: Include "quote.h".
33995         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
33996         quote function.  Reported by Göran Uddeborg.
33997
33998 2001-05-22  Jim Meyering  <meyering@lucent.com>
33999
34000         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
34001         now that we use the package-supplied version unconditionally.
34002         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
34003
34004 2001-05-21  Jim Meyering  <meyering@lucent.com>
34005
34006         * m4/regex.m4: Change a couple backticks to single quotes to avoid
34007         shell syntax errors.
34008
34009 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
34010
34011         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
34012
34013 2001-05-20  Paul Eggert  <eggert@twinsun.com>
34014
34015         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
34016         Don't bother to check library strftime, since
34017         we'll be using our own my_strftime function anyway.
34018         Define my_strftime instead of strftime.
34019
34020 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
34021
34022         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
34023         which is not yet declared.
34024
34025 2001-05-15  Jim Meyering  <meyering@lucent.com>
34026
34027         * m4/regex.m4: Use proper quoting so brackets appear in the test
34028         program.
34029         Reported by, and with help from, Bruno Haible.
34030
34031 2001-05-13  Jim Meyering  <meyering@lucent.com>
34032
34033         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
34034         undefined.
34035
34036 2001-05-11  Paul Eggert  <eggert@twinsun.com>
34037
34038         dirname code cleanup.  base_name now behaves more compatibly
34039         with POSIX basename when given file names that have trailing
34040         slashes, and similarly for dir_name.  Add new primitives
34041         base_len and dir_len.  Put the directory-name-related decls
34042         into dirname.h.
34043
34044         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
34045         * lib/backupfile.c (base_name): Likewise.
34046         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
34047         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
34048         * lib/makepath.c (strip_trailing_slashes): Likewise.
34049         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
34050         ISSLASH): Likewise.
34051         * lib/rename.c (strip_trailing_slashes): Likewise.
34052         * lib/same.c (base_name): Likewise.
34053         * lib/stripslash.c (ISSLASH): Likewise.
34054
34055         * lib/addext.c: Include <dirname.h> after size_t is defined.
34056         * lib/backupfile.c: Likewise.
34057
34058         * lib/addext.c (addext): Use base_len to trim redundant
34059         trailing slashes instead of doing it ourselves.
34060         But do not trim the last slash if it is not redundant.
34061
34062         * lib/backupfile.c (find_backup_file_name,
34063         max_backup_version): Use base_len instead of rolling it ourselves.
34064         Handle the case of "" and (on DOS) "C:" correctly.
34065
34066         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
34067         needed. Include <string.h>, <dirname.h>.
34068         (base_name): Allow file names ending in slashes, other than names
34069         that are all slashes.  In this case, return the basename followed
34070         by the slashes.  This is more general, and can be used in places
34071         where the original base_name purposely had an assertion failure.
34072         (base_len): New function.
34073
34074         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
34075         Do not include <assert.h>; no longer needed.
34076         Include xalloc.h.
34077         (memrchr): Remove decl.
34078         (dir_name_r): Remove.
34079         (dir_len): Renamed from dirlen.  All callers changed.
34080         Rewrite in terms of base_name, for simplicity and consistency.
34081         (dir_name): Never return NULL.  All callers changed.
34082         Do not include <stdlib.h> in test program; no longer needed.
34083         return 0; is fine for test program.
34084
34085         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
34086         New macros.
34087         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
34088
34089         * lib/path-concat.c (path_concat): Use base_len to compute
34090         base length, not strlen; this means we cannot rely on memcpy
34091         to null-terminate.
34092
34093         * lib/same.c (STREQ): Remove.
34094         (same_name): Handle the case where the basename ends in trailing '/'.
34095
34096         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
34097         a slash was stripped.  Do not strip the last slash after a
34098         file system prefix.
34099
34100 2001-05-11  Paul Eggert  <eggert@twinsun.com>
34101
34102         * lib/Makefile.am (libfetish_a_SOURCES):
34103         Add strftime.c, since we now compile it on all hosts.
34104
34105         * lib/strftime.c (my_strftime):
34106         Define to nstrftime if emacs, but only if my_strftime is not defined.
34107         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
34108         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
34109         Add one more extra argument: a nanoseconds value.
34110         All uses changed.
34111         (ns): New macro.
34112         (my_strftime function): Add %N format.
34113         (emacs_strftimeu): Renamed from emacs_strftime,
34114         with extra ut argument.
34115
34116 2001-05-09  Paul Eggert  <eggert@twinsun.com>
34117
34118         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
34119
34120 2001-04-21  Jim Meyering  <meyering@lucent.com>
34121
34122         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
34123         doesn't interfere.
34124
34125 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
34126
34127         * m4/ftruncate.m4: Check for chsize.
34128         Link with ftruncate.o unconditionally if ftruncate is missing.
34129         This was required when cross-compiling to i586-mingw32msvc.
34130
34131 2001-04-08  Jim Meyering  <meyering@lucent.com>
34132
34133         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
34134         recomputed; that's necessary when the offset spans a DST transition.
34135         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
34136
34137 2001-04-02  Jim Meyering  <meyering@lucent.com>
34138
34139         * lib/regex.h, regex.c: Update from GNU libc.
34140
34141 2001-03-24  Jim Meyering  <meyering@lucent.com>
34142
34143         * m4/jm-macros.m4: Require autoconf-2.49d.
34144
34145 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
34146
34147         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
34148
34149 2001-03-19  Paul Eggert  <eggert@twinsun.com>
34150
34151         * lib/version-etc.c (version_etc_copyright): Update to 2001.
34152
34153 2001-03-17  Jim Meyering  <meyering@lucent.com>
34154
34155         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
34156         now that the version in autoconf is equivalent.
34157         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
34158
34159         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
34160         Suggestion from Akim Demaille.
34161
34162         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
34163         (jm_PREREQ_TEMPNAME): New function.
34164
34165 2001-03-16  Paul Eggert  <eggert@twinsun.com>
34166
34167         * lib/tempname.c (uint64_t): Define to uintmax_t if
34168         not defined, and if UINT64_MAX is not defined.
34169         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
34170         Reported by John David Anglin.
34171
34172 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
34173
34174         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
34175         resolve alias if codeset is empty.
34176         * lib/config.charset (BeOS): Use wildcard syntax.
34177
34178 2001-03-13  Jim Meyering  <meyering@lucent.com>
34179
34180         * lib/path-concat.c (path_concat)
34181         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
34182         concatenating e.g., `C:' and `foo'.
34183         From Bruno Haible.
34184
34185 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
34186
34187         * lib/localcharset.c (locale_charset): Don't use
34188         setlocale(LC_CTYPE,NULL). Don't return NULL.
34189         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
34190
34191 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
34192
34193         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
34194         support for DOS/DJGPP.
34195
34196 2001-03-01  Paul Eggert  <eggert@twinsun.com>
34197
34198         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
34199         lacks mkstemp.  Compile our own tempname.c if we compile our own
34200         mkstemp.c, as mkstemp relies on tempname.
34201
34202 2001-03-01  Jim Meyering  <meyering@lucent.com>
34203
34204         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
34205         AH_VERBATIM really does output its argument verbatim.
34206
34207 2001-02-28  Paul Eggert  <eggert@twinsun.com>
34208
34209         * lib/Makefile.am (libfetish_a_SOURCES):
34210         Add dup-safer.c, fopen-safer.c.
34211         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
34212
34213         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
34214         * lib/unistd-safer.h: New files.
34215
34216 2001-02-25  Paul Eggert  <eggert@twinsun.com>
34217
34218         The mkstemp replacement is taken from glibc 2.2.2, with some
34219         portability fixes for use outside glibc, as follows:
34220
34221         * lib/tempname.c (struct_stat64): New macro.
34222         (direxists, __gen_tempname): Use it.
34223         This avoids a portability problem with Solaris 8.
34224
34225         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
34226         (<stddef.h>, <stdint.h>, <string.h>):
34227         Include only if STDC_HEADERS || _LIBC.
34228         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
34229         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
34230         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
34231         (__set_errno): Define this macro if <errno.h> doesn't.
34232         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
34233         Define these macros if <stdio.h> doesn't.
34234         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
34235         Define these macros if <sys/stat.h>
34236         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
34237         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
34238         __xstat64): Define if not _LIBC.
34239         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
34240         (__gen_tempname): Invoke gettimeofday only if
34241         HAVE_GETTIMEOFDAY || _LIBC;
34242         otherwise, fall back on plain "time".
34243         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
34244
34245         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
34246
34247         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
34248
34249 2001-02-18  Paul Eggert  <eggert@twinsun.com>
34250
34251         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
34252
34253 2001-02-17  Paul Eggert  <eggert@twinsun.com>
34254
34255         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
34256         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
34257         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
34258         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
34259
34260 2001-02-17  Paul Eggert  <eggert@twinsun.com>
34261
34262         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
34263         Remove workaround macros for hosts that have mbrtowc but not
34264         mbstate_t, as we now insist on proper declarations for both
34265         before using mbrtowc.
34266
34267 2001-02-17  Jim Meyering  <meyering@lucent.com>
34268
34269         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
34270         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
34271         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
34272         UnixWare 7.1.1.
34273
34274         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
34275         rather than AC_CACHE_VAL.
34276
34277 2001-02-17  Jim Meyering  <meyering@lucent.com>
34278
34279         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
34280         around included file name.
34281
34282         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
34283
34284         * lib/strftime.c: Update from GNU libc (the only changes were to
34285         comments).
34286
34287 2001-02-17  Jim Meyering  <meyering@lucent.com>
34288
34289         * lib/regex.c: Update from libc.
34290
34291 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
34292
34293         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
34294         clash.
34295
34296 2001-02-16  Paul Eggert  <eggert@twinsun.com>
34297
34298         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
34299         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
34300         Reported by Mark Hounschell via Paul Eggert.
34301
34302 2001-02-07  Jim Meyering  <meyering@lucent.com>
34303
34304         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
34305
34306 2001-02-05  Jim Meyering  <meyering@lucent.com>
34307
34308         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
34309         it includes the patch required for `large file' support with at least
34310         HP-UX's 10.20 /bin/cc.
34311
34312 2001-02-03  Jim Meyering  <meyering@lucent.com>
34313
34314         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
34315         AS_IF, now that it works once again (mysteriously).
34316         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
34317
34318 2001-01-30  Jim Meyering  <meyering@lucent.com>
34319
34320         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
34321         * m4/chown.m4: Rename conftestchown to conftest.chown.
34322         * m4/rename.m4: s/conftestdir/conftest.d1/ and
34323         s/conftestdir2/conftest.d2/.
34324         * m4/utimes.m4: s/conftestdata/conftest.data/
34325         Inspired by Pavel Roskin's change in autoconf.
34326
34327 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
34328
34329         * lib/config.charset: Update for FreeBSD 4.2.
34330
34331 2001-01-27  Jim Meyering  <meyering@lucent.com>
34332
34333         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
34334         a use of AS_IF.
34335         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
34336
34337 2001-01-26  Jim Meyering  <meyering@lucent.com>
34338
34339         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
34340         quotearg.c includes it.
34341
34342 2001-01-26  Jim Meyering  <meyering@lucent.com>
34343
34344         * lib/quotearg.c: Include stddef.h.
34345         * lib/quote.c: Include stddef.h.
34346         Reported by Axel Kittenberger.
34347
34348         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
34349         line in double quotes so that it evokes a better diagnostic.
34350         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
34351         Reported by Axel Kittenberger.
34352
34353 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
34354
34355         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
34356         as if it was a `charset'.
34357
34358 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
34359
34360         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
34361         has const.
34362
34363 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
34364
34365         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
34366         to avoid a warning.  Add back 'const' to inptr.
34367
34368 2001-01-20  Jim Meyering  <meyering@lucent.com>
34369
34370         Be sure that headers are checked before used in code compiled
34371         for the type checks.
34372         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
34373         In place of that, invoke jm_CHECK_ALL_TYPES.
34374         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
34375         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
34376         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
34377         The check for ssize_t was mistakenly run before the test for unistd.h.
34378
34379         The configure-time check for stdbool.h was missing.
34380         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
34381         (jm_PREREQ_HASH): New function.
34382
34383 2001-01-17  Jim Meyering  <meyering@lucent.com>
34384
34385         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
34386         for autoconf-2.49c.
34387         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
34388
34389 2001-01-16  Jim Meyering  <meyering@lucent.com>
34390
34391         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
34392         From Bruno Haible.
34393
34394 2001-01-14  Jim Meyering  <meyering@lucent.com>
34395
34396         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
34397         foo and bar.  Create conftestdir/ in the script, not in the C code.
34398         Remove directories in the script, not in the C code.
34399         Remove conftestdir{,2} before trying to create the directory.
34400         Make the entire configure script fail if the mkdir fails.
34401
34402 2001-01-14  Jim Meyering  <meyering@lucent.com>
34403
34404         * lib/rename.c: New file.  From Volker Borchert.
34405         Include stdlib.h, string.h or strings.h, and xalloc.h.
34406         Use strip_trailing_slashes rather than open-coding it.
34407
34408 2001-01-03  Paul Eggert  <eggert@twinsun.com>
34409
34410         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
34411
34412 2001-01-03  Jim Meyering  <meyering@lucent.com>
34413
34414         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
34415         of local `inptr' to avoid warning with some system declarations of
34416         iconv.
34417
34418 2001-01-02  Volker Borchert  <bt@teknon.de>
34419
34420         * m4/rename.m4: New file.
34421         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
34422
34423 2001-01-01  Jim Meyering  <meyering@lucent.com>
34424
34425         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
34426         even on systems with utmpx.h.  It's necessary for the declaration of
34427         utmp's ut_user member.  Reported by Andreas Jaeger.
34428
34429         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
34430         available. They are required for the declarations of getgrgid and
34431         getpwuid resp.
34432         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
34433         Reported by Andreas Jaeger.
34434
34435 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
34436
34437         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
34438         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
34439         so `make install' also works in VPATH builds.
34440
34441 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
34442
34443         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
34444         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
34445         can be used in subdirectories.
34446
34447 2000-12-29  Paul Eggert  <eggert@twinsun.com>
34448
34449         * lib/modechange.c: Do not assume that mode_t uses the
34450         traditional octal encoding.  E.g. "chmod 1 FOO" should set
34451         the other-execute bit of FOO even if S_IXOTH != 1.
34452
34453         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
34454         WOTH, XOTH, ALLM): New macros.
34455         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
34456          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
34457         Use them.
34458         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
34459         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
34460         (mode_compile):
34461         No need to use uintmax_t; unsigned long is long enough.
34462         Don't bother to get suffix since we don't use it.
34463
34464 2000-12-26  Jim Meyering  <meyering@lucent.com>
34465
34466         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
34467         better with autoheader.
34468
34469 2000-12-24  Jim Meyering  <meyering@lucent.com>
34470
34471         * lib/hash.c (is_prime): Return explicit boolean values.
34472         (hash_get_first): Return NULL to appease Irix5.6's 89.
34473         Reported by Nelson Beebe.
34474
34475 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
34476
34477         * lib/localcharset.c (locale_charset): Add support for Win32.
34478
34479 2000-12-18  Paul Eggert  <eggert@twinsun.com>
34480
34481         * lib/physmem.h, lib/physmem.c: New files.
34482
34483         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
34484         (noinst_HEADERS): Add physmem.h.
34485
34486         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
34487         't' for compatibility with Solaris 8 sort.
34488
34489 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
34490
34491         * lib/config.charset: Add support for BeOS.
34492
34493 2000-12-17  Jim Meyering  <meyering@lucent.com>
34494
34495         * m4/dos.m4 (jm_AC_DOS): New file and macro.
34496         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
34497
34498 2000-12-16  Jim Meyering  <meyering@lucent.com>
34499
34500         This bug had a serious impact on chown: `chown N:M FILE' (for integer
34501         N and M) would have treated it like `chown N:N FILE'.
34502
34503         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
34504
34505 2000-12-16  Jim Meyering  <meyering@lucent.com>
34506
34507         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
34508         SHELLS_FILE to a file name that's useful on djgpp systems.
34509         Include stdlib.h.
34510         (ADDITIONAL_DEFAULT_SHELLS): Define.
34511         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
34512         Based mostly on a patch from Prashant TR.
34513
34514 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
34515
34516         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
34517         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
34518         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
34519
34520 2000-12-08  Andreas Schwab  <schwab@suse.de>
34521
34522         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
34523         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
34524
34525 2000-12-07  Jim Meyering  <meyering@lucent.com>
34526
34527         * lib/stripslash.c (ISSLASH): Define.
34528         (strip_trailing_slashes): Use ISSLASH rather than comparing against
34529         `/'.
34530         From Prashant TR.
34531
34532         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
34533         (dir_name_r): Declare this function as static.
34534         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
34535         manifest itself on a name containing a mix of slashes and
34536         backslashes.
34537         Make this function work with names starting with a DOS-style
34538         drive letter and colon prefix.
34539         (dir_name): Append `.' if necessary.
34540         Based mostly on patches from Prashant TR and Eli Zaretskii.
34541
34542         * lib/dirname.h (dir_name_r): Remove prototype.
34543
34544 2000-12-06  Paul Eggert  <eggert@twinsun.com>
34545
34546         * m4/off_t-format.m4: Remove this file.
34547         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
34548
34549 2000-12-06  Jim Meyering  <meyering@lucent.com>
34550
34551         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
34552         replacement strtoull, we may well need the replacement strtoul, too.
34553         Check for declarations of strtoul and strtoull.
34554         Check for strtol.  Mainly as a cue to cause automake to include
34555         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
34556         Check for limits.h -- strtol.c needs it.
34557
34558 2000-12-05  Jim Meyering  <meyering@lucent.com>
34559
34560         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
34561
34562 2000-12-04  Jim Meyering  <meyering@lucent.com>
34563
34564         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
34565         Also include memory.h, stdlib.h, unistd.h if appropriate.
34566         Reported by Andreas Jaeger (conflicting declaration of malloc).
34567
34568 2000-12-02  Jim Meyering  <meyering@lucent.com>
34569
34570         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
34571         * m4/jm-macros.m4 (jm_MACROS): require it.
34572
34573 2000-12-02  Jim Meyering  <meyering@lucent.com>
34574
34575         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
34576
34577 2000-12-01  Paul Eggert  <eggert@twinsun.com>
34578
34579         * lib/memrchr.c: Include <config.h> before any system include file.
34580
34581 2000-11-30  Jim Meyering  <meyering@lucent.com>
34582
34583         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
34584
34585 2000-11-30  Jim Meyering  <meyering@lucent.com>
34586
34587         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
34588
34589 2000-11-29  Paul Eggert  <eggert@twinsun.com>
34590
34591         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
34592
34593 2000-11-26  Jim Meyering  <meyering@lucent.com>
34594
34595         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
34596
34597 2000-11-22  Paul Eggert  <eggert@twinsun.com>
34598
34599         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
34600         size of (size_t) -1; it's not portable.
34601
34602 2000-11-17  Jim Meyering  <meyering@lucent.com>
34603
34604         * lib/strstr.c: Update from GNU libc.
34605
34606 2000-11-17  Akim Demaille  <akim@epita.fr>
34607
34608         * lib/obstack.h: Formatting changes.
34609         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
34610         prevent type checking.
34611         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
34612         cast the value to (void *): assigning a `foo *' to a `void *'
34613         variable is valid.
34614         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
34615
34616 2000-11-16  Jim Meyering  <meyering@lucent.com>
34617
34618         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
34619
34620 2000-11-11  Jim Meyering  <meyering@lucent.com>
34621
34622         * lib/error.c: Add a couple #includes, merging from GNU libc version.
34623
34624 2000-11-10  Jim Meyering  <meyering@lucent.com>
34625
34626         * lib/obstack.h: Update from GNU libc.
34627         * lib/obstack.c: Likewise.
34628
34629 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
34630
34631         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
34632
34633 2000-11-06  Paul Eggert  <eggert@twinsun.com>
34634
34635         * lib/getusershell.c (setusershell): Use rewind rather than
34636         fseek/fseeko, to avoid configuration hassles with fseeko.
34637         Don't bother opening SHELLS_FILE if shellstream is NULL;
34638         it's not necessary.
34639
34640 2000-11-05  Jim Meyering  <meyering@lucent.com>
34641
34642         * lib/makepath.h (make_dir): Declare.
34643         * lib/makepath.c (make_dir): Remove `static' attribute.
34644         Tweak a comment.
34645
34646 2000-11-04  Jim Meyering  <meyering@lucent.com>
34647
34648         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
34649
34650 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
34651
34652         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
34653         last one in a bucket, advance to the next bucket.
34654
34655 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
34656
34657         * lib/fnmatch.c: Do not comment out all the code if we are using
34658         the GNU C library, because in some cases we are replacing buggy
34659         code in the GNU C library itself.
34660
34661 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
34662
34663         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
34664         (regex_compile): Catch bogus \(\1\).
34665
34666 2000-10-30  Paul Eggert  <eggert@twinsun.com>
34667
34668         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
34669         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
34670         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
34671
34672 2000-10-30  Paul Eggert  <eggert@twinsun.com>
34673
34674         * lib/error.h, getline.h, modechange.h:
34675         Remove "2000" from Copyright line, as the file hasn't been
34676         changed this year other than in the copyright notice.
34677
34678         * lib/xalloc.h: Add "2000" to Copyright line, as this file
34679         was changed this year.
34680
34681 2000-10-29  Jim Meyering  <meyering@lucent.com>
34682
34683         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
34684         renaming.
34685         * m4/ls-mntd-fs.m4: Likewise
34686
34687 2000-10-29  Jim Meyering  <meyering@lucent.com>
34688
34689         * lib/xstat.in: Fix grammar in comment.
34690
34691 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
34692
34693         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
34694         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
34695         doesn't define __restrict_arr.
34696
34697 2000-10-28  Jim Meyering  <meyering@lucent.com>
34698
34699         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
34700         (jm_PREREQ_MEMCHR): New function.
34701
34702 2000-10-28  Jim Meyering  <meyering@lucent.com>
34703
34704         * lib/memchr.c: Update from libc.
34705         Adjust for portability:
34706         [HAVE_STDLIB_H]: Include stdlib.h.
34707         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
34708         Undef __memchr, too.
34709         [!weak_alias]: Define __memchr to memchr.
34710
34711         * lib/regex.c: Update from libc.
34712         * lib/regex.h: Likewise.
34713         * lib/getopt1.c: Likewise.
34714         * lib/memcmp.c: Likewise.
34715
34716         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
34717         Avoid using fseek, when possible -- it's broken by design.
34718         Patch by Ulrich Drepper.
34719
34720 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
34721
34722         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
34723         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
34724         Giving in to popular pressure to shut up the compiler with casts.
34725
34726 2000-10-26  Jim Meyering  <meyering@lucent.com>
34727
34728         * lib/strftime.c: Update from libc.
34729
34730 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
34731
34732         * regex.c: More `unsigned char' -> `re_char' changes.
34733         Also change several `int' into `re_wchar_t'.
34734         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
34735         (PUSH_FAILURE_POINTER): Don't cast any more.
34736         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
34737         We want GCC to complain, since this piece of code makes
34738         re_match non-reentrant, which *should* be fixed.
34739         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
34740         (EXTEND_BUFFER): Use RETALLOC.
34741         (SET_LIST_BIT): Don't cast.
34742         (re_wchar_t): New type.
34743         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
34744         that those two functions will always properly return.
34745         (IMMEDIATE_QUIT_CHECK): Cast to void.
34746         (analyse_first): Use recursion rather than an explicit stack.
34747         (re_compile_fastmap): Can't fail anymore.
34748         (re_search_2): Don't check re_compile_fastmap for failure.
34749         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
34750         Now also sets the new value (passed in a new argument).
34751         (re_match_2_internal): Use it.
34752         Also, use a new var `reg' of type size_t when looping through regs
34753         rather than reuse the inappropriate `mcnt'.
34754
34755 2000-10-25  Jim Meyering  <meyering@lucent.com>
34756
34757         * lib/obstack.c: Update from libc.
34758
34759 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
34760
34761         * regex.c (regex_compile): Change the way of handling a range from
34762         a char less than 256 to a char not less than 256.
34763
34764 2000-10-24  Andrew Innes  <andrewi@gnu.org>
34765
34766         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
34767         NT-Emacs only.
34768         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
34769         so that re_search functions only quit when callers expect them to.
34770
34771 2000-10-23  Jim Meyering  <meyering@lucent.com>
34772
34773         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
34774         wrong.  That set_locale call must not have any side effects.
34775         From Paul Eggert.
34776
34777 2000-10-22  Jim Meyering  <meyering@lucent.com>
34778
34779         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
34780         [CYCLIC]: Remove now-unused definition.
34781
34782         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
34783         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
34784         Suggestion from Ulrich Drepper.
34785
34786 2000-10-21  Jim Meyering  <meyering@lucent.com>
34787
34788         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
34789         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
34790         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
34791
34792 2000-10-21  Jim Meyering  <meyering@lucent.com>
34793
34794         * lib/dirname.c (memrchr): Declare if necessary.
34795         (dir_name): Remove the restriction that there be no
34796         trailing slashes.  Now, this code skips past them, effectively
34797         ignoring them.
34798         [TEST_DIRNAME] (main): New unit tests.
34799
34800         * lib/memrchr.c: New file from GNU libc.
34801         Undef __memrchr, too.
34802         [!weak_alias]: Define __memrchr to memrchr.
34803         Guard weak_alias use with `#ifdef weak_alias'.
34804
34805 2000-10-21  Jim Meyering  <meyering@lucent.com>
34806
34807         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
34808         (dir_name): Use dir_name_r.
34809         * lib/dirname.h (dir_name_r): Declare it.
34810
34811 2000-10-17  Jim Meyering  <meyering@lucent.com>
34812
34813         * lib/quote.h (PARAMS): Define and use.
34814         Reported by Akim Demaille.
34815
34816         * lib/getopt.c: Update from libc.
34817
34818 2000-10-16  Jim Meyering  <meyering@lucent.com>
34819
34820         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
34821         setlocale.
34822         From Jan Fedak.
34823
34824 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
34825
34826         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
34827
34828 2000-09-25  Jim Meyering  <meyering@lucent.com>
34829
34830         * lib/md5.h (rol): Define (from GnuPG).
34831
34832         * lib/sha.c: Give credit (GnuPG) where due.
34833         (M): Use rol rather than open-coding it.
34834         Add a FIXME comment.
34835
34836 2000-09-21  Jim Meyering  <meyering@lucent.com>
34837
34838         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
34839         Reported by Michael Stone.
34840
34841 2000-09-20  Jim Meyering  <meyering@lucent.com>
34842
34843         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
34844         (noinst_HEADERS): Add sha.h.
34845         Based on code from Scott G. Miller and from GnuPG.
34846
34847 2000-09-18  Jim Meyering  <meyering@lucent.com>
34848
34849         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
34850         LIBS. Otherwise, everyone ends up linking with -lelf for some
34851         configurations.
34852         Reported by Mike Stone.
34853
34854 2000-09-15  Jim Meyering  <meyering@lucent.com>
34855
34856         * lib/regex.c: Update from libc.
34857
34858 2000-09-10  Jim Meyering  <meyering@lucent.com>
34859
34860         * lib/getopt.c (_getopt_internal): Update from glibc.
34861
34862 2000-09-09  Jim Meyering  <meyering@lucent.com>
34863
34864         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
34865         think it should be used as a general replacement for isascii.
34866         * lib/fnmatch.c: Likewise.
34867         * lib/mbswidth.c: Likewise
34868         * lib/regex.c: Likewise.
34869
34870         Don't use atoi.
34871         * lib/userspec.c: Include sys/param.h and limits.h.
34872         Include xstrtol.h.
34873         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
34874         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
34875         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
34876         UID, GID.  Check range.
34877
34878 2000-09-06  Jim Meyering  <meyering@lucent.com>
34879
34880         * lib/getopt.c (_getopt_internal): Update from glibc.
34881
34882 2000-08-30  Jim Meyering  <meyering@lucent.com>
34883
34884         * lib/strftime.c: Merge in changes from GNU libc.
34885
34886 2000-08-26  Jim Meyering  <meyering@lucent.com>
34887
34888         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
34889         * m4/fpending.m4: New file.
34890
34891 2000-08-26  Jim Meyering  <meyering@lucent.com>
34892
34893         * lib/closeout.c: Include "__fpending.h".
34894         (close_stdout_status): Return right away if there's nothing to flush.
34895
34896         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
34897         * lib/__fpending.c: New file.
34898         * lib/__fpending.h: New file.
34899
34900 2000-08-20  Jim Meyering  <meyering@lucent.com>
34901
34902         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
34903         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
34904         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
34905
34906 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
34907
34908         Improve fileutils installation on systems where running
34909         programs (like install) can't be unlinked.
34910         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
34911         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
34912
34913 2000-08-07  Paul Eggert  <eggert@twinsun.com>
34914
34915         Standardize on "memory exhausted" instead of "Memory exhausted"
34916         or "virtual memory exhausted".
34917         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
34918         "virtual memory exhausted".
34919         * lib/same.c (same_name): Invoke xalloc_die instead of printing
34920         our own message.
34921         * lib/userspec.c (parse_user_spec): Likewise.
34922         * lib/bumpalloc.h: comment fix
34923         * lib/same.c, userspec.c: Include xalloc.h.
34924
34925         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
34926         not char *const and pointing to a constant array.
34927         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
34928         (xrealloc): Comment fix.
34929
34930         * lib/userspec.c (parse_user_spec):
34931         Don't translate a message until just before returning,
34932         to avoid unnecessary translation.
34933
34934 2000-08-07  Jim Meyering  <meyering@lucent.com>
34935
34936         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
34937         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
34938         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
34939         getgroups.c, gethostname.c, getopt.h, group-member.c,
34940         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
34941         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
34942         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
34943         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
34944         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
34945         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
34946         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
34947         yesno.c: Back out Copyright date changes for each file with no change
34948         this year.  This eases coordination with other programs using the same
34949         source code modules.  From Paul Eggert.
34950
34951 2000-08-06  Paul Eggert  <eggert@twinsun.com>
34952
34953         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
34954         not char, for compatibility with glibc 2.1.3 strftime.c.
34955
34956 2000-08-03  Greg McGary  <greg@mcgary.org>
34957
34958         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
34959         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
34960         (EXTEND_BUFFER): Use them.
34961
34962 2000-08-01  Jim Meyering  <meyering@lucent.com>
34963
34964         * lib/dirname.c (ISSLASH): Define.
34965         (BACKSLASH_IS_PATH_SEPARATOR): Define.
34966         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
34967         both `\' and `/' may be use as path separators.
34968         Based on a patch from Prashant TR.
34969
34970 2000-07-31  Paul Eggert  <eggert@twinsun.com>
34971
34972         * lib/quotearg.c (quotearg_n_options): Don't make the initial
34973         slot vector a constant, since it might get modified.
34974
34975 2000-07-31  Jim Meyering  <meyering@lucent.com>
34976
34977         * lib/xmalloc.c: Use `virtual memory exhausted', not
34978         `Memory exhausted'.
34979         * lib/obstack.c (print_and_abort): Likewise.
34980
34981 2000-07-30  Paul Eggert  <eggert@twinsun.com>
34982
34983         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
34984         buffer, so that the caller can always quote one small
34985         component of a "memory exhausted" message in slot 0.
34986         From a suggestion by Jim Meyering.
34987
34988 2000-07-30  Jim Meyering  <meyering@lucent.com>
34989
34990         * lib/makepath.c (make_path): Quote the other instance, too.
34991
34992         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
34993         (STATIC_BUF_SIZE): Define.
34994         (quotearg_n_options): Use only statically allocated storage when
34995         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
34996         than STATIC_BUF_SIZE.
34997
34998 2000-07-29  Jim Meyering  <meyering@lucent.com>
34999
35000         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
35001         * lib/dirname.c (dir_name): Likewise.
35002
35003         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
35004         `/'.
35005
35006         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
35007         (dir_name): Assert that there are no trailing slashes.
35008
35009 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
35010
35011         * lib/mbswidth.h (mbswidth): Add a flags argument.
35012         (mbswidth): New declaration.
35013         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
35014         * lib/mbswidth.c (mbswidth): Add a flags argument.
35015         (mbsnwidth): New function.
35016
35017 2000-07-24  Jim Meyering  <meyering@lucent.com>
35018
35019         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
35020
35021 2000-07-23  Paul Eggert  <eggert@twinsun.com>
35022
35023         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
35024
35025 2000-07-23  Paul Eggert  <eggert@twinsun.com>
35026
35027         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
35028         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
35029         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
35030         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
35031         invoke multibyte primitives.
35032
35033 2000-07-23  Paul Eggert  <eggert@twinsun.com>
35034
35035         * lib/quotearg.c:
35036         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
35037         so that mbstate_t is always defined.
35038
35039         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
35040         be 1 in at least one GCC installation, and this configuration
35041         error is likely to be common.  Ignoring MB_LEN_MAX hurts
35042         performance on hosts that have mbrtowc but have only unibyte
35043         locales, but I assume these hosts are rare.
35044
35045 2000-07-23  Paul Eggert  <eggert@twinsun.com>
35046
35047         * lib/mbswidth.c (_XOPEN_SOURCE):
35048         Don't define; this causes problems on Solaris 7.
35049         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
35050
35051 2000-07-23  Jim Meyering  <meyering@lucent.com>
35052
35053         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
35054         too: getgrgid, getpwuid, getuid.
35055
35056 2000-07-23  Jim Meyering  <meyering@lucent.com>
35057
35058         * lib/basename.c (base_name): Add an assertion.
35059
35060 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
35061
35062         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
35063         shadow its mbsinit function.
35064
35065 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
35066
35067         * lib/mbswidth.h: New file.
35068         * lib/mbswidth.c: New file.
35069         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
35070         (noinst_HEADERS): Add mbswidth.h.
35071
35072 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
35073
35074         * lib/config.charset: Add support for FreeBSD. Improve support for
35075         HP-UX and IRIX 6.
35076
35077 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
35078
35079         * m4/mbswidth.m4: New file.
35080         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
35081
35082 2000-07-15  Jim Meyering  <meyering@lucent.com>
35083
35084         * lib/makepath.c: Include quote.h.
35085         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
35086         corresponding argument in a `quote (...)' call.
35087         Give better diagnostics.
35088
35089         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
35090         (noinst_HEADERS): Add quote.h.
35091
35092         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
35093         from tar's src/misc.c.
35094         * lib/quote.h: New file.  Prototypes for same.
35095
35096 2000-07-14  Paul Eggert  <eggert@twinsun.com>
35097
35098         From a suggestion by Bruno Haible.
35099         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
35100         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
35101         to decide whether to define the BeOS workaround macro;
35102         this adjusts to the change to AC_MBSTATE_T.
35103
35104 2000-07-14  Jim Meyering  <meyering@lucent.com>
35105
35106         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
35107         jm_AC_TYPE_UINTMAX_T.
35108
35109 2000-07-13  Paul Eggert  <eggert@twinsun.com>
35110
35111         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
35112
35113         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
35114         quotearg_buffer_restyled): Add support for
35115         clocale_quoting_style.  Undo previous change to
35116         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
35117         and "{RIGHT QUOTATION MARK}" msgids.
35118
35119 2000-07-10  Paul Eggert  <eggert@twinsun.com>
35120
35121         From a suggestion by Bruno Haible.
35122         * m4/mbstate_t.m4 (AC_MBSTATE_T):
35123         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
35124         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
35125         and mbstate_t, to a single-part test that simply defines mbstate_t.
35126         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
35127         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
35128
35129 2000-07-10  Jim Meyering  <meyering@lucent.com>
35130
35131         * m4/strerror_r.m4: Mirror the correction made in autoconf.
35132
35133         * m4/gnu-source.m4: Output to confdefs.h directly.
35134         Suggestion from Akim Demaille.
35135
35136 2000-07-09  Paul Eggert  <eggert@twinsun.com>
35137
35138         The old behavior of quoting `like this' doesn't look good with
35139         newer, ISO-style fonts.  See:
35140         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
35141
35142         Instead, quote "like this" by default.  Let the translator
35143         tailor the locale-specific quoting behavior by providing
35144         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
35145
35146         * lib/quotearg.c (N_): New macro.
35147         (gettext_default): New function.
35148         (quotearg_buffer_restyled): Use
35149         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
35150         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
35151
35152 2000-07-09  Jim Meyering  <meyering@lucent.com>
35153
35154         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
35155         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
35156
35157         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
35158         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
35159
35160 2000-07-09  Jim Meyering  <meyering@lucent.com>
35161
35162         * lib/Most files: Update copyright dates to include 2000.
35163
35164 2000-07-08  Jim Meyering  <meyering@lucent.com>
35165
35166         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
35167         if not defined.
35168         (xgethostname): Remove now-unnecessary #ifdef.
35169         Move declaration of `err' into loop where it's used.
35170
35171 2000-07-05  Paul Eggert  <eggert@twinsun.com>
35172         and Bruno Haible  <haible@clisp.cons.org>
35173
35174         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
35175         only if the test for an object-type mbstate_t fails.  This
35176         prevents us from mistakenly reporting that mbstate_t is a
35177         system object type after we "#define mbstate_t int" to work
35178         around its lack.
35179
35180 2000-07-05  Paul Eggert  <eggert@twinsun.com>
35181         and Bruno Haible  <haible@clisp.cons.org>
35182
35183         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
35184
35185 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
35186
35187         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
35188         to strerror_r.
35189         Include <ctype.h> for use of isalpha.
35190
35191 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
35192
35193         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
35194         by allocating a larger buffer. Test the gethostname return value for
35195         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
35196         returns an error and ENAMETOOLONG isn't defined.
35197
35198 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
35199
35200         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
35201         dimension.
35202
35203 2000-07-04  Jim Meyering  <meyering@lucent.com>
35204
35205         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
35206         of the deprecated AC_CHECKING.
35207
35208 2000-07-04  Jim Meyering  <meyering@lucent.com>
35209
35210         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
35211         Reported by Bruno Haible.
35212
35213 2000-07-04  Jim Meyering  <meyering@lucent.com>
35214
35215         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
35216         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
35217         lacks mbrtowc.
35218
35219 2000-07-03  Paul Eggert  <eggert@twinsun.com>
35220
35221         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
35222         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
35223
35224 2000-07-03  Paul Eggert  <eggert@twinsun.com>
35225         and Bruno Haible  <haible@clisp.cons.org>
35226
35227         * lib/quotearg.c (mbrtowc):
35228         Assign to *pwc, and return 1 only if result is nonzero.
35229         (iswprint): Use ISPRINT when substituting our own mbrtowc.
35230
35231 2000-07-03  Jim Meyering  <meyering@lucent.com>
35232
35233         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
35234
35235 2000-07-03  Jim Meyering  <meyering@lucent.com>
35236
35237         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
35238         This is necessary to get a definition of e.g., UTMP_FILE on
35239         HP-UX 10.20.
35240         From Bob Proulx.
35241
35242 2000-07-02  Jim Meyering  <meyering@lucent.com>
35243
35244         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
35245
35246         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
35247         AC_LIBOBJ(function_name).
35248         * m4/chown.m4: Likewise.
35249         * m4/fnmatch.m4: Likewise.
35250         * m4/ftruncate.m4: Likewise.
35251         * m4/getgroups.m4: Likewise.
35252         * m4/getline.m4: Likewise.
35253         * m4/group-member.m4: Likewise.
35254         * m4/jm-macros.m4: Likewise.
35255         * m4/lstat.m4: Likewise.
35256         * m4/malloc.m4: Likewise.
35257         * m4/memcmp.m4: Likewise.
35258         * m4/nanosleep.m4: Likewise.
35259         * m4/putenv.m4: Likewise.
35260         * m4/realloc.m4: Likewise.
35261         * m4/regex.m4: Likewise.
35262         * m4/stat.m4: Likewise.
35263         * m4/strftime.m4: Likewise.
35264
35265 2000-07-02  Jim Meyering  <meyering@lucent.com>
35266
35267         * lib/quotearg.c (mbstate_t): Don't define here.
35268
35269 2000-07-02  Jim Meyering  <meyering@lucent.com>
35270
35271         * lib/nanosleep.c (SIGCONT): Define if not already defined.
35272
35273 2000-07-01  Jim Meyering  <meyering@lucent.com>
35274
35275         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
35276
35277 2000-07-01  Jim Meyering  <meyering@lucent.com>
35278
35279         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
35280         problem.
35281
35282 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
35283
35284         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
35285         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
35286
35287 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
35288
35289         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
35290         per change in ../m4/ls-mntd-fs.m4.
35291         (read_filesystem_list): Ignore symbolic links.
35292
35293 2000-06-29  Jim Meyering  <meyering@lucent.com>
35294
35295         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
35296         for declaration of strcmp.
35297
35298         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
35299
35300         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
35301         Avoid warning by casting result to `char *' to remove `const'.
35302
35303 2000-06-28  Jim Meyering  <meyering@lucent.com>
35304
35305         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
35306         included by quotearg.c, for which we perform this test.  From
35307         Bruno Haible.
35308
35309 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
35310
35311         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
35312         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
35313         <utmpx.h> exists, put readutmp.o into LIBOBJS.
35314
35315 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
35316
35317         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
35318
35319 2000-06-26  Paul Eggert  <eggert@twinsun.com>
35320
35321         savedir now sets errno on failure and invokes xmalloc to get memory.
35322         Fix a couple of other minor bugs while we're at it.
35323
35324         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
35325         (NAMLEN): Remove macro.
35326         (malloc, realloc): Remove decls.
35327         (stpcpy): Likewise.
35328         ("xalloc.h"): Include.
35329         (NAME_SIZE_DEFAULT): New macro.
35330         (savedir): Use xmalloc / xrealloc to allocate memory.
35331         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
35332         Skip "" directory entries.
35333         Use strlen to calculate directory entry length, since the old method
35334         is rarely used these days and isn't worth supporting.
35335         Don't use a pointer after freeing it.
35336         Check for integer overflow when calculating allocation size.
35337         Use memcpy to copy entries, instead of stpcpy.
35338         Set errno properly when returning NULL.
35339         Check for readdir error.
35340
35341 2000-06-26  Jim Meyering  <meyering@lucent.com>
35342
35343         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
35344
35345 2000-06-25  Jim Meyering  <meyering@lucent.com>
35346
35347         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
35348         Linux header bug when _XOPEN_SOURCE is defined to 500.
35349
35350 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
35351
35352         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
35353         deficiency.
35354
35355 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
35356
35357         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
35358         Include xalloc.h.
35359         Don't include <stdlib.h>.  Don't declare malloc, realloc.
35360
35361 2000-06-24  Jim Meyering  <meyering@lucent.com>
35362
35363         * m4/strerror_r.m4: Revive this file -- to try out an experimental
35364         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
35365         for which strerror does return char*, but which lacks a conveniently
35366         accessible declaration of the function.  If the compile-test says
35367         strerror_r doesn't work, then resort to a `run'-test that works on
35368         BeOS and segfaults on DEC Unix.
35369
35370 2000-06-24  Jim Meyering  <meyering@lucent.com>
35371
35372         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
35373
35374 2000-06-23  Paul Eggert  <eggert@twinsun.com>
35375
35376         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
35377         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
35378
35379 2000-06-23  Paul Eggert  <eggert@twinsun.com>
35380
35381         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
35382         (mbrtowc, mbstate_t): Define substitutes if
35383         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
35384         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
35385         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
35386
35387 2000-06-23  Jim Meyering  <meyering@lucent.com>
35388
35389         * m4/afs.m4: Add missing AC_MSG_RESULT.
35390         Reported by Bruno Haible.
35391
35392         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
35393         Suggestion from Bruno Haible.
35394
35395 2000-06-23  Jim Meyering  <meyering@lucent.com>
35396
35397         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
35398
35399 2000-06-21  Jim Meyering  <meyering@lucent.com>
35400
35401         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
35402
35403 2000-06-21  Jim Meyering  <meyering@lucent.com>
35404
35405         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
35406         (noinst_HEADERS): Add getstr.h.
35407
35408         * lib/getline.c (getstr): Move into a separate file.
35409         * lib/getstr.c (getstr): New file, extracted from getline.c, with
35410         the following changes: new parameter, delim2; both delim[12]
35411         parameters have type `int', not `char'.  The latter would lose
35412         with 8-bit delimiters.
35413         * lib/getstr.h: New file.
35414
35415 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
35416
35417         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
35418         than 1024, return a memory chunk of least possible size, instead
35419         of size PATH_MAX + 2. In the loop, increment the size proportionally.
35420         Use free/xmalloc instead of xrealloc to avoid copying for very long
35421         paths.
35422
35423 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
35424
35425         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
35426         the empty string.
35427
35428 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
35429
35430         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
35431         address, not strdup.  Include <stdlib.h> and don't declare free().
35432
35433 2000-06-19  Jim Meyering  <meyering@lucent.com>
35434
35435         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
35436
35437 2000-06-18  Jim Meyering  <meyering@lucent.com>
35438
35439         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
35440
35441         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
35442         `checking whether...' message to be consistent with that of the
35443         lstat test.
35444
35445 2000-06-18  Jim Meyering  <meyering@lucent.com>
35446
35447         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
35448         Besides, these days every porting target provides a mkdir function.
35449
35450         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
35451         needed. (this snippet comes from src/system.h).
35452
35453 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
35454
35455         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
35456
35457 2000-06-15  Paul Eggert  <eggert@twinsun.com>
35458
35459         * lib/human.c (adjust_value): New function.
35460         (human_readable_inexact): Apply rounding style even when
35461         printing approximate values.
35462
35463 2000-06-14  Paul Eggert  <eggert@twinsun.com>
35464
35465         * lib/human.c (human_readable_inexact): Allow an input block
35466         size that is not a multiple of the output block size, and vice versa.
35467         Reported by Piergiorgio Sartor.
35468
35469 2000-06-14  Paul Eggert  <eggert@twinsun.com>
35470
35471         * lib/getdate.y (get_date): Apply relative times after time
35472         zone indicator, not before.  Reported by Todd A. Jacobs.
35473
35474 2000-06-13  Jim Meyering  <meyering@lucent.com>
35475
35476         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
35477
35478         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
35479
35480 2000-06-12  Paul Eggert  <eggert@twinsun.com>
35481
35482         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
35483
35484 2000-06-12  Jim Meyering  <meyering@lucent.com>
35485
35486         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
35487         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
35488         optional argument.
35489         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
35490         the optional argument, `lib'.
35491
35492 2000-06-08  Jim Meyering  <meyering@lucent.com>
35493
35494         * m4/largefile.m4: Remove file (now that it's part of autoconf).
35495
35496 2000-06-04  Paul Eggert  <eggert@twinsun.com>
35497
35498         Rewrite largefile configuration so that we don't need to run
35499         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
35500         AC_CANONICAL_HOST in configure.in -- jmm]
35501
35502         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
35503         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
35504         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
35505         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
35506         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
35507         All uses changed.
35508         Instead of inspecting the output of getconf, try to compile the
35509         test program without and with the macro definition.
35510         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
35511         for getconf.  Instead, check for the needed flags by compiling
35512         test programs.
35513
35514 2000-06-04  Paul Eggert  <eggert@twinsun.com>
35515
35516         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
35517
35518 2000-06-04  Jim Meyering  <meyering@lucent.com>
35519
35520         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
35521         SunOS 4.1.4 for which gid_t is an unsigned type.
35522
35523 2000-06-03  Jim Meyering  <meyering@lucent.com>
35524
35525         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
35526         now that autoconf requires that.
35527
35528         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
35529         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
35530         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
35531
35532 2000-06-03  Jim Meyering  <meyering@lucent.com>
35533
35534         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
35535
35536 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
35537
35538         * m4/glibc21.m4: New file.
35539         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
35540
35541 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
35542
35543         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
35544         newer, don't install charset.alias.
35545         * lib/config.charset: Change the Linux/glibc rules so they become empty
35546         on glibc-2.1 or newer.
35547
35548 2000-06-02  Jim Meyering  <meyering@lucent.com>
35549
35550         * lib/mountlist.c: Back out last change.  Instead, do this...
35551         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
35552         me_dummy member using the same `ignore'-testing code.
35553         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
35554         fs_type strings.
35555         From Mark D. Roth.
35556
35557 2000-05-29  Jim Meyering  <meyering@lucent.com>
35558
35559         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
35560         mounts with the `ignore' attribute.  Based on a patch from
35561         Mark D. Roth.
35562
35563 2000-05-28  Jim Meyering  <meyering@lucent.com>
35564
35565         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
35566         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
35567         * m4/stat.m4: Likewise.
35568         * m4/lstat.m4: Likewise.
35569         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
35570
35571         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
35572         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
35573
35574 2000-05-26  Jim Meyering  <meyering@lucent.com>
35575
35576         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
35577
35578 2000-05-24  Jim Meyering  <meyering@lucent.com>
35579
35580         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
35581         autoconf requires that.
35582         * m4/lib-check.m4: Likewise.
35583         * m4/jm-macros.m4: Likewise.
35584         * m4/strftime.m4: Likewise.
35585
35586         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
35587         AC_CHECK_DECLS, now that autoconf requires that.
35588
35589 2000-05-22  Jim Meyering  <meyering@lucent.com>
35590
35591         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
35592         * m4/lstat.m4: Likewise.
35593
35594 2000-05-22  Jim Meyering  <meyering@lucent.com>
35595
35596         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
35597
35598 2000-05-20  Jim Meyering  <meyering@lucent.com>
35599
35600         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
35601         (jm_PREREQ): Use it.
35602
35603 2000-05-18  Jim Meyering  <meyering@lucent.com>
35604
35605         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
35606         back, too, since it may have been modified by allocate_entry.
35607         (hash_delete): Rewrite to use neither the assignment operator
35608         nor the comma operator in an if-expression.
35609
35610 2000-05-15  Paul Eggert  <eggert@twinsun.com>
35611
35612         * lib/closeout.c:
35613         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
35614         Remove; no longer needed.
35615         "quotearg.h": Add include.
35616         (file_name): Do not bother to explicitly initialize to NULL; it's less
35617         efficient on some hosts.
35618         (close_stdout_status): Remove test as to whether stdout was already
35619         closed; it breaks for the case "echo x | sort >&-".
35620         Quote file name colons.
35621         Do not assume that _("write error") lacks format strings.
35622
35623 2000-05-15  Jim Meyering  <meyering@lucent.com>
35624
35625         * lib/version-etc.c (version_etc_copyright): Update the copyright
35626         string used in all --version output.
35627
35628 2000-05-14  Jim Meyering  <meyering@lucent.com>
35629
35630         * lib/closeout.c (close_stdout_set_file_name): New function.
35631         (close_stdout_status): Use new file-scoped global.
35632         Return right away if fstat says the stdout file descriptor is invalid.
35633         * lib/closeout.h (close_stdout_set_file_name): Declare.
35634
35635 2000-05-10  Jim Meyering  <meyering@lucent.com>
35636
35637         * lib/closeout.c [default_exit_status]: New file-scoped variable.
35638         (close_stdout_set_status): New function.
35639         * lib/closeout.h (close_stdout_set_status): Declare.
35640
35641 2000-05-09  Jim Meyering  <meyering@lucent.com>
35642
35643         * m4/gettext.m4: Rename this...
35644         * m4/libintl.m4: ...to this.
35645
35646 2000-05-08  Jim Meyering  <meyering@lucent.com>
35647
35648         * lib/long-options.c: Don't include closeout.h.
35649         (parse_long_options): Don't call close_stdout for --version.
35650
35651 2000-05-06  Paul Eggert  <eggert@twinsun.com>
35652
35653         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
35654         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
35655         2.1.3 bug.  This avoids a clash when files like regex.c define
35656         _GNU_SOURCE.
35657
35658 2000-05-06  Jim Meyering  <meyering@lucent.com>
35659
35660         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
35661         (AC_REPLACE_FUNCS): Add strnlen.
35662
35663         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
35664         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
35665
35666         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
35667         AC_SEARCH_LIBS call for nanosleep.
35668         (LIB_NANOSLEEP): Set and AC_SUBST.
35669
35670 2000-05-06  Jim Meyering  <meyering@lucent.com>
35671
35672         * lib/strnlen.c: Undefine __strnlen and strnlen.
35673         [!weak_alias]: Define __strnlen to strnlen.
35674
35675         * lib/atexit.c: New file, from libiberty.
35676
35677 2000-05-06  Jim Meyering  <meyering@lucent.com>
35678
35679         * lib/closeout.c (close_stdout_status): Also check for errors on the
35680         stderr stream.
35681
35682 2000-05-05  Jim Meyering  <meyering@lucent.com>
35683
35684         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
35685         AC_SEARCH_LIBS call for clock_gettime.
35686         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
35687
35688         * m4/search-libs.m4: Update from autoconf.
35689
35690         su doesn't work on Solaris 2.6.
35691         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
35692         <shadow.h>.  Reported by Dragos Harabor.
35693
35694 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
35695
35696         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
35697         memcpy instead of xmalloc, xrealloc, path_concat.
35698         (locale_charset): Treat empty environment variables as absent.
35699         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
35700
35701 2000-05-04  Jim Meyering  <meyering@lucent.com>
35702
35703         * lib/getopt.c: Update from glibc.
35704         * lib/obstack.c: Likewise.
35705         * lib/obstack.h: Likewise.
35706         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
35707         file
35708
35709         * lib/regex.h: Likewise.
35710         * lib/strndup.c: Likewise.
35711         * lib/strnlen.c: New file, from glibc.
35712
35713 2000-05-03  Jim Meyering  <meyering@lucent.com>
35714
35715         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
35716
35717 2000-05-02  Paul Eggert  <eggert@twinsun.com>
35718
35719         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
35720         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
35721         compile-time test, rather than inspecting host and OS, to
35722         decide whether to define _LARGEFILE_SOURCE.
35723
35724 2000-05-01  Jim Meyering  <meyering@lucent.com>
35725
35726         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
35727
35728         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
35729         Based on a patch from Bruno Haible.
35730
35731 2000-05-01  Jim Meyering  <meyering@lucent.com>
35732
35733         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
35734
35735 2000-04-29  Jim Meyering  <meyering@lucent.com>
35736
35737         * lib/path-concat.c: Declare strdup only if it's not defined.
35738         * lib/canon-host.c: Likewise.
35739
35740 2000-04-28  Jim Meyering  <meyering@lucent.com>
35741
35742         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
35743         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
35744         is included first, then limits.h is included by locale.h by libintl.h.
35745         From John David Anglin.
35746
35747 2000-04-25  Jim Meyering  <meyering@lucent.com>
35748
35749         * lib/makepath.c (S_IRWXUGO): Define.
35750         (make_path): Always perform explicit chmod if MODE specifies any
35751         of the `special' permission bits.  Prompted by a bug report against
35752         install from Mate Wierdl and Joost van Baal.
35753
35754 2000-04-18  Jim Meyering  <meyering@lucent.com>
35755
35756         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
35757         (jm_PREREQ): Use it.
35758
35759 2000-04-18  Jim Meyering  <meyering@lucent.com>
35760
35761         * lib/README: New file.
35762
35763         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
35764         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
35765
35766 2000-04-17  Jim Meyering  <meyering@lucent.com>
35767
35768         Get it right :-)
35769         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
35770         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
35771         Suggestion from Akim Demaille.
35772
35773 2000-04-17  Jim Meyering  <meyering@lucent.com>
35774
35775         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
35776         the definition of it to rpl_strftime also defined-away the system's
35777         declaration.
35778
35779 2000-04-15  Jim Meyering  <meyering@lucent.com>
35780
35781         Use `C' to denote so-called `contiguous' files, the same way
35782         that tar does.
35783         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
35784         (ftypelet): Use S_ISCTG.
35785         From Michael Deutschmann.
35786
35787 2000-04-14  Jim Meyering  <meyering@lucent.com>
35788
35789         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
35790         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
35791         clobbered.
35792
35793 2000-04-14  Jim Meyering  <meyering@lucent.com>
35794
35795         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
35796
35797 2000-04-13  Jim Meyering  <meyering@lucent.com>
35798
35799         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
35800         AH_VERBATIM to insert required #ifndef into config.h.in.
35801         Suggestion from Akim Demaille.
35802
35803 2000-04-12  Jim Meyering  <meyering@lucent.com>
35804
35805         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
35806         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
35807         Christian Krackowizer.
35808
35809         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
35810         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
35811         (AC_SYS_LARGEFILE): Require.
35812         (AM_C_PROTOTYPES): Require.
35813
35814 2000-04-08  Jim Meyering  <meyering@lucent.com>
35815
35816         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
35817         names don't conflict.  Reported by Eli Zaretskii.
35818
35819 2000-04-07  Jim Meyering  <meyering@lucent.com>
35820
35821         * lib/putenv.c: Move inclusion of errno.h so it follows that of
35822         sys/types.h, to work around system header problems on AIX 3.2.5.
35823         From Bruno Haible.
35824
35825 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
35826
35827         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
35828         bug.  Deal with the different error behavior of Irix iconv.
35829
35830 2000-04-05  Paul Eggert  <eggert@twinsun.com>
35831
35832         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
35833         IRIX if the installer said otherwise.
35834
35835 2000-04-05  Jim Meyering  <meyering@lucent.com>
35836
35837         Portability tweaks required for ultrix4.3.
35838         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
35839         (jm_CHECK_DECLS): Add getutent to the list of functions.
35840         (_jm_DECL_HEADERS): Add utmpx.h.
35841         From John David Anglin.
35842
35843         * m4/strftime.m4: Back out the 2000-04-02 change.
35844         Instead of that change, simply undefine putenv in the test program.
35845
35846 2000-04-05  Jim Meyering  <meyering@lucent.com>
35847
35848         Portability tweaks required for ultrix4.3.
35849         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
35850         getutent.
35851         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
35852         * lib/canon-host.c: Declare strdup.
35853         * lib/path-concat.c: Likewise.
35854         From John David Anglin.
35855
35856 2000-04-04  Jim Meyering  <meyering@lucent.com>
35857
35858         Be more DOS 8.3-friendly.
35859         * lib/ref-add.sin: Renamed from ref-add.sed.in.
35860         * lib/ref-del.sin: Renamed from ref-del.sed.in.
35861         * lib/Makefile.am: Reflect renaming.
35862         Reported by Eli Zaretskii.
35863
35864         Use a temporary file name that won't clash with `charset.alias'
35865         in the DOS 8.3 name space.
35866         * lib/Makefile.am (charset_tmp): Define.
35867         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
35868         (uninstall-local): Likewise.
35869         Reported by Eli Zaretskii.
35870
35871 2000-04-03  Jim Meyering  <meyering@lucent.com>
35872
35873         * m4/gettext.m4: Fix typo in comment.
35874
35875         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
35876         textutils/configure.in).  Suggestion from Paul Eggert.
35877         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
35878
35879 2000-04-02  Paul Eggert  <eggert@twinsun.com>
35880
35881         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
35882         variable in the shell rather than using putenv, which isn't
35883         portable.  This avoids the configure-time inter-test dependency
35884         on the potentially-renamed putenv function.
35885
35886 2000-03-30  Paul Eggert  <eggert@twinsun.com>
35887
35888         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
35889         before checking struct stat.st_blksize, so that
35890         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
35891
35892 2000-03-29  Paul Eggert  <eggert@twinsun.com>
35893
35894         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
35895         since strftime.c uses HAVE_STRFTIME to decide whether to use
35896         the underlying strftime.
35897
35898 2000-03-29  Paul Eggert  <eggert@twinsun.com>
35899
35900         * lib/time/strftime.c (my_strftime): Make sure we call the system
35901         strftime, not ourselves, when invoking the underlying strftime.
35902
35903 2000-03-24  Jim Meyering  <meyering@lucent.com>
35904
35905         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
35906         (charset_alias): Define.
35907         (install-exec-local): Factor out common code.
35908         (uninstall-local): Split lines longer than 80.
35909         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
35910         (SUFFIXES): Define.
35911         (.sed.in.sed): New rule.  Don't redirect directly to $@.
35912         (CLEANFILES): Add ref-add.sed and ref-del.sed.
35913
35914 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
35915
35916         * lib/config.charset: Output a line containing "Packages using this
35917         file".
35918         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
35919         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
35920         ref-del.sed): New rules.
35921
35922 2000-03-17  Jim Meyering  <meyering@lucent.com>
35923
35924         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
35925         Otherwise, include <strings.h>
35926
35927 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
35928
35929         * lib/unicodeio.c (utf8_wctomb): New function.
35930         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
35931         format instead of in UCS-4 with platform dependent endianness.
35932
35933 2000-03-10  Jim Meyering  <meyering@lucent.com>
35934
35935         * m4/lib-check.m4: Look for getspnam in -lgen, too.
35936         From Marco Franzen.
35937
35938 2000-03-07  Paul Eggert  <eggert@twinsun.com>
35939
35940         * lib/savedir.c (savedir): Work even if directory size is
35941         negative; this can happen with some screwy NFS configurations.
35942
35943 2000-03-06  Jim Meyering  <meyering@lucent.com>
35944
35945         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
35946         if it's NULL (because we ran out of memory).  From Bruno Haible.
35947
35948 2000-03-05  Jim Meyering  <meyering@lucent.com>
35949
35950         * lib/localcharset.c ("path-concat.h"): Include.
35951         (get_charset_aliases): Use path_concat instead of ANSI string
35952         concatenation.
35953
35954         * lib/unicodeio.h (PARAMS): Define.
35955         Use it to guard prototype.
35956
35957 2000-03-04  Jim Meyering  <meyering@lucent.com>
35958
35959         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
35960         for lib/localcharset.c.
35961
35962 2000-03-04  Jim Meyering  <meyering@lucent.com>
35963
35964         * lib/Makefile.am (install-exec-local): Create $(libdir) before
35965         installing into it.
35966         (uninstall-local): Uncomment this rule so `make distcheck' works
35967         once again.
35968
35969         * lib/unicodeio.c (<errno.h>): Include it.
35970         (errno): Declare if not defined.
35971
35972         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
35973
35974         * lib/config.charset: New version, incorporating remarks from a linux
35975         i18n mailing list.  From Bruno Haible.
35976
35977 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
35978
35979         * m4/codeset.m4: New file.
35980         * m4/iconv.m4: New file.
35981         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
35982
35983 2000-03-03  Jim Meyering  <meyering@lucent.com>
35984
35985         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
35986
35987 2000-03-02  Jim Meyering  <meyering@lucent.com>
35988
35989         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
35990         the messages come out on separate lines.
35991
35992         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
35993         rather than jm_CHECK_DECLARATIONS.
35994         * m4/decl.m4: Remove now-unused file.
35995
35996         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
35997         geteuid.
35998
35999 2000-03-02  Jim Meyering  <meyering@lucent.com>
36000
36001         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
36002
36003 2000-03-01  Jim Meyering  <meyering@lucent.com>
36004
36005         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
36006         * lib/unicodeio.c: Likewise.
36007
36008 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
36009
36010         * lib/config.charset: New file.
36011         * lib/localcharset.c: New file.
36012         * lib/unicodeio.h, lib/unicodeio.c: New files.
36013         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
36014         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
36015         (noinst_HEADERS): Add unicodeio.h.
36016         (all-local, install-exec-local, charset.alias): New targets.
36017
36018 2000-02-28  Paul Eggert  <eggert@twinsun.com>
36019
36020         * lib/quotearg.c (ALERT_CHAR): New macro.
36021         (quotearg_buffer_restyled): Use it.
36022
36023 2000-02-27  Jim Meyering  <meyering@lucent.com>
36024
36025         * m4/check-decl.m4: Add getenv to the list.
36026
36027 2000-02-27  Jim Meyering  <meyering@lucent.com>
36028
36029         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
36030         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
36031
36032         * lib/backupfile.c: Guard inclusion of stdlib.h with
36033         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
36034         Declare malloc if needed.
36035
36036         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
36037         `#ifndef HAVE_DECL..'
36038         now that autoconf always defines the HAVE_DECL_ symbols.
36039         * lib/human.c: Likewise.
36040         * lib/same.c: Likewise.
36041         * lib/strtoumax.c: Likewise.
36042
36043         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
36044         declaration check was not run.
36045         * lib/hash.c: Likewise.
36046         * lib/human.c: Likewise.
36047         * lib/same.c: Likewise.
36048         * lib/strtoumax.c: Likewise.
36049
36050         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
36051         `.', then first look up the entire `.'-containing string as a login
36052         name.
36053
36054 2000-02-23  Jim Meyering  <meyering@lucent.com>
36055
36056         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
36057         in place of my hack.
36058
36059 2000-02-18  Paul Eggert  <eggert@twinsun.com>
36060
36061         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
36062         (textint): New typedef.
36063         (parser_control): Member year changed from int to textint.
36064         All uses changed.
36065         (YYSTYPE): Removed; replaced by %union with int and textint members.
36066         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
36067         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
36068         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
36069         (tSNUMBER, tUNUMBER): Now of type <textintval>.
36070         (date, number, to_year): Use width of number in digits, not its value,
36071         to determine whether it's a 2-digit year, or a 2-digit time.
36072         (yylex): Store number of digits of numeric tokens.
36073         Reported by John Kendall.
36074
36075         (parser_control): Changed from struct parser_control to typedef (for
36076         consistency).  All uses changed.
36077
36078         (tID): Removed; not used.
36079         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
36080
36081 2000-02-14  Paul Eggert  <eggert@twinsun.com>
36082
36083         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
36084         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
36085
36086 2000-02-12  Jim Meyering  <meyering@lucent.com>
36087
36088         * lib/userspec.c (ISDIGIT): Define it.
36089         (isdigit): Remove definition.
36090         (is_number): Use ISDIGIT, not isdigit.
36091         <libintl.h>: Include.
36092         (_ and N_): Define.
36093         (parse_user_spec): Mark translatable strings.
36094
36095 2000-02-10  Jim Meyering  <meyering@lucent.com>
36096
36097         With these changes, nanosleep.[ch] are finally enough like the other
36098         lib/* replacement files to compile on a few more losing systems.
36099
36100         * lib/nanosleep.h: Don't include config.h.
36101         Remove prototype from declaration of nanosleep.
36102         (PARAMS): Remove now-unneeded definition.
36103         * lib/nanosleep.c: #undef nanosleep.
36104         (rpl_nanosleep): Rename from nanosleep.
36105
36106 2000-02-10  Jim Meyering  <meyering@lucent.com>
36107
36108         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
36109         gnu_nanosleep to rpl_nanosleep.
36110
36111 2000-02-09  Jim Meyering  <meyering@lucent.com>
36112
36113         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
36114         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
36115
36116 2000-02-08  Akim Demaille  <akim@epita.fr>
36117
36118         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
36119         `[' and `]' and remove uses of `changequote'.
36120         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
36121         (AC_SYS_LARGEFILE): Likewise.
36122         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
36123         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
36124         of changequote.
36125         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
36126         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
36127         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
36128         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
36129
36130 2000-02-05  Jim Meyering  <meyering@lucent.com>
36131
36132         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
36133         Remove explicit use of AC_HEADER_TIME.  It is required by
36134         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
36135         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
36136         in autoconf whereby the expansion of the latter ended up preceding
36137         the expansion of its prerequisite, AC_HEADER_TIME.
36138         Reported by Volker Borchert.
36139
36140 2000-02-03  Jim Meyering  <meyering@lucent.com>
36141
36142         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
36143
36144 2000-02-03  Jim Meyering  <meyering@lucent.com>
36145
36146         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
36147         rather than with `#if HAVE_UTMPNAME'.
36148
36149 2000-02-02  Jim Meyering  <meyering@lucent.com>
36150
36151         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
36152         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
36153         Reported by Eli Zaretskii.
36154
36155 2000-02-01  Jim Meyering  <meyering@lucent.com>
36156
36157         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
36158
36159 2000-01-31  Jim Meyering  <meyering@lucent.com>
36160
36161         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
36162         functions.  Add the time.h and sys/time.h headers along with the
36163         AC_REQUIRE'ment of AC_HEADER_TIME.
36164
36165 2000-01-31  Jim Meyering  <meyering@lucent.com>
36166
36167         * lib/nanosleep.h (nanosleep): Guard declaration with
36168         `#if ! HAVE_DECL_NANOSLEEP'.
36169         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
36170         the declaration in that vendor's sys/timers.h.
36171         Reported by Christian Krackowizer.
36172
36173         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
36174         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
36175         (ISPRINT): Likewise.
36176         Reported by Tom Tromey.
36177
36178 2000-01-30  Jim Meyering  <meyering@lucent.com>
36179
36180         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
36181
36182         * m4/prereq.m4 (utmp_includes): Define.
36183         Check for ut_user and ut_name members in both struct utmpx
36184         and struct utmp.
36185
36186 2000-01-30  Jim Meyering  <meyering@lucent.com>
36187
36188         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
36189         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
36190         header files where only utmpx.ut_user is declared.
36191
36192         * lib/readutmp.h (UT_USER): Define.
36193
36194 2000-01-29  Jim Meyering  <meyering@lucent.com>
36195
36196         * m4/lib-check.m4: New file containing library-related checks from
36197         fileutils and sh-utils (textutils had none).
36198
36199 2000-01-28  Jim Meyering  <meyering@lucent.com>
36200
36201         * m4/perl.m4: Change format of warning message to look more like that
36202         from the missing script.  Suggestion from François Pinard.
36203
36204 2000-01-25  Jim Meyering  <meyering@lucent.com>
36205
36206         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
36207         well as time.h in the compile check.
36208         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
36209         Fix typo in cross-compiling case: s/yes/no/.
36210
36211 2000-01-23  Jim Meyering  <meyering@lucent.com>
36212
36213         * m4/jm-macros.m4: Move df-related tests here from
36214         fileutils/configure.in
36215
36216         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
36217         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
36218
36219         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
36220         s/space/ac_fsusage_space/.
36221         (jm_FILE_SYSTEM_USAGE): Take two parameters.
36222
36223         * m4/ftruncate.m4: New file (derived from part of
36224         fileutils/configure.in).
36225         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
36226         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
36227
36228         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
36229         AC_SUBST these here, rather than just in sh-util/configure.in, so
36230         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
36231         all the same.
36232         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
36233         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
36234         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
36235         (AC_SUBST(POW_LIBM)): Likewise.
36236         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
36237
36238 2000-01-23  Jim Meyering  <meyering@lucent.com>
36239
36240         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
36241         obstack.c.
36242
36243 2000-01-22  Jim Meyering  <meyering@lucent.com>
36244
36245         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
36246
36247         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
36248
36249         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
36250         configure.in
36251         (AC_CHECK_HEADERS): Likewise for sh-utils.
36252         (AC_CHECK_HEADERS): Likewise for textutils.
36253         Merge the three lists of headers.
36254
36255         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
36256         from fileutils' configure.in.
36257
36258         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
36259         code. Moved tests into their own function (_jm_DECL_HEADERS) in
36260         check-decl.m4.
36261
36262         * m4/check-decl.m4: Use #if rather than #ifdef.
36263         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
36264         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
36265         (_jm_DECL_HEADERS): Define new function.
36266         (jm_CHECK_DECLARATIONS): Require it.
36267
36268 2000-01-22  Jim Meyering  <meyering@lucent.com>
36269
36270         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
36271         [! HAVE_DECL_STRTOULL]: Declare strtoull.
36272         Required for some AIX systems.  Reported by Christian Krackowizer.
36273         [TESTING] (main): New function.
36274
36275         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
36276         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
36277         letters.
36278
36279         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
36280         iswprint.
36281
36282         * lib/strverscmp.c (ISDIGIT): Define.
36283         (strverscmp): Use ISDIGIT, not isdigit.
36284
36285 2000-01-19  Jim Meyering  <meyering@lucent.com>
36286
36287         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
36288         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
36289         defines `struct timespec' in <sys/time.h>
36290
36291         * m4/c-bs-a.m4: Remove uses of changequote altogether.
36292         Thanks to Akim for explaining.
36293
36294 2000-01-17  Paul Eggert  <eggert@twinsun.com>
36295
36296         * lib/nanosleep.c (nanosleep):
36297         Don't use SA_INTERRUPT to decide whether to call sigaction, as
36298         POSIX.1 doesn't require SA_INTERRUPT and some systems
36299         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
36300         it's been part of POSIX.1 since day 1 (in 1988).
36301
36302 2000-01-17  Jim Meyering  <meyering@lucent.com>
36303
36304         * lib/interlock: Remove unused file.  Reported by François Pinard.
36305
36306 2000-01-16  Paul Eggert  <eggert@twinsun.com>
36307
36308         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
36309         alert, backslash, formfeed, and vertical tab unnecessarily in
36310         shell quoting style.
36311
36312 2000-01-16  Jim Meyering  <meyering@lucent.com>
36313
36314         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
36315         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
36316         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
36317         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
36318
36319 2000-01-16  Jim Meyering  <meyering@lucent.com>
36320
36321         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
36322         because the latter didn't work.
36323
36324 2000-01-15  Jim Meyering  <meyering@lucent.com>
36325
36326         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
36327         (AC_REPLACE_FUNCS): Add memcpy and memset.
36328         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
36329         Add strpbrk.
36330         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
36331
36332 2000-01-12  Jim Meyering  <meyering@lucent.com>
36333
36334         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
36335         (jm_PREREQ): Use it.
36336         (jm_PREREQ_READUTMP): New macro.
36337         (jm_PREREQ): Use it.
36338
36339 2000-01-11  Paul Eggert  <eggert@twinsun.com>
36340
36341         Quote multibyte characters correctly.
36342         * m4/c-bs-a.m4: New file.
36343         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
36344         (jm_PREREQ): Use it.
36345
36346 2000-01-11  Paul Eggert  <eggert@twinsun.com>
36347
36348         * m4/uintmax_t.m4: Port to autoconf 2.13.
36349
36350 2000-01-08  Jim Meyering  <meyering@ascend.com>
36351
36352         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
36353         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
36354
36355 2000-01-04  Jim Meyering  <meyering@ascend.com>
36356
36357         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
36358         jm_STRUCT_DIRENT_D_TYPE.
36359         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
36360         jm_STRUCT_DIRENT_D_INO.
36361         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
36362         jm_STRUCT_UTIMBUF.
36363         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
36364         renamings.
36365         * m4/utime.m4: Likewise.
36366
36367         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
36368         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
36369
36370 2000-01-03  Paul Eggert  <eggert@twinsun.com>
36371
36372         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
36373         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
36374
36375 2000-01-02  Jim Meyering  <meyering@ascend.com>
36376
36377         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
36378         remember if this is necessary.
36379
36380 1999-12-26  Jim Meyering  <meyering@ascend.com>
36381
36382         * m4/jm-macros.m4: Use it here.
36383         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
36384
36385 1999-12-23  Jim Meyering  <meyering@ascend.com>
36386
36387         * m4/jm-macros.m4: Check for clock_gettime (moved from
36388         fileutils/configure.in)
36389         Check for gettimeofday.
36390
36391 1999-12-20  Jim Meyering  <meyering@ascend.com>
36392
36393         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
36394         autoconf-2.14a-1999-12-20.
36395
36396 1999-12-19  Jim Meyering  <meyering@ascend.com>
36397
36398         * m4/lstat-slash.m4: New file.
36399         * m4/jm-macros.m4: Use the new macro:
36400         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
36401
36402 1999-12-07  Jim Meyering  <meyering@ascend.com>
36403
36404         * m4/perl.m4: Require that File::Compare be available, too.
36405         Too many systems seem to lack it.
36406
36407         * m4/strftime.m4: Add checks for most of the cpp macros tested in
36408         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
36409
36410 1999-11-18  Paul Eggert  <eggert@twinsun.com>
36411
36412         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
36413         problem with the QNX 4.25 shell, which doesn't propagate exit
36414         status of failed commands inside shell assignments.
36415
36416 1999-11-17  Jim Meyering  <meyering@ascend.com>
36417
36418         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
36419
36420 1999-11-07  Jim Meyering  <meyering@ascend.com>
36421
36422         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
36423
36424 1999-11-06  Jim Meyering  <meyering@ascend.com>
36425
36426         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
36427         * m4/jm-macros.m4 (jm_MACROS): Use it here.
36428
36429 1999-11-05  Jim Meyering  <meyering@ascend.com>
36430
36431         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
36432         configure.in of textutils, fileutils, and sh-utils into this one
36433         (shared between those packages) file.
36434         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
36435         AC_STRUCT_ST_BLKSIZE.
36436
36437 1999-11-03  Jim Meyering  <meyering@ascend.com>
36438
36439         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
36440         of AC_CHECK_TYPE checks includes unistd.h.
36441         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
36442         Suggestion from Akim Demaille.
36443
36444 1999-10-30  Jim Meyering  <meyering@ascend.com>
36445
36446         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
36447         m4-quoted string.
36448         * m4/ls-mntd-fs.m4: Likewise.
36449         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
36450         * m4/jm-winsz1.m4: Likewise.
36451
36452         * m4/const.m4: Remove file, since the fix made it into the experimental
36453         version of autoconf.
36454         * m4/mktime.m4: Likewise.
36455
36456         * m4/check-type.m4: Remove file, now that the latest version of
36457         AC_CHECK_TYPE takes a third arg to specify additional #includes.
36458
36459         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
36460         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
36461         AC_CHECK_TYPE.
36462
36463 1999-10-04  Jim Meyering  <meyering@ascend.com>
36464
36465         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
36466
36467 1999-09-22  Paul Eggert  <eggert@twinsun.com>
36468
36469         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
36470         2.95.1 bug with HP-UX 10.20.
36471
36472 1999-09-17  Jim Meyering  <meyering@ascend.com>
36473
36474         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
36475         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
36476         due to missing strdup (against sh-utils-2.0).
36477
36478 1999-08-29  Jim Meyering  <meyering@ascend.com>
36479
36480         * m4/jm-macros.m4: Require jm_BISON.
36481         * m4/bison.m4: New file.
36482
36483 1999-08-17  Paul Eggert  <eggert@twinsun.com>
36484
36485         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
36486         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
36487
36488 1999-08-05  Jim Meyering  <meyering@ascend.com>
36489
36490         * m4/getline.m4: Rename test file from conftestdata to conftest.data
36491         to avoid conflicts with `conftest' on 8+3 filesystems.
36492         Suggestion from Eli Zaretskii.
36493
36494 1999-08-04  Jim Meyering  <meyering@ascend.com>
36495
36496         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
36497         fileutils and sh-utils (textutils's getline test was inadequate).
36498         (AM_FUNC_GETLINE): Run this test.
36499         (AC_CHECK_FUNCS): Check for getdelim.
36500         Reported by Bob Proulx.
36501
36502 1999-08-02  Jim Meyering  <meyering@ascend.com>
36503
36504         * m4/jm-macros.m4: Add a comment.
36505
36506 1999-08-01  Paul Eggert  <eggert@twinsun.com>
36507
36508         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
36509         <inttypes.h> defines strtoumax as a macro (and not as a
36510         function).
36511
36512 1999-08-01  Paul Eggert  <eggert@twinsun.com>
36513
36514         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
36515         that we can shift, multiply and divide unsigned long long
36516         values; Ultrix cc can't do it.
36517
36518 1999-08-01  Paul Eggert  <eggert@twinsun.com>
36519
36520         * m4/mktime.m4: New file, which is a preview of what should appear
36521         in the next public autoconf release.
36522
36523 1999-08-01  Paul Eggert  <eggert@twinsun.com>
36524
36525         * m4/lfs.m4: Remove this file.
36526         * m4/largefile.m4: New file.  It contains the old contents of
36527         lfs.m4, except that all names with prefix AC_LFS have been
36528         changed to use the prefix AC_SYS_LARGEFILE instead, to be
36529         compatible with future autoconf versions.  Also, some minor m4
36530         quoting problems have been fixed.
36531
36532 1999-08-01  Paul Eggert  <eggert@twinsun.com>
36533
36534         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
36535         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
36536         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
36537         and simplify the shell code.
36538
36539 1999-08-01  Jim Meyering  <meyering@ascend.com>
36540
36541         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
36542         m4.
36543
36544 1999-07-20  Jim Meyering  <meyering@ascend.com>
36545
36546         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
36547
36548 1999-07-15  Jim Meyering  <meyering@ascend.com>
36549
36550         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
36551
36552 1999-05-22  Jim Meyering  <meyering@ascend.com>
36553
36554         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
36555
36556 1999-05-20  Jim Meyering  <meyering@ascend.com>
36557
36558         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
36559         Add a colon after each `then' in case $4 is empty.
36560
36561 1999-05-16  Jim Meyering  <meyering@ascend.com>
36562
36563         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
36564
36565 1999-05-10  Jim Meyering  <meyering@ascend.com>
36566
36567         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
36568
36569         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
36570         AC_FUNC_MKTIME.
36571
36572 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
36573
36574         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
36575
36576 1999-05-04  Paul Eggert  <eggert@twinsun.com>
36577
36578         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
36579         not CPPFLAGS, so that linking works correctly in IRIX.
36580
36581 1999-04-30  Paul Eggert  <eggert@twinsun.com>
36582
36583         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
36584
36585 1999-04-20  Paul Eggert  <eggert@twinsun.com>
36586
36587         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
36588         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
36589         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
36590         jm_AC_TYPE_UNSIGNED_LONG_LONG.
36591         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
36592
36593         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
36594
36595 1999-04-20  Jim Meyering  <meyering@ascend.com>
36596
36597         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
36598         AC_REPLACE xstroull if necessary.  From Paul Eggert.
36599         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
36600
36601 1999-04-18  Jim Meyering  <meyering@ascend.com>
36602
36603         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
36604         * m4/jm-macros.m4: Use it.
36605
36606 1999-04-06  Jim Meyering  <meyering@ascend.com>
36607
36608         * m4/strftime.m4: Remove test for %f.
36609
36610 1999-03-29  Jim Meyering  <meyering@ascend.com>
36611
36612         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
36613         superset of the AC_TYPE_* checks in the textutils, fileutils,
36614         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
36615         AC_TYPE_PID_T.
36616
36617 1999-03-28  Jim Meyering  <meyering@ascend.com>
36618
36619         * m4/jm-macros.m4: Define GNU_PACKAGE here.
36620         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
36621         replaced e.g., in the *.sh files of the sh-utils.
36622
36623 1999-03-20  Jim Meyering  <meyering@ascend.com>
36624
36625         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
36626         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
36627         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
36628
36629 1999-03-19  Jim Meyering  <meyering@ascend.com>
36630
36631         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
36632
36633 1999-03-12  Jim Meyering  <meyering@ascend.com>
36634
36635         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
36636
36637 1999-03-07  Jim Meyering  <meyering@ascend.com>
36638
36639         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
36640         declared.
36641
36642 1999-02-17  Jim Meyering  <meyering@ascend.com>
36643
36644         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
36645         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
36646
36647 1999-02-07  Jim Meyering  <meyering@ascend.com>
36648
36649         * m4/group-member.m4: New file -- extracted from sh-utils'
36650         configure.in.
36651
36652         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
36653         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
36654
36655 1999-02-06  Jim Meyering  <meyering@ascend.com>
36656
36657         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
36658         * m4/fnmatch.m4: Likewise.
36659         * m4/getgroups.m4: Likewise.
36660         * m4/lstat.m4: Likewise.
36661         * m4/malloc.m4: Likewise.
36662         * m4/putenv.m4: Likewise.
36663         * m4/realloc.m4: Likewise.
36664         * m4/regex.m4: Likewise.
36665         * m4/stat.m4: Likewise.
36666         * m4/strftime.m4: Likewise.
36667         Suggestion from Alain Magloire.
36668
36669         * m4/chown.m4: Use `.$ac_objext', not `.o'.
36670         * m4/fnmatch.m4: Likewise.
36671         * m4/getgroups.m4: Likewise.
36672         * m4/getline.m4: Likewise.
36673         * m4/lstat.m4: Likewise.
36674         * m4/malloc.m4: Likewise.
36675         * m4/memcmp.m4: Likewise.
36676         * m4/putenv.m4: Likewise.
36677         * m4/realloc.m4: Likewise.
36678         * m4/regex.m4: Likewise.
36679         * m4/stat.m4: Likewise.
36680         * m4/strftime.m4: Likewise.
36681         Suggestion from Alain Magloire.
36682
36683         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
36684         an argument.
36685
36686         * m4/regex.m4: Add a run-time Test for proper operation of
36687         re_compile_pattern.
36688
36689 1999-01-31  Jim Meyering  <meyering@ascend.com>
36690
36691         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
36692
36693 1999-01-30  Jim Meyering  <meyering@ascend.com>
36694
36695         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
36696
36697         * m4/jm-mktime.m4: Make this a wrapper around the official
36698         AM_FUNC_MKTIME rather than my private copy, now that the official one
36699         is up to date.
36700         * m4/mktime.m4: Remove file.
36701
36702         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
36703         * m4/uptime.m4: Likewise.
36704         * m4/uintmax_t.m4: Likewise.
36705
36706 1999-01-28  Jim Meyering  <meyering@ascend.com>
36707
36708         * m4/jm-macros.m4: Use jm_AFS.
36709         * m4/afs.m4: New file (from fileutils' configure.in).
36710
36711         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
36712         * m4/chown.m4: Likewise.
36713         * m4/d-ino.m4: Likewise.
36714         * m4/d-type.m4: Likewise.
36715         * m4/fnmatch.m4: Likewise.
36716         * m4/getgroups.m4: Likewise.
36717         * m4/gettext.m4: Likewise.
36718         * m4/jm-mktime.m4: Likewise.
36719         * m4/jm-winsz2.m4: Likewise.
36720         * m4/lcmessage.m4: Likewise.
36721         * m4/ls-mntd-fs.m4: Likewise.
36722         * m4/malloc.m4: Likewise.
36723         * m4/memcmp.m4: Likewise.
36724         * m4/putenv.m4: Likewise.
36725         * m4/realloc.m4: Likewise.
36726         * m4/st_mtim.m4: Likewise.
36727         * m4/strftime.m4: Likewise.
36728
36729 1999-01-16  Jim Meyering  <meyering@ascend.com>
36730
36731         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
36732         (ARGMATCH_DIE_DECL): Define.
36733
36734 1999-01-12  Jim Meyering  <meyering@ascend.com>
36735
36736         * m4/Makefile.am.in: Rewrite to avoid using fmt.
36737         Reported by Lars Hecking.
36738
36739 1999-01-10  Jim Meyering  <meyering@ascend.com>
36740
36741         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
36742         gross kludge.
36743         * m4/inttypes_h.m4: Likewise.
36744         * m4/lstat.m4: Likewise.
36745         * m4/malloc.m4: Likewise.
36746         * m4/readdir.m4: Likewise.
36747         * m4/realloc.m4: Likewise.
36748         * m4/st_dm_mode.m4: Likewise.
36749         * m4/stat.m4: Likewise.
36750         * m4/utimbuf.m4: Likewise.
36751         * m4/utimes.m4: Likewise.
36752
36753         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
36754         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
36755         comments in config.h.in are meaningful.
36756
36757         * m4/jm-macros.m4: Require autoconf-2.13 here.
36758
36759         * m4/regex.m4: By default, don't use the included regex.c on systems
36760         with glibc 2.  Suggestion from Uli Drepper.
36761
36762 1999-01-02  Jim Meyering  <meyering@ascend.com>
36763
36764         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
36765
36766 1998-12-18  Jim Meyering  <meyering@ascend.com>
36767
36768         * m4/Makefile.am.in (Makefile.am): Simplify rule.
36769         Based on a suggestion from Lars Hecking.
36770
36771 1998-11-16  Paul Eggert  <eggert@twinsun.com>
36772
36773         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
36774
36775 1998-11-16  Jim Meyering  <meyering@ascend.com>
36776
36777         * m4/lfs.m4: Double-quote the `uname...` expression.
36778
36779 1998-11-14  Jim Meyering  <meyering@ascend.com>
36780
36781         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
36782         * m4/stat.m4: Likewise.
36783
36784 1998-11-03  Jim Meyering  <meyering@ascend.com>
36785
36786         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
36787         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
36788
36789 1998-10-18  Jim Meyering  <meyering@ascend.com>
36790
36791         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
36792
36793 1998-10-17  Jim Meyering  <meyering@ascend.com>
36794
36795         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
36796         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
36797         calls for those previously hard-coded headers.  Instead, take a new
36798         parameter.
36799         (jm_CHECK_DECLARATIONS): Reflect interface change.
36800         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
36801         (jm_CHECK_DECL_LOCALTIME_R): New macro.
36802
36803         * m4/mktime.m4: Test for spring-forward gap before long-running test.
36804
36805 1998-10-14  Jim Meyering  <meyering@ascend.com>
36806
36807         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
36808         instead of "TZ=America/Vancouver".  From Paul Eggert.
36809
36810 1998-10-11  Jim Meyering  <meyering@ascend.com>
36811
36812         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
36813         This adds a test for a recently added compatibility fix for mktime.c.
36814         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
36815
36816 1998-09-27  Jim Meyering  <meyering@ascend.com>
36817
36818         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
36819
36820         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
36821         ../configure.in, including a change from Gordon Matzigkeit to allow
36822         cross-compiling for the Hurd.
36823
36824         * m4/glibc.m4: New file/macro to test for the GNU C Library
36825         versions 1 and 2.  From Gordon Matzigkeit.
36826         Indent.
36827
36828 1998-09-21  Jim Meyering  <meyering@ascend.com>
36829
36830         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
36831
36832 1998-08-18  Paul Eggert  <eggert@twinsun.com>
36833
36834         Port nanosecond-resolution times to UnixWare 2.1.2 and
36835         pedantic Solaris 2.6.
36836
36837         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
36838         AC_STRUCT_ST_MTIM.
36839         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
36840         Generate name of ns member, instead of just 1 or undef.
36841         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
36842
36843 1998-08-15  Jim Meyering  <meyering@ascend.com>
36844
36845         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
36846         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
36847         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
36848         instead of jm_TYPE_SSIZE_T.
36849
36850 1998-08-12  Jim Meyering  <meyering@ascend.com>
36851
36852         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
36853
36854 1998-08-02  Jim Meyering  <meyering@ascend.com>
36855
36856         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
36857         in acconfig.h manually.
36858
36859 1998-07-31  Paul Eggert  <eggert@twinsun.com>
36860
36861         * m4/st_mtim.m4: New file.
36862
36863 1998-07-28  Jim Meyering  <meyering@ascend.com>
36864
36865         * m4/utimes.m4: Undef stat.
36866
36867 1998-07-25  Jim Meyering  <meyering@ascend.com>
36868
36869         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
36870         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
36871
36872 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
36873
36874         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
36875         uid and gid actually remain unchanged.
36876
36877 1998-07-07  Jim Meyering  <meyering@ascend.com>
36878
36879         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
36880
36881 1998-07-04  Jim Meyering  <meyering@ascend.com>
36882
36883         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
36884         to prove that this macro can be used in packages without regex.c.
36885
36886 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
36887
36888         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
36889         is to be used.
36890
36891 1998-07-03  Jim Meyering  <meyering@ascend.com>
36892
36893         * m4/gettext.m4: Add -lintl if it's found to be necessary.
36894
36895         * m4/gettext.m4: New file -- from gettext-0.10.35.
36896         * m4/lcmessage.m4: Likewise.
36897         * m4/progtest.m4: Likewise.
36898
36899         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
36900         * m4/jm-macros.m4: Require the new macro.
36901
36902 1998-06-29  Jim Meyering  <meyering@ascend.com>
36903
36904         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
36905         for the definition of NGROUPS (used in a system header included
36906         by sys/mount.h).
36907
36908 1998-06-28  Jim Meyering  <meyering@ascend.com>
36909
36910         * m4/ls-mntd-fs.m4: New file.
36911         * m4/fstypename.m4: New file.
36912
36913         * m4/jm-macros.m4: Require the new macro.
36914         * m4/jm-glibc-io.m4: New file.
36915
36916 1998-05-19  Jim Meyering  <meyering@ascend.com>
36917
36918         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
36919         * m4/lchown.m4: New file.
36920
36921         * m4/Makefile.am.in: New file.
36922         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
36923
36924 1998-05-14  Jim Meyering  <meyering@ascend.com>
36925
36926         * m4/Makefile.am (EXTRA_DIST): Add them.
36927         * m4/jm-macros.m4: New file.
36928         * m4/utimbuf.m4: New file.
36929
36930 1998-05-12  Jim Meyering  <meyering@ascend.com>
36931
36932         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
36933
36934 1998-05-11  Jim Meyering  <meyering@ascend.com>
36935
36936         * m4/isc-posix.m4: New file.
36937
36938 1998-05-10  Jim Meyering  <meyering@ascend.com>
36939
36940         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
36941
36942 1998-05-09  Jim Meyering  <meyering@ascend.com>
36943
36944         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
36945         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
36946         with automake.
36947
36948         * m4/ssize_t.m4: New file.
36949         * m4/mktime.m4: Remove file -- the new automake has this now.
36950
36951 1998-04-26  Jim Meyering  <meyering@ascend.com>
36952
36953         * m4/assert.m4: New file.
36954         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
36955
36956 1998-04-05  Jim Meyering  <meyering@ascend.com>
36957
36958         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
36959         (jm_PREREQ): Use it here.
36960
36961 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
36962
36963         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
36964         in acconfig.h.
36965
36966 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
36967
36968         * m4/prereq.m4: New file.
36969         * m4/error.m4: New file.
36970         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
36971
36972 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
36973
36974         * m4/getline.m4: Don't set am_cv_func_working_getline before the
36975         cache-check for the same variable -- that defeated the purpose of
36976         the test; the test program was never run.  This was a problem only
36977         on systems with losing getline functions -- HP-UX 10.20 is one.
36978         Reported by Bjorn Helgaas.
36979
36980 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
36981
36982         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
36983
36984 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
36985
36986         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
36987
36988         * m4/const.m4: New file.  Use an initializer in this declaration
36989         typedef int charset[2]; const charset x;
36990         Reported by Bob Glickstein.
36991
36992 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
36993
36994         * m4/chown.m4: Fix reversed types on -1 args to chown.
36995         From Kaveh Ghazi.
36996
36997 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
36998
36999         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
37000         Add lseek and memchr.
37001
37002         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
37003         T.E.Dickey <dickey@clark.net> said that some older preprocessors
37004         have a 20-character limit on names.
37005
37006 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
37007
37008         * m4/inttypes_h.m4: New file.
37009         * m4/uintmax_t.m4: New file.
37010         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
37011
37012 Copyright (C) 1997-2007 Free Software Foundation, Inc.
37013 Copying and distribution of this file, with or without modification,
37014 are permitted provided the copyright notice and this notice are preserved.